From 17308fb4d935d620eb296abe038476602864724d Mon Sep 17 00:00:00 2001 From: Alan Johnston Date: Tue, 6 Oct 2020 22:16:36 -0400 Subject: [PATCH] sstv decode script using QSSTV --- groundstation/sstv_decode.sh | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100755 groundstation/sstv_decode.sh diff --git a/groundstation/sstv_decode.sh b/groundstation/sstv_decode.sh new file mode 100755 index 00000000..d9b5e12b --- /dev/null +++ b/groundstation/sstv_decode.sh @@ -0,0 +1,26 @@ +#!/bin/bash +# script to decode SSTV using rtl_fm and QSSTV from the CubeSatSim + +echo "Script to decode SSTV from the CubeSatSim for ARISS Radio Pi" + +echo + +sudo modprobe snd-aloop + +sudo systemctl stop openwebrx + +sudo systemctl stop rtl_tcp + +pkill -o chromium &>/dev/null + +sudo killall -9 rtl_tcp &>/dev/null + +sudo killall -9 java &>/dev/null + +sudo killall -9 CubicSDR &>/dev/null + +rtl_fm -M fm -f 434.9M -s 48k | aplay -D hw:2,0,0 -r 48000 -t raw -f S16_LE -c 1 & + +qsstv & + +$SHELL