diff options
author | TheTroll <trolldev@gmail.com> | 2010-03-23 18:25:44 +0100 |
---|---|---|
committer | TheTroll <trolldev@gmail.com> | 2010-03-23 18:25:44 +0100 |
commit | 967faa4dd1c94769995aec1cde6878490d03756c (patch) | |
tree | d663326e0252e140a040dd3a298c3bf3ac595944 /config_default.php | |
parent | b03192bd25734f3b707d62fd41efa6345b0565e5 (diff) | |
download | istreamdev-967faa4dd1c94769995aec1cde6878490d03756c.tar.gz istreamdev-967faa4dd1c94769995aec1cde6878490d03756c.tar.bz2 |
Added options to enable/disable vdr and media
Diffstat (limited to 'config_default.php')
-rwxr-xr-x | config_default.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/config_default.php b/config_default.php index 0bd3c9c..af87a2f 100755 --- a/config_default.php +++ b/config_default.php @@ -5,13 +5,15 @@ $httppath = '/istreamdev/'; // Absolute path to the index.php file. //Don't put http://yourdomain !! // VDR configuration + $vdrenable=1; // Enable/disable VDR feature $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 (set to "" to disable the VDR feature) + $vdrstreamdev='http://127.0.0.1:3000/TS/'; // VDR streamdev URL $vdrrecpath='/video/'; //VDR recording directory // Media configuration + $mediaenable=1; //Enable/disable media streaming feature $videotypes='avi mkv ts mov mp4 wmv flv mpg mpeg mpeg2 mpv '; // Supported video extensions (must finish with a space) $audiotypes='mp3 aac wav '; // Supported audio extensions $videosource = '/mnt/media/movies/'; // Video files directory |