diff options
Diffstat (limited to 'encode-alsa32.sh')
-rwxr-xr-x | encode-alsa32.sh | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/encode-alsa32.sh b/encode-alsa32.sh deleted file mode 100755 index 750ecc5..0000000 --- a/encode-alsa32.sh +++ /dev/null @@ -1,17 +0,0 @@ -#!/bin/bash -# -# Read audio from ALSA input using sox, and encode with fdk-aac-dabplus-zmq -# -BITRATE=$1 -DST=$2 -ALSASRC="default" - -if [ "$DST" == "" ] -then - echo "Usage:" - echo " $0 <bitrate> <zmq destination>" - exit 1 -fi - -dabplus-enc -d $ALSASRC -c 2 -r 32000 -b $BITRATE -o $DST -p 48 - |