shajen / rtl-sdr-scanner

Automatically scan and record selected frequencies ranges using rtl-sdr.
GNU General Public License v3.0
59 stars 14 forks source link

config #10

Open iddq opened 4 years ago

iddq commented 4 years ago

Hello, how could I add freqs to config? Is there any tool for doing this or by hand?

shajen commented 3 years ago

For now there is no any additional tool to do this. The easiest way to to start working is modify example config and pass file as argument:

{
  "frequencies_ranges": [
    {
      "start": 420000000,
      "stop": 426000000,
      "modulation": "fm"
    }
  ],
  "ignored_frequencies_ranges": [],
  "device": {
    "ppm_error": 0,
    "tuner_gain": 0
  },
  "scanning": {
    "noise_level": -7.9,
    "bandwidth": 2000000,
    "samples": 10240,
    "fft": 16384
  },
  "recording": {
    "squelch": 5,
    "min_recording_time": 1,
    "max_recording_time": 60,
    "max_silence_time": 1
  }
}