basic_multichannel.conf 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. # This is a minimalistic configuration file for RTLSDR-Airband.
  2. # Just a single RTL dongle with two AM channels in multichannel mode.
  3. # Each channel is sent to a single Icecast output.
  4. # Refer to https://github.com/charlie-foxtrot/RTLSDR-Airband/wiki
  5. # for description of keywords and config syntax.
  6. devices:
  7. ({
  8. type = "rtlsdr";
  9. index = 0;
  10. gain = 25;
  11. centerfreq = 120.0;
  12. correction = 80;
  13. channels:
  14. (
  15. {
  16. freq = 119.5;
  17. outputs: (
  18. {
  19. type = "icecast";
  20. server = "icecast.server.example.org";
  21. port = 8080;
  22. mountpoint = "TWR.mp3";
  23. name = "Tower";
  24. genre = "ATC";
  25. username = "source";
  26. password = "mypassword";
  27. }
  28. );
  29. },
  30. {
  31. freq = 120.225;
  32. outputs: (
  33. {
  34. type = "icecast";
  35. server = "icecast.server.example.org";
  36. port = 8080;
  37. mountpoint = "GND.mp3";
  38. name = "Ground";
  39. genre = "ATC";
  40. description = "My local airport - ground feed";
  41. username = "source";
  42. password = "mypassword";
  43. }
  44. );
  45. }
  46. );
  47. }
  48. );