From 2eb68928d50935564e7e3c582136bc25d29b432b Mon Sep 17 00:00:00 2001 From: jvoisin Date: Sun, 25 Mar 2018 16:20:45 +0200 Subject: FLAC support --- src/parsers/audio.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src') 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): class OGGParser(MutagenParser): mimetypes = {'audio/ogg', } + +class FLACParser(MutagenParser): + mimetypes = {'audio/flac', } -- cgit v1.3