summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorjvoisin2018-03-25 16:20:45 +0200
committerjvoisin2018-03-25 16:20:45 +0200
commit2eb68928d50935564e7e3c582136bc25d29b432b (patch)
tree5aae18e94727fc7b2376d3ced76428bceb0651e4 /src
parent19a8fd97aa44e2f42a933f43cc9852d6303d7ca6 (diff)
FLAC support
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', }