mirror of
https://gitlab.xiph.org/xiph/ezstream.git
synced 2024-11-03 04:17:18 -05:00
c6a686560e
and I concur. git-svn-id: https://svn.xiph.org/trunk/ezstream@16319 0101bb08-14d6-0310-b084-bc0e0c8e3800
37 lines
1.5 KiB
XML
37 lines
1.5 KiB
XML
<!--
|
|
EXAMPLE: Ogg Vorbis playlist stream WITHOUT reencoding
|
|
|
|
This example streams a playlist that contains only Ogg Vorbis files. No
|
|
other file formats may be listed. Since ezstream will not be doing any
|
|
reencoding, the resulting stream format (quality/bitrate, samplerate,
|
|
channels) will be of the respective input files.
|
|
-->
|
|
<ezstream>
|
|
<url>http://localhost:8000/vorbis.ogg</url>
|
|
<!--
|
|
If a different user name than "source" should be used, set it in
|
|
<sourceuser/>:
|
|
-->
|
|
<!-- <sourceuser>mr_stream</sourceuser> -->
|
|
<sourcepassword>hackme</sourcepassword>
|
|
<format>VORBIS</format>
|
|
<filename>playlist.m3u</filename>
|
|
<!-- For demonstrational purposes, explicitly set continuous streaming: -->
|
|
<stream_once>0</stream_once>
|
|
<!--
|
|
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 input stream files.
|
|
-->
|
|
<svrinfoname>My Stream</svrinfoname>
|
|
<svrinfourl>http://www.oddsock.org</svrinfourl>
|
|
<svrinfogenre>RockNRoll</svrinfogenre>
|
|
<svrinfodescription>This is a stream description</svrinfodescription>
|
|
<svrinfobitrate>96</svrinfobitrate>
|
|
<svrinfoquality>2.0</svrinfoquality>
|
|
<svrinfochannels>2</svrinfochannels>
|
|
<svrinfosamplerate>44100</svrinfosamplerate>
|
|
<!-- Allow the server to advertise the stream on a public YP directory: -->
|
|
<svrinfopublic>1</svrinfopublic>
|
|
</ezstream>
|