diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2014-05-06 21:10:10 +0200 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2014-05-06 21:20:10 +0200 |
commit | 9fb273f8777ef11ad48498e5db5fd85958f75909 (patch) | |
tree | af8defea95e40d596aaf8442e995149af144e906 /doc/example.mux | |
parent | 97b0fdb983a62845faacf5020184a384ee1522ee (diff) | |
download | dabmux-9fb273f8777ef11ad48498e5db5fd85958f75909.tar.gz dabmux-9fb273f8777ef11ad48498e5db5fd85958f75909.tar.bz2 dabmux-9fb273f8777ef11ad48498e5db5fd85958f75909.zip |
Add explanation of output formats
Diffstat (limited to 'doc/example.mux')
-rw-r--r-- | doc/example.mux | 24 |
1 files changed, 22 insertions, 2 deletions
diff --git a/doc/example.mux b/doc/example.mux index 86ce483..f5a2476 100644 --- a/doc/example.mux +++ b/doc/example.mux @@ -234,8 +234,28 @@ components { ; A list of outputs, in the format ; unique-id "uri" outputs { + ; The unique-id has no signification. It can be used by the + ; remote control or the statistics server to identify the + ; output + + ;supported output types for file and fifo outputs are + ; raw, framed and streamed + ; + ; Please see doc/dab_output_formats.txt stdout "fifo:///dev/stdout?type=raw" -; ZeroMQ output example - ; zmq "zmq+tcp://*:8080" + ; ZeroMQ output example + ; Listen on all interfaces, on port 8080 + ;zmq "zmq+tcp://*:8080" + + ; Throttle output to real-time (one ETI frame every 24ms) + ;throttle "simul://" + + ; Other outputs: + ; TCP listen on port + ;net "tcp://host:port" + ; UDP send to host:port + ;net "ucp://host:port" + ; RAW (for farsync ETI card) + ;farsync "raw://device" } |