diff options
author | Alib <aliboba@free.fr> | 2010-03-15 17:56:22 +0100 |
---|---|---|
committer | Alib <aliboba@free.fr> | 2010-03-15 17:56:22 +0100 |
commit | 438912c0c4a4075a5cd74cf9689451c9df4bbe34 (patch) | |
tree | 334e03bbba01b002a34d3cbf81ee7e600ec7bff6 /config_default.php | |
parent | a8012963c23e7e5eaf487ee9e192ae5c4d4ccff2 (diff) | |
download | istreamdev-438912c0c4a4075a5cd74cf9689451c9df4bbe34.tar.gz istreamdev-438912c0c4a4075a5cd74cf9689451c9df4bbe34.tar.bz2 |
New Jquery branch. Initial development version for istreamdev 1.0
Diffstat (limited to 'config_default.php')
-rwxr-xr-x | config_default.php | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/config_default.php b/config_default.php deleted file mode 100755 index 1cce79f..0000000 --- a/config_default.php +++ /dev/null @@ -1,36 +0,0 @@ -<?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"; -?> |