mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-04-15 03:01:37 -05:00
✨ Added support for .m4a format in audio cards
https://github.com/TryGhost/Team/issues/1894 - The .m4a is an apple lossless format which comes up every so often. Adding support for this format seems easy enough than coming back to the topic of it's support once every 6 months ^_^
This commit is contained in:
parent
09df67b1b3
commit
b12400577a
1 changed files with 3 additions and 2 deletions
|
@ -30,7 +30,7 @@
|
|||
"contentTypes": ["image/jpeg", "image/png", "image/gif", "image/svg+xml", "image/x-icon", "image/vnd.microsoft.icon", "image/webp"]
|
||||
},
|
||||
"media": {
|
||||
"extensions": [".mp4",".webm", ".ogv", ".mp3", ".wav", ".ogg"],
|
||||
"extensions": [".mp4",".webm", ".ogv", ".mp3", ".wav", ".ogg", ".m4a"],
|
||||
"contentTypes": [
|
||||
"video/mp4",
|
||||
"video/webm",
|
||||
|
@ -40,7 +40,8 @@
|
|||
"audio/wave",
|
||||
"audio/wav",
|
||||
"audio/x-wav",
|
||||
"audio/ogg"
|
||||
"audio/ogg",
|
||||
"audio/x-m4a"
|
||||
]
|
||||
},
|
||||
"thumbnails": {
|
||||
|
|
Loading…
Add table
Reference in a new issue