mirror of
https://gitlab.xiph.org/xiph/ezstream.git
synced 2024-11-03 04:17:18 -05:00
Add an example template configuration for ezstream-file.sh(1).
git-svn-id: https://svn.xiph.org/trunk/ezstream@16535 0101bb08-14d6-0310-b084-bc0e0c8e3800
This commit is contained in:
parent
c7f262ddf8
commit
85406d9399
@ -2,6 +2,7 @@ AUTOMAKE_OPTIONS = 1.9 foreign
|
||||
|
||||
examplesdir = @EXAMPLES_DIR@
|
||||
dist_examples_DATA = \
|
||||
ezstream-file_template.xml \
|
||||
ezstream_mp3.xml ezstream_reencode_mp3.xml \
|
||||
ezstream_reencode_theora.xml ezstream_reencode_vorbis.xml \
|
||||
ezstream_stdin_vorbis.xml ezstream_vorbis.xml \
|
||||
|
53
examples/ezstream-file_template.xml
Normal file
53
examples/ezstream-file_template.xml
Normal file
@ -0,0 +1,53 @@
|
||||
<!--
|
||||
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>
|
Loading…
Reference in New Issue
Block a user