diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2019-09-05 11:16:12 +0200 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2019-09-05 11:16:12 +0200 |
commit | 52b5fd3769cbd5b9641e85f1203862e0f2b81f76 (patch) | |
tree | 618e4f0e3d87ecde07e817ab5fb6f40e8f94cd72 /doc/example.mux | |
parent | c0788a90a0d6e047488980a2ad5bb4f9cf108682 (diff) | |
download | dabmux-52b5fd3769cbd5b9641e85f1203862e0f2b81f76.tar.gz dabmux-52b5fd3769cbd5b9641e85f1203862e0f2b81f76.tar.bz2 dabmux-52b5fd3769cbd5b9641e85f1203862e0f2b81f76.zip |
Update example configurations
Diffstat (limited to 'doc/example.mux')
-rw-r--r-- | doc/example.mux | 32 |
1 files changed, 26 insertions, 6 deletions
diff --git a/doc/example.mux b/doc/example.mux index 31e072d..3c5df5c 100644 --- a/doc/example.mux +++ b/doc/example.mux @@ -161,22 +161,42 @@ subchannels { sub-fu { ; This is our DAB programme, using a file input type audio - inputfile "funk.mp2" bitrate 128 id 10 protection 3 + + inputfile "funk.mp2" + } + sub-bla { + type audio + bitrate 96 + id 1 + protection 1 + + ; for audio and dabplus, EDI input is available. It supports TCP server and UDP + inputproto edi + ; Accepts connection to port 9001 from any interface + inputuri "tcp://0.0.0.0:9001" + + ; Two buffer-management types are available: prebuffering and timestamped. + ; prebuffering will accumulate a few frames before it starts streaming, and each + ; time there is a buffer underrun (similar to how the ZMQ input works) + ; + ; timestamped takes into account the TIST inside EDI and inserts the encoded + ; audio frame into the ETI frame with the same timestamp + buffer-management prebuffering } sub-ri { - ; This is our DAB+ programme, using a ZeroMQ + ; This is our DAB+ programme, using a ZeroMQ input type dabplus - ; Accepts connections to port 9000 from any interface. - ; Use ODR-AudioEnc as encoder - inputproto zmq - inputuri "tcp://*:9000" bitrate 96 id 1 protection 3 + ; Accepts connections to port 9000 from any interface. + ; Use ODR-AudioEnc as encoder + inputproto zmq + inputuri "tcp://*:9000" ; ZMQ specific options, mandatory: ; Maximum size of input buffer, in AAC frames (24ms) |