diff options
author | TheTroll <trolldev@gmail.com> | 2010-02-24 14:16:31 +0100 |
---|---|---|
committer | TheTroll <trolldev@gmail.com> | 2010-02-24 14:16:31 +0100 |
commit | 6d2af1fac7bd066b75ebd237cc538e29fd21b729 (patch) | |
tree | d9e047923576b6c99cffc3dc66de5e4b77aa8789 /config_default.php | |
parent | 626bd613fd2909cb83fe5b03a19f67a8a9f97d66 (diff) | |
download | istreamdev-6d2af1fac7bd066b75ebd237cc538e29fd21b729.tar.gz istreamdev-6d2af1fac7bd066b75ebd237cc538e29fd21b729.tar.bz2 |
Now support media sources instead of only one media path (see the $mediasources config variable)
Changed the way we browse dirs (with a mediapath and a subdir)
Diffstat (limited to 'config_default.php')
-rwxr-xr-x | config_default.php | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/config_default.php b/config_default.php index c78103e..f02d272 100755 --- a/config_default.php +++ b/config_default.php @@ -15,16 +15,17 @@ // Media configuration $mediainfopath='/usr/bin/mediainfo'; - $mediapath='/mnt/media/'; //path to your media files - $videotypes='avi mkv ts mov mp4 wmv flv mpg mpeg mpeg2 mpv'; //video files extensions - $audiotypes='mp3 wav aac flac'; //audio files extensions + $videotypes='avi mkv ts mov mp4 wmv flv mpg mpeg mpeg2 mpv'; //video files extensions + $audiotypes='mp3 wav aac flac'; //audio files extensions + // Source name Source path + $mediasources=array ( 'Video' => '/mnt/media/movies', + 'Audio' => '/mnt/media/music'); // Encoding // Name Video Audio Audio channels Resolution - $quality = array( 'Edge' => '128k 64k 1 240x160', + $quality=array ( 'Edge' => '128k 64k 1 240x160', '3g' => '350k 64k 1 408x272', - 'Wifi' => '512k 128k 2 480x320' - ); + 'Wifi' => '512k 128k 2 480x320'); // Misc $ffmpegpath = '/usr/bin/ffmpeg'; //path to ffmpeg binary |