forked from charlie-foxtrot/RTLSDR-Airband
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbasic_scanning.conf
40 lines (39 loc) · 974 Bytes
/
basic_scanning.conf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# Scanning mode example
# Single dongle, three frequencies, output to Icecast server and to a file.
# Refer to https://github.com/charlie-foxtrot/RTLSDR-Airband/wiki
# for description of keywords and config syntax.
devices:
({
type = "rtlsdr";
index = 0;
gain = 25;
correction = 80;
mode = "scan";
channels:
(
{
freqs = ( 118.15, 124.7, 132.1 );
labels = ( "Tower", "Ground", "Approach" );
outputs: (
{
type = "icecast";
server = "icecast.server.example.org";
port = 8080;
mountpoint = "stream.mp3";
name = "Tower + Ground + Approach";
genre = "ATC";
description = "My local airport - aggregated feed";
username = "source";
password = "mypassword";
send_scan_freq_tags = false;
},
{
type = "file";
directory = "/home/pi/recordings";
filename_template = "TWR+GND+APP";
}
);
}
);
}
);