for version 0.9
This commit is contained in:
parent
38dc041a4b
commit
9e4bc7a234
|
@ -1,7 +1,12 @@
|
|||
DarkIce 0.9
|
||||
28-03-2002: DarkIce 0.9 released
|
||||
|
||||
o added possibility to simply read from the soundcard, encode, and
|
||||
save the encoded data into a local file (no streaming server needed)
|
||||
o added variable bitrate support for vorbis streams
|
||||
o support for both rc2 and rc3 versions of vorbis libraries
|
||||
o added support for resampling when encoding to vorbis
|
||||
(thanks to the OSALP project for the resampling class,
|
||||
http://osalp.sourceforge.net/)
|
||||
|
||||
20-02-2002: DarkIce 0.8 released
|
||||
|
||||
|
|
|
@ -1,3 +1,8 @@
|
|||
28-03-2002, Akos Maroy, darkeye@users.sourceforge.net
|
||||
|
||||
Released version 0.9. See ChangeLog for changes.
|
||||
|
||||
|
||||
20-02-2002, Akos Maroy, darkeye@users.sourceforge.net
|
||||
|
||||
Released version 0.8. See ChangeLog for changes.
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
dnl Process this file with autoconf to produce a configure script.
|
||||
AC_INIT(src/DarkIce.cpp)
|
||||
AM_INIT_AUTOMAKE(darkice, 0.9beta)
|
||||
AM_INIT_AUTOMAKE(darkice, 0.9)
|
||||
|
||||
AM_CONFIG_HEADER(config.h)
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.TH darkice.cfg 5 "February 28, 2002" "DarkIce" "DarkIce live audio streamer"
|
||||
.TH darkice.cfg 5 "March 28, 2002" "DarkIce" "DarkIce live audio streamer"
|
||||
.SH NAME
|
||||
darkice.cfg \- configuration file for darkice
|
||||
.SH DESCRIPTION
|
||||
|
@ -160,6 +160,14 @@ There may be at most 8 outputs, numbered from 0 ... 7.
|
|||
The number is included in the section name (e.g. [icecast2-0] ... [icecast2-7]).
|
||||
The stream will be reachable at
|
||||
.I http://<server>:<port>/<mountPoint>
|
||||
.P
|
||||
.B DarkIce
|
||||
supports both fixed bitrate and variable bitrate vorbis streams. When
|
||||
using fixed bitrate, specify the bitrate using the
|
||||
.I bitrate
|
||||
field. When using variable bitrate, specify the quality of the stream by the
|
||||
.I quality
|
||||
field, which is a value between 0.0 and 1.0.
|
||||
|
||||
Required values:
|
||||
|
||||
|
@ -171,6 +179,12 @@ server. Currently the only supported value here is 'vorbis'.
|
|||
.TP
|
||||
.I bitrate
|
||||
Bit rate to encode to in kBits / sec (e.g. 96)
|
||||
If specified, the quality field may not be specified.
|
||||
.TP
|
||||
.I quality
|
||||
Quality of a variable bitrate stream, a number between 0.0 ... 1.0
|
||||
(e.g. 0.8).
|
||||
If specified, the bitrate field may not be specified.
|
||||
.TP
|
||||
.I server
|
||||
The
|
||||
|
|
|
@ -36,7 +36,7 @@ Summary : DarkIce live IceCast / ShoutCast streamer
|
|||
Name: darkice
|
||||
Vendor: Tyrell Hungary
|
||||
Packager: Akos Maroy <darkeye@tyrell.hu>
|
||||
Version: 0.8
|
||||
Version: 0.9
|
||||
Release: 1
|
||||
Copyright: GPL
|
||||
Group: Applications/Multimedia
|
||||
|
@ -97,6 +97,9 @@ make clean
|
|||
# =================================================================== change log
|
||||
#
|
||||
# $Log$
|
||||
# Revision 1.11 2002/03/28 16:56:14 darkeye
|
||||
# for version 0.9
|
||||
#
|
||||
# Revision 1.10 2002/02/20 14:26:51 darkeye
|
||||
# version 0.8
|
||||
#
|
||||
|
|
Loading…
Reference in New Issue