49 lines
880 B
PHP
49 lines
880 B
PHP
<?php
|
|
/*
|
|
Astra 19.2E https://www.satindex.de/transponderv-1.php
|
|
Astra 28.2E https://www.satindex.de/transponderv-3.php
|
|
... (and the other URLs from satindex.de
|
|
*/
|
|
|
|
$transponderDB = "https://www.satindex.de/transponderv-1.php";
|
|
|
|
/*
|
|
Elgato IP
|
|
*/
|
|
$IP = "192.168.42.37:8090";
|
|
|
|
/*
|
|
Exclude encrypted Channels?
|
|
*/
|
|
$exclude_encrypted = true;
|
|
$include_countries = array('Deutschland', 'Österreich', 'Schweiz', 'Großbritannien', 'Korea');
|
|
|
|
/*
|
|
"Allgemein"
|
|
"Bildung"
|
|
"Dokus / Reportagen"
|
|
"Erotik"
|
|
"HbbTV"
|
|
"Hinweistafel"
|
|
"Kinderprogramm"
|
|
"Kochen / Ernährung"
|
|
"Kultur"
|
|
"Lifestyle"
|
|
"Multimedia"
|
|
"Musik"
|
|
"Nachrichten"
|
|
"Pay per View"
|
|
"Promotion"
|
|
"Regional Programm"
|
|
"Religion"
|
|
"Shopping"
|
|
"Spielfilme"
|
|
"Sport"
|
|
"Standbilder"
|
|
"Urlaub / Reisen"
|
|
"Verschiedenes"
|
|
"Wirtschaft"
|
|
|
|
*/
|
|
$exclude_categories = array('Religion','Pay per View','Erotik','Hinweistafel','Promotion','Shopping','Standbilder');
|
|
?>
|