diff options
| author | jvoisin | 2018-03-25 16:20:45 +0200 |
|---|---|---|
| committer | jvoisin | 2018-03-25 16:20:45 +0200 |
| commit | 2eb68928d50935564e7e3c582136bc25d29b432b (patch) | |
| tree | 5aae18e94727fc7b2376d3ced76428bceb0651e4 /src | |
| parent | 19a8fd97aa44e2f42a933f43cc9852d6303d7ca6 (diff) | |
FLAC support
Diffstat (limited to 'src')
| -rw-r--r-- | src/parsers/audio.py | 3 |
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 | ||
| 34 | class OGGParser(MutagenParser): | 34 | class OGGParser(MutagenParser): |
| 35 | mimetypes = {'audio/ogg', } | 35 | mimetypes = {'audio/ogg', } |
| 36 | |||
| 37 | class FLACParser(MutagenParser): | ||
| 38 | mimetypes = {'audio/flac', } | ||
