I'm currently using this command which tunes to Shannon Volmet and outputs the audio to an external speaker
However, I'm trying to scan though multiple hf aero frequencies, Ive tried
and
but both commands only play the first frequency and thats it.. hopefully someone on here knows how to do it properly.
William
Code:
rtl_fm -f 5505000 -s 11025 -g 30 -M usb -E direct2 - | aplay -r 11025 -f S16_LE -t raw -c 1
Code:
rtl_fm -f 5450000 -f 89570000 -f 11309000 -s 11025 -g 30 -M usb -E direct2 -l 10 - | aplay -r 11025 -f S16_LE -t raw -c 1
Code:
rtl_fm -f 5450000:89570000:11309000 -s 11025 -g 30 -M usb -E direct2 -l 10 - | aplay -r 11025 -f S16_LE -t raw -c 1
William