diff options
author | TheTroll <trolldev@gmail.com> | 2010-03-16 13:30:04 +0100 |
---|---|---|
committer | TheTroll <trolldev@gmail.com> | 2010-03-16 13:30:04 +0100 |
commit | 5400c2d66985a85591b2b78085615cd2826911a4 (patch) | |
tree | 6ccceffa7c3932b3eb6559b11abe1720b7d82d03 /config_default.php | |
parent | d1f8c381b7aabba27d261274548fa5b51e3dcc94 (diff) | |
download | istreamdev-5400c2d66985a85591b2b78085615cd2826911a4.tar.gz istreamdev-5400c2d66985a85591b2b78085615cd2826911a4.tar.bz2 |
PHP part WIP
Diffstat (limited to 'config_default.php')
-rwxr-xr-x | config_default.php | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/config_default.php b/config_default.php new file mode 100755 index 0000000..1cce79f --- /dev/null +++ b/config_default.php @@ -0,0 +1,36 @@ +<?php + // Http configuration + $user = 'istreamdev'; // Login + $pass = 'iguest'; // Password + $httppath = '/istreamdev/'; // Absolute path to the index.php file. //Don't put http://yourdomain !! + + // VDR configuration + + $vdrenabled=1; // enable/disable VDR features + $vdrchannels='/etc/vdr/channels.conf'; // VDR channel list + $svdrpport=2001; // SVDRP port + $svdrpip='127.0.0.1'; // SVDRP ip + $vdrstreamdev='http://127.0.0.1:3000/TS/'; // VDR streamdev URL + $vdrrecpath='/video/'; //VDR recording directory + + // Media configuration + $videotypes='avi mkv ts mov mp4 wmv flv mpg mpeg mpeg2 mpv '; // Supported video extensions (must finish with a space) + // 1:vid 2:aud Source name Source path + $mediasource=array(); + $mediasources[]=array ( 1, 'Video', '/mnt/media/movies'); + $mediasources[]=array ( 2, 'Audio', '/mnt/media/music'); + + // Encoding + // Name Video Audio Audio channels Resolution + $quality=array ( 'Edge' => '128k 64k 1 240x160', + '3g' => '350k 64k 1 408x272', + 'Wifi' => '512k 128k 2 480x320'); + $maxencodingprocesses=10; // Max simultaneous encoding processes + + // Misc + $ffmpegpath = '/usr/bin/ffmpeg'; //path to ffmpeg binary + $segmenterpath = '/usr/bin/segmenter'; //path to segmenter binary + + // Version + $isdversion = "0.3.7"; +?> |