Skip to content

Commit

Permalink
Merge pull request #114 from andersk/m4a
Browse files Browse the repository at this point in the history
Use correct audio/mp4 type for m4a
  • Loading branch information
h2non authored Feb 5, 2022
2 parents f818d0b + d507cd5 commit 557042f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ Audio
- **aac** - ``audio/aac``
- **mid** - ``audio/midi``
- **mp3** - ``audio/mpeg``
- **m4a** - ``audio/m4a``
- **m4a** - ``audio/mp4``
- **ogg** - ``audio/ogg``
- **flac** - ``audio/x-flac``
- **wav** - ``audio/x-wav``
Expand Down
2 changes: 1 addition & 1 deletion filetype/types/audio.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ class M4a(Type):
"""
Implements the M4A audio type matcher.
"""
MIME = 'audio/m4a'
MIME = 'audio/mp4'
EXTENSION = 'm4a'

def __init__(self):
Expand Down

0 comments on commit 557042f

Please sign in to comment.