some fixes
[enigma2.git] / lib / python / Components / FileList.py
index 889df6294ce0dcd6b79bb2c0eb6ffa753b9864d2..e028ec3a1864c8a4c64cc50f3a548678d260c465 100644 (file)
@@ -10,9 +10,11 @@ from enigma import RT_HALIGN_LEFT, eListboxPythonMultiContent, \
 from Tools.LoadPixmap import LoadPixmap
 
 EXTENSIONS = {
+               "mp2": "music",
                "mp3": "music",
                "wav": "music",
                "ogg": "music",
+               "flac": "music",
                "jpg": "picture",
                "jpeg": "picture",
                "png": "picture",
@@ -22,7 +24,7 @@ EXTENSIONS = {
                "mpg": "movie",
                "mpeg": "movie",
                "mkv": "movie",
-               "avi": "movie",
+               "mp4": "movie"
        }
 
 def FileEntryComponent(name, absolute = None, isDir = False):