mirror of
https://gitlab.xiph.org/xiph/ezstream.git
synced 2024-11-03 04:17:18 -05:00
ed9e84f387
Everything ties together in stream configurations, of which there can be many now. For the time being, every stream configuration but the "default" is ignored. Every stream/server/encoder/decoder configuration now has the name "default" by default, so that configuring names is only needed to resolve ambiguities. Decoder configurations are now also constrained in this manner for consistency, meaning they are no longer uniquely identified by a number of file extensions but also a name.
30 lines
508 B
XML
30 lines
508 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<!--
|
|
EXAMPLE: A valid configuration that contains the absolute minimum
|
|
|
|
This configuration streams Ogg Vorbis files as-is.
|
|
-->
|
|
|
|
<ezstream>
|
|
|
|
<servers>
|
|
<server>
|
|
<hostname>127.0.0.1</hostname>
|
|
<password>hackme</password>
|
|
</server>
|
|
</servers>
|
|
|
|
<streams>
|
|
<stream>
|
|
<mountpoint>/stream.ogg</mountpoint>
|
|
<format>Vorbis</format>
|
|
</stream>
|
|
</streams>
|
|
|
|
<media>
|
|
<filename>playlist.m3u</filename>
|
|
</media>
|
|
|
|
</ezstream>
|