diff options
author | TheTroll <trolldev@gmail.com> | 2010-02-25 19:22:16 +0100 |
---|---|---|
committer | TheTroll <trolldev@gmail.com> | 2010-02-25 19:22:16 +0100 |
commit | 627da0570e79865643ae3c23c0f5244ac46d5d68 (patch) | |
tree | da526f76a8176a0f182f275f5834bccc7c8a0e59 /config_default.php | |
parent | c57e43d3caa214c0067ed1ec452fc5cd94c67121 (diff) | |
download | istreamdev-627da0570e79865643ae3c23c0f5244ac46d5d68.tar.gz istreamdev-627da0570e79865643ae3c23c0f5244ac46d5d68.tar.bz2 |
Added a source type and now show the media browsing respect to the type
Diffstat (limited to 'config_default.php')
-rwxr-xr-x | config_default.php | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/config_default.php b/config_default.php index ee3e6a2..3a2dba0 100755 --- a/config_default.php +++ b/config_default.php @@ -15,9 +15,10 @@ // Media configuration $videotypes='avi mkv ts mov mp4 wmv flv mpg mpeg mpeg2 mpv '; // Supported video extensions (must finish with a space) - // Source name Source path - $mediasources=array ( 'Video' => '/mnt/media/movies', - 'Audio' => '/mnt/media/music'); + // 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 |