Browse Source

Merge pull request #564 from xsteadfastx/master

liquid_tags: Add .oga file extension to audio plugin
Justin Mayer 9 years ago
parent
commit
c545b7000e
1 changed files with 1 additions and 0 deletions
  1. 1 0
      liquid_tags/audio.py

+ 1 - 0
liquid_tags/audio.py

@@ -27,6 +27,7 @@ AUDIO = re.compile(r'(/\S+|https?:\S+)(?:\s+(/\S+|https?:\S+))?(?:\s+(/\S+|https
 
 AUDIO_TYPEDICT = {'.mp3': 'audio/mpeg',
                   '.ogg': 'audio/ogg',
+                  '.oga': 'audio/ogg',
                   '.opus': 'audio/ogg',
                   '.wav': 'audio/wav',
                   '.mp4': 'audio/mp4'}