1
0
mirror of https://gitlab.xiph.org/xiph/ezstream.git synced 2024-09-01 03:54:15 -04:00
ezstream/examples/ezstream-metadata.xml
Moritz Grimm b61b78e161 Modernize stream format options
Adds support for WebM/Matroska
Replaces Vorbis and Theora with Ogg
2020-01-24 23:27:02 +01:00

36 lines
620 B
XML

<?xml version="1.0" encoding="UTF-8"?>
<!--
EXAMPLE: A valid configuration that periodically sets metadata via a script
-->
<ezstream>
<servers>
<server>
<hostname>127.0.0.1</hostname>
<password>hackme</password>
</server>
</servers>
<streams>
<stream>
<mountpoint>/stream.ogg</mountpoint>
<format>Ogg</format>
</stream>
</streams>
<intakes>
<intake>
<type>stdin</type>
</intake>
</intakes>
<metadata>
<program>meta.sh</program>
<format_str>@a@ - @t@</format_str>
<refresh_interval>5</refresh_interval>
</metadata>
</ezstream>