You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
+++
|
|
|
|
# vim: ft=markdown
|
|
|
|
title = 'Listen to VHF/UHF radio with an RTL-SDR stick'
|
|
|
|
summary = '''Listen to old-school radio on the command line with `rtl_sdr`.'''
|
|
|
|
date = '2023-06-04T10:33:11+02:00'
|
|
|
|
lastmod = '2023-07-30T07:08:16+0000'
|
|
|
|
categories = [ 'amateur-radio', 'computerstuff' ]
|
|
|
|
tags = [ 'linux', 'freebsd', 'sdr' ]
|
|
|
|
|
|
|
|
+++
|
|
|
|
|
|
|
|
## Listen to Ö3 at 97.8 MHz
|
|
|
|
```console
|
|
|
|
$ rtl_fm -f 97800000 -M wbfm - | play -t raw -r 32k -es -b 16 -c 1 -V1 -
|
|
|
|
```
|
|
|
|
|
|
|
|
It is usually `-r 24k` if we don't use `-M wbfm`.
|
|
|
|
|