diff options
| author | Andreas Frisch <andreas.frisch@multimedia-labs.de> | 2008-10-03 20:52:50 +0000 |
|---|---|---|
| committer | Andreas Frisch <andreas.frisch@multimedia-labs.de> | 2008-10-03 20:52:50 +0000 |
| commit | f51d97f3ee2b0121ffe1fe789ca58c089408b980 (patch) | |
| tree | 4e1f76c406e65ec479fd0daf47af47a2ae7a97ad /lib/python/Plugins | |
| parent | b6c21aa27e2a782996c625bc6e85a466bd7c9932 (diff) | |
| download | enigma2-f51d97f3ee2b0121ffe1fe789ca58c089408b980.tar.gz enigma2-f51d97f3ee2b0121ffe1fe789ca58c089408b980.zip | |
Allow playback of VCD (Video CD) and SVCD
Diffstat (limited to 'lib/python/Plugins')
| -rw-r--r-- | lib/python/Plugins/Extensions/MediaPlayer/plugin.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/lib/python/Plugins/Extensions/MediaPlayer/plugin.py b/lib/python/Plugins/Extensions/MediaPlayer/plugin.py index c4282a07..25491b67 100644 --- a/lib/python/Plugins/Extensions/MediaPlayer/plugin.py +++ b/lib/python/Plugins/Extensions/MediaPlayer/plugin.py @@ -843,6 +843,15 @@ def filescan(**kwargs): description = "View Movies...", openfnc = filescan_open, ), + Scanner(mimetypes = ["video/x-vcd"], + paths_to_scan = + [ + ScanPath(path = "mpegav", with_subdirs = False), + ], + name = "Video CD", + description = "View Video CD...", + openfnc = filescan_open, + ), Scanner(mimetypes = ["audio/mpeg", "audio/x-wav", "application/ogg"], paths_to_scan = [ |
