diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2014-11-03 16:47:28 +0100 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2014-11-03 16:47:28 +0100 |
commit | 789bdc3270fa537914eacc77208a194c9eed2e53 (patch) | |
tree | 759bbbdfd719994c2fbdcb78a6f5c6f88dc61110 /README.md | |
parent | cf883f6d9d9b69d5d828ef08e0be65386fa625c8 (diff) | |
download | ODR-AudioEnc-789bdc3270fa537914eacc77208a194c9eed2e53.tar.gz ODR-AudioEnc-789bdc3270fa537914eacc77208a194c9eed2e53.tar.bz2 ODR-AudioEnc-789bdc3270fa537914eacc77208a194c9eed2e53.zip |
Enable afterburner by default and deprecate -a
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -130,7 +130,7 @@ This illustrates the fifo input over standard input of *dabplus-enc*. sox -t alsa $ALSASRC -b 16 -t raw - rate 32k channels 2 | \ dabplus-enc -r 32000 -l \ - -i - -b $BITRATE -f raw -a -o $DST -p 53 + -i - -b $BITRATE -f raw -o $DST -p 53 The -p 53 sets the padlen, compatible with the default mot-encoder setting. mot-encoder needs to be given the same value for this option. @@ -142,7 +142,7 @@ Live Stream encoding and preparing for DAB muxer, with FIFO to odr-dabmux, 48kHz arecord. arecord -t raw -f S16_LE -c 2 -r 48000 -D plughw:CARD=Loopback,DEV=0,SUBDEV=0 | \ - dabplus-enc -l -a -b $BITRATE -f raw -c 2 -r 48000 -i /dev/stdin -o - | \ + dabplus-enc -l -b $BITRATE -f raw -c 2 -r 48000 -i /dev/stdin -o - | \ mbuffer -q -m 10k -P 100 -s 360 > station1.fifo Here we are using the ALSA plughw feature. @@ -163,14 +163,14 @@ Scenario 6 ---------- Wave file encoding, for non-realtime processing - dabplus-enc -a -b $BITRATE -i wave_file.wav -o station1.dabp + dabplus-enc -b $BITRATE -i wave_file.wav -o station1.dabp Scenario 7 ---------- JACK input: Instead of -i (file input) or -d (ALSA input), use -j *name*, where *name* specifies the JACK name for the encoder: - dabplus-enc -j myenc -l -b $BITRATE -f raw -a -o $DST + dabplus-enc -j myenc -l -b $BITRATE -f raw -o $DST The samplerate of the JACK server should be 32kHz or 48kHz. |