summaryrefslogtreecommitdiff
path: root/config_default.php
diff options
context:
space:
mode:
Diffstat (limited to 'config_default.php')
-rwxr-xr-xconfig_default.php36
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";
+?>