0
Fork 0
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:
Naz 2022-09-13 21:37:24 +08:00 committed by naz
parent 09df67b1b3
commit b12400577a

View file

@ -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": {