diff options
Diffstat (limited to 'doc')
-rw-r--r-- | doc/advanced.mux | 7 | ||||
-rw-r--r-- | doc/example.mux | 13 |
2 files changed, 15 insertions, 5 deletions
diff --git a/doc/advanced.mux b/doc/advanced.mux index 99ed4c8..4543998 100644 --- a/doc/advanced.mux +++ b/doc/advanced.mux @@ -276,20 +276,21 @@ components { ; FIG 0/13 is only transmitted when figtype is defined. ; The -d option on the command line is: ;datagroup (true|false) - ; and defaults to false. + ; and defaults to false. You should normally set + ;datagroup true + ; if your packet mode subchannel is tranferring an MOT application such + ; as EPG or Slideshow. } comp-lu { service srv-lu subchannel sub-lu - figtype 0x2 } comp-ri { service srv-ri subchannel sub-ri - figtype 0x2 } } diff --git a/doc/example.mux b/doc/example.mux index c7f1f2d..5a65829 100644 --- a/doc/example.mux +++ b/doc/example.mux @@ -153,10 +153,18 @@ outputs { ; Output RAW ETI NI to standard output stdout "fifo:///dev/stdout?type=raw" - ; ZeroMQ output example + ; ZeroMQ output example + ; This output does not back-pressure the multiplexer. ; Listen on all interfaces, on port 9100 ;zmq "zmq+tcp://*:9100" + ; Output ETI-over-TCP. This is like piping a RAW ETI NI data stream + ; into a TCP socket, except that the output can handle simultaneous + ; connections. + ; 0.0.0.0 means "listen on all interfaces" + ; This output does not back-pressure the multiplexer. + ;tcp "tcp://0.0.0.0:9200" + ; Throttle output to real-time (one ETI frame every 24ms) ;throttle "simul://" @@ -167,6 +175,7 @@ outputs { ; For an output to a pipe, the data consumer at the other end of the pipe ; will dictate the multiplexing rate to ODR-DabMux. ; - ; If you use the zmq output, you must also enable a simul:// output! + ; If you use the zmq+tcp:// or the tcp:// output, + ; you must also enable a simul:// output! } |