File: ezstream-video.xml

package info (click to toggle)
ezstream 1.0.2-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,832 kB
  • sloc: ansic: 9,693; sh: 4,967; xml: 398; makefile: 230
file content (43 lines) | stat: -rw-r--r-- 952 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<?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>