1
0
Fork 0
old-dotfiles/.config/fish/functions/decode-gqrx.fish
2023-02-18 21:12:37 +01:00

3 lines
No EOL
171 B
Fish

function decode-gqrx --description "Reads packets from Gqrx via UDP and plays audio"
socat stdout udp-listen:9999 | dsdccx -i - -fa -o - | play -q -t s16 -r 8k -c 1 -
end