RTL Airband - ver1: Porovnání verzí

Z Poznámkový blok
Přejít na: navigace, hledání
(Založena nová stránka s textem „ # Moje konfugurace ... Do toho nikomu nic neni .. mixers: { mixer1: { outputs: ( { type = "icecast"; server = "r…“)
 
Řádka 175: Řádka 175:
 
   }
 
   }
 
  );
 
  );
 +
* [[Raspberry#Projekty | Zpět na projekty Raspberry Pi]]
 +
* [[RTLSDR-Airband#Moje_konfigurace | Zpět na RTL Airband]]

Verze z 1. 1. 2021, 16:04

# Moje konfugurace ... Do toho nikomu nic neni ..

mixers: {
  mixer1: {
    outputs: (
        {
          type = "icecast";
          server = "rs.slapnet.cz";
          port = 8000;
          mountpoint = "brno-mix1";
          username = "user";
          password = "1234";
          name = "Turany zem, SLZ, Turany radar";     # Pojmenovani streamu.
          description = "Prijem vybranych kannalu";   # Popis streamu - vetsinou se nezobrazuje
          genre = "ATC";                              # Zanr streamu
        }
    );
  },
  mixer2: {
    outputs: (
        {
          type = "icecast";
          server = "rs.slapnet.cz";
          port = 8000;
          mountpoint = "brno-mix2";
          username = "user";
          password = "1234";
          name = "Ground + Delivery";
          description = "Prijem testik ...";
          genre = "ATC";
        }
    );
  },
  mixer3: {
    outputs: (
        {
          type = "icecast";
          server = "rs.slapnet.cz";
          port = 8000;
          mountpoint = "brno-mix3";
          username = "user";
          password = "1234";
          name = "Scan Brno";
          description = "Scan letiste Brno";
          genre = "ATC";
          send_scan_freq_tags = true;
        }
    );
  }
};

devices:
(
  {
    type = "rtlsdr";
    index = 0;
    gain = 25;
    centerfreq = 126.390;       # Stredni, vychozi frekvence
    correction = 55;            # Korekce RTL-SDR v ppm
    mode = "multichannel";      # Mod rezimu [ multichannel / scan ]
    channels:
    (
      {
        freq = 125.430;
        outputs: (
          {
            type = "mixer";
            name = "mixer1";
            balance = 0.8;      # Umisteni streamu v ramci stereo poslechu [-1.0 az 1.0] -1.0 jen v levo, 0.0 na stred, 1.0 jen v pravo
            ampfactor = 1.0;    # Uroven hlasitosti [0 az 2] Hodnota 1 bezezmeny, 0 - 1 ztlumeni, 1 - 2 zesileni
          }
        );
      },
      {
        freq = 125.830;
        outputs: (
          {
            type = "mixer";
            name = "mixer1";
            balance = 0.0;
            ampfactor = 1.0;
          }
        );
      },
      {
        freq = 127.350;
        outputs: (
          {
            type = "mixer";
            name = "mixer1";
            balance = -0.8;
            ampfactor = 1.0;
          }
        );
      }
    );
  },
  {
    type = "rtlsdr";
    index = 1;
    gain = 25;
    centerfreq = 120.553;
    correction = 55;
    mode = "multichannel";
    channels:
    (
      {
        freq = 119.605;
        outputs: (
          {
            type = "mixer";
            name = "mixer2";
            balance = -0.8;
            ampfactor = 1.0;
          }
        );
      },
      {
        freq = 120.555;
        outputs: (
          {
            type = "mixer";
            name = "mixer2";
            balance = -0.4;
            ampfactor = 1.0;
          }
        );
      },
      {
        freq = 121.005;
        outputs: (
          {
            type = "mixer";
            name = "mixer2";
            balance = 0.8;
            ampfactor = 1.0;
          }
        );
      },
      {
        freq = 121.500;
        outputs: (
          {
            type = "mixer";
            name = "mixer1";
            balance = 0.0;
            ampfactor = 1.5;
          }
        );
      }
    );
  },
  {
    type = "rtlsdr";
    index = 2;
    gain = 25;
    correction = 55;
    mode = "scan";
    channels: (
      {
        freqs = ( 125.430, 131.800, 127.350, 119.605 );
        labels = ( "Zem", "Provoz", "Radar", "Vez" );
        afc = 0;                # Automaticka korekce frekvence. 0 - vypnuto, 1 - zapnuto
#       notch = 100.0;          # Uskopasmovy filtru
#       notch_q = 10.0;         # Selektivni filtr
#       bandwidth = 8000;       # Filtr kanalu pred modulaci
        outputs: (
          {
            type = "mixer";
            name = "mixer3";
          }
        );
      }
    );
  }
);