I'm now trying to use an m3u formatted list to pass to ezstream rather than stdin. Since all of my audio files are in .wav format, and I have oggenc, I see no reason to decode them before ogg encoding them. Is there a configuration I can use to make this happen? I tried omitting the decode parameter and ezstream complained. Here is what I have now: <ezstream> <url>http://localhost:8000/vorbis.ogg</url> <sourcepassword>hackme</sourcepassword> <!-- Since the reencoding feature is enabled below, <format /> sets the output format of the stream. --> <format>VORBIS</format> <filename>list.m3u</filename> <!-- Enable playlist shuffling: --> <shuffle>1</shuffle> <!-- The file in <filename> is a regular playlist and not a program. For demonstrational purposes, explicitly state this here: --> <playlist_program>0</playlist_program> <!-- The following settings are used to describe your stream to the server. It's up to you to make sure that the bitrate/quality/samplerate/channels information matches up with your oggenc encoder settings below. --> <svrinfoname>My Stream</svrinfoname> <svrinfourl>http://www.oddsock.org</svrinfourl> <svrinfogenre>RockNRoll</svrinfogenre> <svrinfodescription>This is a stream description</svrinfodescription> <svrinfobitrate>88</svrinfobitrate> <svrinfoquality>1.5</svrinfoquality> <svrinfochannels>2</svrinfochannels> <svrinfosamplerate>44100</svrinfosamplerate> <!-- Allow the server to advertise the stream on a public YP directory: --> <svrinfopublic>0</svrinfopublic> <reencode> <!-- Enable the reencoding feature: --> <enable>1</enable> <!-- Each <encdec /> element specifies a pair of programs to be used for decoding and encoding, respectively, and which file extension and output stream format they apply to. All the configuration of the output stream is usually done by using the appropriate command line parameters of the encoders in the <encode /> elements. New encdec sections can be added for new input/output formats. --> <encdec> <!-- Support for Vorbis decoding via oggdec, and encoding via oggenc: --> <format>WAV</format> <match>.wav</match> <encode>oggenc -r -q 1.5 --resample=44100 -t "@M@" -</encode> </encdec> </reencode> </ezstream> Thanks - Tod