basic_scanning.conf 995 B

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