Last active
January 19, 2025 20:51
rtl_fm demodulation guide
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# rtl_fm demodulation guide | |
# based on excerpts from: http://kmkeen.com/rtl-demod-guide/index.html | |
# requires rtl-sdr (rtl_fm bundled), sox for audio, multimon for pager decoding | |
# broadcast FM radio | |
rtl_fm -W -f 89.1M | play -r 32k -t raw -e signed-integer -b 16 -c 1 -V1 - | |
# police scanner | |
rtl_fm -N -E -f 154.42M -f 154.75M -f 154.82M -f 154.89M -s 12k -o 4 -g 49.2 -l 70 | play -r 12k ... | |
# airband scanner | |
rtl_fm -M -f 118M:137M:25k -s 12k -g 49.2 -l 280 | play -r 12k ... | |
# pager decoder | |
rtl_fm -N -E -f 929.77M -s 22.5k -o 4 -g 11.5 -l 250 | multimon -t raw /dev/stdin |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment