added mp3 streaming possibility for icecast2
This commit is contained in:
parent
65764e2150
commit
268e5d4566
|
@ -1,5 +1,6 @@
|
|||
DarkIce next version
|
||||
|
||||
o added mp3 streaming for icecast2
|
||||
o added possibility to stream in mono even when recording in stereo,
|
||||
thus enabling mono and stereo streams with the same darkice instance.
|
||||
only for mp3 streams at the moment
|
||||
|
|
|
@ -6,3 +6,6 @@ o libtoolize ?
|
|||
o revisit real-time scheduling and one-thread-per-connection
|
||||
o look into performance
|
||||
o create proper error-reporting module
|
||||
o add HTTP Basic authentication for icecast2 logins
|
||||
o set comment fields for Ogg Vorbis streams as in
|
||||
http://www.xiph.org/ogg/vorbis/doc/v-comment.html
|
||||
|
|
|
@ -379,10 +379,6 @@ DarkIce :: configIceCast2 ( const Config & config,
|
|||
format = IceCast2::oggVorbis;
|
||||
} else if ( Util::strEq( str, "mp3") ) {
|
||||
format = IceCast2::mp3;
|
||||
// TODO: enable this format in the future, when icecast2
|
||||
// supports it as well
|
||||
throw Exception( __FILE__, __LINE__,
|
||||
"unsupported stream format: ", str);
|
||||
} else {
|
||||
throw Exception( __FILE__, __LINE__,
|
||||
"unsupported stream format: ", str);
|
||||
|
@ -964,6 +960,9 @@ DarkIce :: run ( void ) throw ( Exception )
|
|||
$Source$
|
||||
|
||||
$Log$
|
||||
Revision 1.30 2002/08/20 18:37:49 darkeye
|
||||
added mp3 streaming possibility for icecast2
|
||||
|
||||
Revision 1.29 2002/08/03 12:41:18 darkeye
|
||||
added possibility to stream in mono when recording in stereo
|
||||
|
||||
|
|
Loading…
Reference in New Issue