See #170: fixed several feed parsing issues

This commit is contained in:
Eliot Berriot 2020-03-13 15:26:11 +01:00
parent b43d0f7009
commit a119a5d90a
No known key found for this signature in database
GPG key ID: 6B501DFD73514E14
4 changed files with 23 additions and 7 deletions

View file

@ -37,10 +37,13 @@ def compute_status(jobs):
AUDIO_EXTENSIONS_AND_MIMETYPE = [
# keep the most correct mimetype for each extension at the bottom
("mp3", "audio/mpeg3"),
("mp3", "audio/x-mp3"),
("mp3", "audio/mpeg"),
("ogg", "video/ogg"),
("ogg", "audio/ogg"),
("opus", "audio/opus"),
("mp3", "audio/mpeg"),
("aac", "audio/x-m4a"),
("m4a", "audio/x-m4a"),
("flac", "audio/x-flac"),