Skip to content

Commit

Permalink
Merge pull request h2non#110 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 828109b + ebf440c commit d730d98
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ func main() {

- **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 matchers/audio.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package matchers
var (
TypeMidi = newType("mid", "audio/midi")
TypeMp3 = newType("mp3", "audio/mpeg")
TypeM4a = newType("m4a", "audio/m4a")
TypeM4a = newType("m4a", "audio/mp4")
TypeOgg = newType("ogg", "audio/ogg")
TypeFlac = newType("flac", "audio/x-flac")
TypeWav = newType("wav", "audio/x-wav")
Expand Down

0 comments on commit d730d98

Please sign in to comment.