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.
47 lines
969 B
XML
47 lines
969 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>Theora</format>
|
|
<encoder>PassThrough</encoder>
|
|
</stream>
|
|
</streams>
|
|
|
|
<media>
|
|
<filename>playlist.m3u</filename>
|
|
</media>
|
|
|
|
<decoders>
|
|
<decoder>
|
|
<name>Theora-192x128</name>
|
|
<!-- Reencode into Ogg Theora directly -->
|
|
<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>
|
|
|
|
<encoders>
|
|
<encoder>
|
|
<name>PassThrough</name>
|
|
<format>Theora</format>
|
|
<!-- Do not set an encoder program to pass through data as-is -->
|
|
</encoder>
|
|
</encoders>
|
|
|
|
</ezstream>
|