diff options
author | Matthias P. Braendli (think) <matthias@mpb.li> | 2013-11-08 18:14:57 +0100 |
---|---|---|
committer | Matthias P. Braendli (think) <matthias@mpb.li> | 2013-11-08 18:14:57 +0100 |
commit | d930ee6b9a52f0eb9939b3fe55afd2361944edb2 (patch) | |
tree | a26c6c31bebe6681da54d9acd782c3fe96969da7 /doc/example.config | |
parent | c5306f81a9d3b87df7e16c852f2505ac913193ca (diff) | |
download | dabmux-d930ee6b9a52f0eb9939b3fe55afd2361944edb2.tar.gz dabmux-d930ee6b9a52f0eb9939b3fe55afd2361944edb2.tar.bz2 dabmux-d930ee6b9a52f0eb9939b3fe55afd2361944edb2.zip |
add support for ZeroMQ output
Diffstat (limited to 'doc/example.config')
-rw-r--r-- | doc/example.config | 25 |
1 files changed, 24 insertions, 1 deletions
diff --git a/doc/example.config b/doc/example.config index 0b309eb..25a0809 100644 --- a/doc/example.config +++ b/doc/example.config @@ -57,11 +57,16 @@ services { label "Luschtig" ; pty, language, shortlabel and id can be omitted, and will take default values } + rick { + label "rick" + shortlabel "rick" + } + } ; The subchannels are defined in the corresponding section. ; supported types are : audio, bridge, data, enhancedpacket, - dabplus, dmb, packet, test +; dabplus, dmb, packet, test subchannels { funk { type audio @@ -79,6 +84,14 @@ subchannels { id 3 ;protection 5 } + rick { + type dabplus + inputfile "rick.dabp" + nonblock false + bitrate 96 + id 1 + protection 1 + } } ; For now, each component links one service to one subchannel @@ -98,10 +111,20 @@ components { service luschtig subchannel luschtig } + + ricky { + label "rick" + shortlabel "rick" + service rick + subchannel rick + } } ; A list of outputs, in the format ; unique_id "uri" outputs { foobar "fifo:///dev/stdout?type=raw" + +; ZeroMQ output example + ; zmq "zmq+tcp://*:8080" } |