search for: ices_stdin

Displaying 2 results from an estimated 2 matches for "ices_stdin".

2004 Aug 06
0
combined mp3 and vorbis stream
...two streams running now, one > just reads > my ogg files from a playlist as before, the other one reads input from > stdin which is created by a script like this: > > ... > for i in `cat /etc/icecast/mp3.playlist` > do > mpg123 -w - $i | ices /etc/icecast/ices_stdin.xml > done > ... > where ices_stdin.xml uses the stdin module rather than the playlist > module. > > Very simple but it took me a while to figure out. > > Cheers, > Jake > > On Mon, 2002-09-16 at 21:01, Scott Prive wrote: > > Jake, > > >...
2004 Aug 06
1
combined mp3 and vorbis stream
Jake, You could decode the compressed audio to raw audio, pipe it into the ice system and have it "re-encode" to a consistent bitrate and format (Vorbis/MP3). If there's nothing with the Ice software that's this versatile, you'll have to write a small shell script, which does something like calls ogg123/mpg123 and outputs decoded audio. Now I mention this as potentially