Skip to content

Instantly share code, notes, and snippets.

@italic-r
Created January 9, 2019 04:01
Show Gist options
  • Save italic-r/a6dba3d4515051f450160c428e1604c4 to your computer and use it in GitHub Desktop.
Save italic-r/a6dba3d4515051f450160c428e1604c4 to your computer and use it in GitHub Desktop.
gqrx udp audio streaming
$ nc -l -u 7355
$ nc -l -u localhost 7355
$ nc -l -u 7355 | aplay -r 48k -f S16_LE -t raw -c 1
$ nc -l -u 7355 | \
sox -t raw -esigned-integer -b16 -r 48000 - -esigned-integer -b16 -r 22050 -t raw - | \
multimon-ng -t raw -a SCOPE -a POCSAG512 -a POCSAG1200 -a POCSAG2400 -f alpha -
$ vlc --demux=rawaud --rawaud-channels=1 --rawaud-samplerate=48000 udp://@:7355
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment