Actions

Broadcastify/RTLSDR-Airband

From The RadioReference Wiki

RTLSDR-Airband receives analog radio voice channels and produces audio streams which can be routed to various outputs.

Download: https://github.com/szpajder/RTLSDR-Airband

Broadcastify Fully Supports RTLSDR-Airband

Sample Config Files

  1. Sample file of "rtl_airband.conf" custom for BroadCastify.com
  2. index = 0 => First dongle
  3. index = 1 => Second dongle

devices: ({

 type = "rtlsdr";
 index = 0;
 gain = 28;
 correction = 0;
 mode = "scan";
 channels:
 (
   {
     #squelch = 35; # Uncomment to set squelch manually
     freqs = ( 118200000, 119450000, 121900000, 124200000 );
     labels = ( "Tower", "S-Approach", "Ground", "N-Approach" );
     outputs: (

# For local IceCast

       {
         type = "icecast";
         server = "127.0.0.1";
         port = 8000;
         mountpoint = "LOCAL";
         name = "Airport_ICAO";
         genre = "ATC";
         username = "source";
         password = "hackme";
         send_scan_freq_tags = true;

description = "LOCAL IceCast Server";

       },

# For remote BroadCastify

       {
         type = "icecast";
         server = "audioX.radioreference.com"; #FROM_YOUR_RR_FEED_PROVIDER_PAGE
         port = 80; # PORT OF RR_FEED_PROVIDER ICECAST SERVER, USUALLY 8000
         mountpoint = "XXXXXXXX"; #MOUNT_POINT_FROM_YOUR_RR_FEED_PROVIDER_PAGE
         name = "XXXXXXXX"; #FEED NAME THAT RR GAVE YOU WHEN YOU APPLIED

genre = "ATC";

         username = "source";
         password = "XXXXXXXX"; #PASSWD_FROM_YOUR_RR_FEED_PROVIDER_PAGE
         send_scan_freq_tags = true;

description = "XXXXXXXX"; #DESCRIPTION ASSIGNED FROM YOUR FEED APPLICATION

       }

# If you need more outputs, put here # Make sure you remove the comma at the end of the profile segment template e.g. "}," to "}" else you get and error !

     );
   }
 );
}

);