diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2021-05-14 16:05:16 +0200 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2021-05-14 16:05:16 +0200 |
commit | cdb85b87c07cdd912c765cdbfe3e32586cc34b0a (patch) | |
tree | dc32b7a9e660d62e5f1df1537419f80b3a8414c8 /doc/example.mux | |
parent | 052450fb9462a185341616b9e7c6193cd305b187 (diff) | |
download | dabmux-cdb85b87c07cdd912c765cdbfe3e32586cc34b0a.tar.gz dabmux-cdb85b87c07cdd912c765cdbfe3e32586cc34b0a.tar.bz2 dabmux-cdb85b87c07cdd912c765cdbfe3e32586cc34b0a.zip |
Add EDI UDP multicast support
Diffstat (limited to 'doc/example.mux')
-rw-r--r-- | doc/example.mux | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/doc/example.mux b/doc/example.mux index 92a644d..f170bda 100644 --- a/doc/example.mux +++ b/doc/example.mux @@ -192,9 +192,15 @@ subchannels { ; for audio and dabplus, EDI input is available. It supports TCP server and UDP inputproto edi - ; Accepts connection to port 9001 from any interface + ; Accepts connection to port 9001 from any interface. Prefer disabling PFT when using TCP. inputuri "tcp://0.0.0.0:9001" + ; For UDP, PFT should be enabled at the sender. + ; Unicast UDP input: + ;inputuri "udp://:9001" + ; Multicast UDP input: + ;inputuri "udp://@239.10.0.1: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) |