1
0
mirror of https://gitlab.xiph.org/xiph/ezstream.git synced 2024-06-09 06:10:42 +00:00
ezstream/examples/ezstream-video.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

44 lines
952 B
XML

<?xml version="1.0" encoding="UTF-8"?>
<!--
EXAMPLE: A valid configuration for video streaming with Ogg Theora
-->
<ezstream>
<servers>
<server>
<hostname>127.0.0.1</hostname>
<password>hackme</password>
</server>
</servers>
<streams>
<stream>
<mountpoint>/video.ogg</mountpoint>
<format>Ogg</format>
<!-- No encoder configured (see below). -->
</stream>
</streams>
<intakes>
<intake>
<filename>playlist.m3u</filename>
</intake>
</intakes>
<decoders>
<decoder>
<name>Theora-192x128</name>
<!--
Reencodes into Ogg Theora directly. The stream should be configured
without an encoder, so that the decoder output is passed through as-is.
-->
<program>ffmpeg2theora -x 192 -y 128 -a 0 -v 4 --title @M@ -o - @T@</program>
<file_ext>.avi</file_ext>
<file_ext>.mpg</file_ext>
</decoder>
</decoders>
</ezstream>