Skip to content

Commit

Permalink
fix: map .m4a, .mp4 and .opus mime types
Browse files Browse the repository at this point in the history
  • Loading branch information
mgoltzsche committed Mar 20, 2024
1 parent 95d797c commit 7b346b5
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions beetsplug/beetstream/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,10 @@
'.aac' : 'audio/aac',
'.flac' : 'audio/flac',
'.mp3' : 'audio/mpeg',
'.mp4' : 'audio/mp4',
'.m4a' : 'audio/mp4',
'.ogg' : 'audio/ogg',
'.opus' : 'audio/opus',
}

def strip_accents(s):
Expand Down

0 comments on commit 7b346b5

Please sign in to comment.