update to current services_mediatomb api
[enigtomb.git] / config.php.dist
1 <?php
2 $GLOBALS['enigtombConfig'] = array(
3     'dreambox' => array(
4         //hostname or IP of the dreambox
5         'host' => 'FIXME'
6     ),
7     'mediatomb' => array(
8         //hostname of IP of the mediatomb server
9         'host' => 'FIXME',
10         'port' => 49152,
11         //mediatomb web UI username and password
12         'user' => 'FIXME',
13         'pass' => 'FIXME',
14
15         //the mediatomb UPnP directory you want your radio stations listed
16         'radiodir'   => 'Radio',
17         //The bouqet whose stations you want to have in the root radio dir
18         'rootBouqet' => 'Favourites',
19         //mime type of the external links (helpful for transcoding)
20         'mimetype'   => 'audio/x-satellite-mpeg2'
21     ),
22     //array of radio station name replacements
23     'namefixes' => array(
24         'DKULTUR'      => 'D-Kultur',
25         'DLF'          => 'Deutschlandfunk',
26         'JAZZ RADIO'   => 'Jazz Radio',
27         'MDR FIGARO'   => 'Figaro',
28         'MDR INFO'     => 'mdr info',
29         'MDR JUMP'     => 'Jump',
30         'MDR SPUTNIK'  => 'Sputnik',
31         'MDR1 SACHSEN' => 'mdr1 Radio Sachsen',
32         'VIBRATION'    => 'Vibration',
33     )
34 );
35 ?>