VS2008 project files.
[xiph/unicode.git] / ezstream / examples / ezstream_stdin_vorbis.xml
blobd6cb639660659022a157f3456cc97d1a97d25b50
1 <!--
2    EXAMPLE: Ogg Vorbis stream from standard input WITHOUT reencoding
4    This example streams an Ogg Vorbis stream from standard input (stdin.)
5    Since ezstream will not be doing any reencoding, the resulting stream
6    format (quality/bitrate, samplerate, channels) will be of the respective
7    input stream.
8  -->
9 <ezstream>
10     <url>http://localhost:8000/vorbis.ogg</url>
11     <sourcepassword>hackme</sourcepassword>
12     <format>VORBIS</format>
13     <filename>stdin</filename>
14     <!--
15       Important:
16       For streaming from standard input, the default for continuous streaming
17       is bad. Set <stream_once /> to 1 here to prevent ezstream from spinning
18       endlessly when the input stream stops:
19      -->
20     <stream_once>1</stream_once>
21     <!--
22       The following settings are used to describe your stream to the server.
23       It's up to you to make sure that the bitrate/quality/samplerate/channels
24       information matches up with your input stream files.
25      -->
26     <svrinfoname>My Stream</svrinfoname>
27     <svrinfourl>http://www.oddsock.org</svrinfourl>
28     <svrinfogenre>RockNRoll</svrinfogenre>
29     <svrinfodescription>This is a stream description</svrinfodescription>
30     <svrinfobitrate>96</svrinfobitrate>
31     <svrinfoquality>2.0</svrinfoquality>
32     <svrinfochannels>2</svrinfochannels>
33     <svrinfosamplerate>44100</svrinfosamplerate>
34     <!-- Allow the server to advertise the stream on a public YP directory: -->
35     <svrinfopublic>1</svrinfopublic>
36 </ezstream>