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.
19 lines
463 B
19 lines
463 B
1 year ago
|
+++
|
||
|
# 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 = ''
|
||
|
categories = [ 'amateur-radio', 'computerstuff' ]
|
||
|
tags = [ 'linux', 'freebsd' ]
|
||
|
|
||
|
+++
|
||
|
|
||
|
## 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`.
|
||
|
|