for release 0.17
This commit is contained in:
parent
652de61ed7
commit
7b921f510f
|
@ -1,3 +1,11 @@
|
||||||
|
26-01-2006 DarkIce 0.17 released
|
||||||
|
|
||||||
|
o added check for bufferSecs set to 0
|
||||||
|
thanks to Toph <fangiotophia@gmail.com>
|
||||||
|
o added realtime parameter to the general section
|
||||||
|
o added MPEG2 support through the TwoLame library.
|
||||||
|
thanks to Nicholas J Humfrey <njh@ecs.soton.ac.uk>
|
||||||
|
|
||||||
22-10-2005 DarkIce 0.16 released
|
22-10-2005 DarkIce 0.16 released
|
||||||
|
|
||||||
o added AAC support through the faac codec, http://www.audiocoding.com
|
o added AAC support through the faac codec, http://www.audiocoding.com
|
||||||
|
|
|
@ -36,6 +36,8 @@ DarkIce can encode in the following formats:
|
||||||
<ul>
|
<ul>
|
||||||
<li>mp3 - using the <a href="http://www.mp3dev.org/mp3">lame</a>
|
<li>mp3 - using the <a href="http://www.mp3dev.org/mp3">lame</a>
|
||||||
library</li>
|
library</li>
|
||||||
|
<li>mp2 - using the <a href="http://www.twolame.org/">twolame</a>
|
||||||
|
library</li>
|
||||||
<li><a href="http://www.xiph.org/ogg/vorbis/">Ogg Vorbis</a></li>
|
<li><a href="http://www.xiph.org/ogg/vorbis/">Ogg Vorbis</a></li>
|
||||||
<li>aac - using the <a href="http://www.audiocoding.com/">faac</a>
|
<li>aac - using the <a href="http://www.audiocoding.com/">faac</a>
|
||||||
library</li>
|
library</li>
|
||||||
|
@ -66,7 +68,7 @@ DarkIce is under development. While still considered beta, it has
|
||||||
been used since fall 2000 in <a href="http://tilos.hu/">production</a>
|
been used since fall 2000 in <a href="http://tilos.hu/">production</a>
|
||||||
24 hours per day.
|
24 hours per day.
|
||||||
<br>
|
<br>
|
||||||
The latest version is <b>0.16</b>, check out the
|
The latest version is <b>0.17</b>, check out the
|
||||||
<a href="ChangeLog">ChangeLog</a>.
|
<a href="ChangeLog">ChangeLog</a>.
|
||||||
<br>
|
<br>
|
||||||
Rafael Diniz is wrting a GTK front-end for DarkIce, called
|
Rafael Diniz is wrting a GTK front-end for DarkIce, called
|
||||||
|
@ -94,18 +96,21 @@ I also provided lame packages, which are needed by DarkIce, but you can
|
||||||
use your own lame libs if you like.
|
use your own lame libs if you like.
|
||||||
<p>
|
<p>
|
||||||
Download the source tarball
|
Download the source tarball
|
||||||
<a href="http://prdownloads.sourceforge.net/darkice/darkice-0.16.tar.gz">darkice-0.16.tar.gz</a>
|
<a href="http://prdownloads.sourceforge.net/darkice/darkice-0.17.tar.gz">darkice-0.17.tar.gz</a>
|
||||||
and compile it. You will also need
|
and compile it. You will also need
|
||||||
<a href="http://lame.sourceforge.net/download/download.html">lame</a>
|
<a href="http://lame.sourceforge.net/download/download.html">lame</a>
|
||||||
(version 3.89 or above),
|
(version 3.89 or above),
|
||||||
|
<a href="http://sourceforge.net/project/showfiles.php?group_id=136040">twolame</a>
|
||||||
|
(version 0.3.6 or above),
|
||||||
<a href="http://www.vorbis.com/download.psp">Ogg Vorbis</a>
|
<a href="http://www.vorbis.com/download.psp">Ogg Vorbis</a>
|
||||||
and
|
and
|
||||||
<a href="http://www.audiocoding.com/modules/mydownloads/">faac</a>
|
<a href="http://www.audiocoding.com/modules/mydownloads/">faac</a>
|
||||||
libs. I used the following libs:
|
libs. I used the following libs:
|
||||||
<ul>
|
<ul>
|
||||||
<li><a href="http://prdownloads.sourceforge.net/lame/lame-3.96.1.tar.gz?download">lame-3.96.1.tar.gz</a></li>
|
<li><a href="http://prdownloads.sourceforge.net/lame/lame-3.96.1.tar.gz?download">lame-3.96.1.tar.gz</a></li>
|
||||||
<li><a href="http://www.vorbis.com/files/1.0.1/unix/libogg-1.1.tar.gz">libogg-1.1.tar.gz</a></li>
|
<li><a href="http://prdownloads.sourceforge.net/twolame/twolame-0.3.6.tar.gz?download">twolame-0.3.6.tar.gz</a></li>
|
||||||
<li><a href="http://www.vorbis.com/files/1.0.1/unix/libvorbis-1.0.1.tar.gz">libvorbis-1.0.1.tar.gz</a></li>
|
<li><a href="http://downloads.xiph.org/releases/ogg/libogg-1.1.2.tar.gz">libogg-1.1.2.tar.gz</a></li>
|
||||||
|
<li><a href="http://downloads.xiph.org/releases/vorbis/libvorbis-1.1.tar.gz">libvorbis-1.1.tar.gz</a></li>
|
||||||
<li><a href="http://prdownloads.sourceforge.net/faac/faac-1.24.zip?download">faac-1.24.zip</a></li>
|
<li><a href="http://prdownloads.sourceforge.net/faac/faac-1.24.zip?download">faac-1.24.zip</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<p>
|
<p>
|
||||||
|
|
Loading…
Reference in New Issue