DAB multiplexing

From Opendigitalradio
(Difference between revisions)
Jump to: navigation, search
(Live multiple input)
(Live multiple input)

Revision as of 02:04, 29 December 2010

The multiplexer gather different program streams (DAB, DAB+ or T-DMB), produces necessary signalling and output a single 2Mbit/s stream in ETI format (Ensemble Transport Interface).

Multiplexing with CRC-DabMux

Live multiple input

The multiplexer takes files as input. Standard input (/dev/stdin) can be used to get an encoded stream as input. In order to input many live streams, it is necessary to use FIFO files (also called "named pipe") created with "mkfifo" unix command.

Example, with 3 DAB 128kbps channels (1.ff to 3.ff are the FIFO files)

CRC-DabMux -L "LabelSuisse"  -A 1.ff -b 128 -i 1 -S -L "Label1" -C \
-A 2.ff -b 128 -i 2 -S -L "Label2" -C \
-A 3.ff -b 128 -i 3 -S -L "Label3" -C \
-O fifo:///dev/stdout

Example with 4 DAB+ inputs on one DAB input, non-blocking mode is used with option "-k" to incomplete DAB+ frames from the encoder.

CRC-DabMux -L "TuxMux"  \
-A 1.ff -k -b 128 -i 10 -S -L "L2_128" -C \
-F 2.ff -k -b 48 -i 2 -S -L "AAC48" -C \
-F 3.ff -k -b 64 -i 3 -S -L "AAC64" -C \
-F 4.ff -k -b 128 -i 4 -S -L "AAC128" -C \
-O fifo:///dev/stdout

Other projects

Personal tools