Merge pull request #6212 from komenski/add-mime-type-for-airplay-support

luci-lib-httpprotoutils: add airplay mime types
This commit is contained in:
Jo-Philipp Wich 2023-01-25 00:07:38 +01:00 committed by GitHub
commit f6434180f4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -45,10 +45,13 @@ MIME_TYPES = {
["mp3"] = "audio/mpeg";
["ogg"] = "audio/x-vorbis+ogg";
["wav"] = "audio/x-wav";
["aac"] = "audio/aac";
["mpg"] = "video/mpeg";
["mpeg"] = "video/mpeg";
["avi"] = "video/x-msvideo";
["mov"] = "video/quicktime";
["mp4"] = "video/mp4";
}
-- "application/octet-stream" if the extension is unknown.