diff options
author | TheTroll <trolldev@gmail.com> | 2010-03-23 19:36:11 +0100 |
---|---|---|
committer | TheTroll <trolldev@gmail.com> | 2010-03-23 19:36:11 +0100 |
commit | 7d8bc8ba0454d704bb7be03909a31d0c01a4be1a (patch) | |
tree | 1c4474f58d230c79ac42b168393d3058a453fd9d /config_default.php | |
parent | b1195b4cf5bdfbd807fcb33c8096528f7b4503dc (diff) | |
download | istreamdev-7d8bc8ba0454d704bb7be03909a31d0c01a4be1a.tar.gz istreamdev-7d8bc8ba0454d704bb7be03909a31d0c01a4be1a.tar.bz2 |
renamed features enables
Diffstat (limited to 'config_default.php')
-rwxr-xr-x | config_default.php | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/config_default.php b/config_default.php index b421482..11aa4a1 100755 --- a/config_default.php +++ b/config_default.php @@ -1,11 +1,15 @@ <?php + // Enable/disable features + $enablevdr=1; // VDR feature + $enablemediavideo=1; // Video streaming + $enablemediaaudio=1; // Audio streaming + // Http configuration $user = 'istreamdev'; // Login $pass = 'iguest'; // Password - $httppath = '/istreamdev/'; // Absolute path to the index.php file. //Don't put http://yourdomain !! + $httppath = '/istreamdev/'; // Absolute path to the index.php file. Don't put http://yourdomain !! // VDR configuration - $vdrenabled=1; // Enable/disable VDR feature $vdrchannels='/etc/vdr/channels.conf'; // VDR channel list $svdrpport=2001; // SVDRP port $svdrpip='127.0.0.1'; // SVDRP ip @@ -13,7 +17,6 @@ $vdrrecpath='/video/'; //VDR recording directory // Media configuration - $mediaenabled=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 |