mirror of
https://gitlab.xiph.org/xiph/ezstream.git
synced 2024-11-03 04:17:18 -05:00
32 lines
548 B
XML
32 lines
548 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<!--
|
|
EXAMPLE: A valid configuration that streams Vorbis input from STDIN as-is
|
|
|
|
This configuration streams Ogg Vorbis from standard input 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>
|
|
|
|
<intakes>
|
|
<intake>
|
|
<type>stdin</type>
|
|
</intake>
|
|
</intakes>
|
|
|
|
</ezstream>
|