Fix #868: Added opus to the list of supported mimetypes and extensions

This commit is contained in:
Eliot Berriot 2019-06-27 06:05:22 +02:00
parent a763cc42b1
commit 95cd64582c
No known key found for this signature in database
GPG Key ID: DD6965E2476E5C27
2 changed files with 2 additions and 0 deletions

View File

@ -31,6 +31,7 @@ def compute_status(jobs):
AUDIO_EXTENSIONS_AND_MIMETYPE = [
("ogg", "audio/ogg"),
("opus", "audio/opus"),
("mp3", "audio/mpeg"),
("flac", "audio/x-flac"),
("flac", "audio/flac"),

View File

@ -0,0 +1 @@
Added opus to the list of supported mimetypes and extensions (#868)