From 2b93a40b3b90c210369a6fb35f914372a0ec516e Mon Sep 17 00:00:00 2001 From: alanbjohnston Date: Wed, 11 Aug 2021 10:02:02 -0400 Subject: [PATCH] added tee to play audio --- groundstation/sstv_decode.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/groundstation/sstv_decode.sh b/groundstation/sstv_decode.sh index c7afae2e..b539d2b0 100755 --- a/groundstation/sstv_decode.sh +++ b/groundstation/sstv_decode.sh @@ -1,5 +1,5 @@ #!/bin/bash -# script to decode SSTV using rtl_fm and QSSTV from the CubeSatSim +# script to decode SSTV using rtl_fm and QSSTV from the C echo "Script to decode SSTV from the CubeSatSim for ARISS Radio Pi" @@ -27,6 +27,7 @@ qsstv & sleep 5 -rtl_fm -M fm -f 434.9M -s 48k | aplay -D hw:2,0,0 -r 48000 -t raw -f S16_LE -c 1 & +#rtl_fm -M fm -f 434.9M -s 48k | aplay -D hw:2,0,0 -r 48000 -t raw -f S16_LE -c 1 & +rtl_fm -M fm -f 434.9M -s 48k | tee >(aplay -D hw:${2:0:1},0,0 -r 48000 -t raw -f S16_LE -c 1) | aplay -D hw:0,0 -r 48000 -t raw -f S16_LE -c 1 $SHELL