mirror of
https://gitlab.xiph.org/xiph/ezstream.git
synced 2024-11-03 04:17:18 -05:00
85406d9399
git-svn-id: https://svn.xiph.org/trunk/ezstream@16535 0101bb08-14d6-0310-b084-bc0e0c8e3800
54 lines
1.9 KiB
XML
54 lines
1.9 KiB
XML
<!--
|
|
EXAMPLE: Ogg Vorbis playlist stream with reencoding for use with
|
|
ezstream-file.sh(1)
|
|
|
|
This example streams a playlist generated by ezstream-file.sh(1) and
|
|
reencodes to Ogg Vorbis.
|
|
-->
|
|
<ezstream>
|
|
<url>http://localhost:8000/vorbis.ogg</url>
|
|
<sourcepassword>hackme</sourcepassword>
|
|
<!--
|
|
Since the reencoding feature is enabled below, <format /> sets the
|
|
output format of the stream.
|
|
-->
|
|
<format>VORBIS</format>
|
|
<!--
|
|
To function as a template for ezstream-file.sh(1), the <filename />
|
|
configuration must be as follows:
|
|
-->
|
|
<filename>%FILENAME%</filename>
|
|
<!--
|
|
The usual, remaining configuration statements follow. See the other
|
|
examples and the documentation for details.
|
|
-->
|
|
<svrinfoname>My Stream</svrinfoname>
|
|
<svrinfourl>http://www.oddsock.org</svrinfourl>
|
|
<svrinfogenre>RockNRoll</svrinfogenre>
|
|
<svrinfodescription>This is a stream description</svrinfodescription>
|
|
<svrinfobitrate>88</svrinfobitrate>
|
|
<svrinfoquality>1.5</svrinfoquality>
|
|
<svrinfochannels>2</svrinfochannels>
|
|
<svrinfosamplerate>44100</svrinfosamplerate>
|
|
<reencode>
|
|
<enable>1</enable>
|
|
<encdec>
|
|
<format>FLAC</format>
|
|
<match>.flac</match>
|
|
<decode>flac -s -d --force-raw-format --sign=signed --endian=little -o - "@T@"</decode>
|
|
</encdec>
|
|
<encdec>
|
|
<format>MP3</format>
|
|
<match>.mp3</match>
|
|
<decode>madplay -b 16 -R 44100 -S -o raw:- "@T@"</decode>
|
|
<encode>lame --preset cbr 128 -r -s 44.1 --bitwidth 16 - -</encode>
|
|
</encdec>
|
|
<encdec>
|
|
<format>VORBIS</format>
|
|
<match>.ogg</match>
|
|
<decode>oggdec -R -b 16 -e 0 -s 1 -o - "@T@"</decode>
|
|
<encode>oggenc -r -B 16 -C 2 -R 44100 --raw-endianness 0 -q 1.5 -t "@M@" -</encode>
|
|
</encdec>
|
|
</reencode>
|
|
</ezstream>
|