summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/parsers/audio.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/parsers/audio.py b/src/parsers/audio.py
index 5c5c527..c2c52e6 100644
--- a/src/parsers/audio.py
+++ b/src/parsers/audio.py
@@ -33,3 +33,6 @@ class MP3Parser(MutagenParser):
33 33
34class OGGParser(MutagenParser): 34class OGGParser(MutagenParser):
35 mimetypes = {'audio/ogg', } 35 mimetypes = {'audio/ogg', }
36
37class FLACParser(MutagenParser):
38 mimetypes = {'audio/flac', }