server/func/mime: support ftypM4V file signature

This commit is contained in:
Shyam Sunder 2021-03-30 09:52:49 -04:00
parent 7b54551b8e
commit 545b5828b5

View file

@ -24,7 +24,7 @@ def get_mime_type(content: bytes) -> str:
if content[0:4] == b"\x1A\x45\xDF\xA3":
return "video/webm"
if content[4:12] in (b"ftypisom", b"ftypiso5", b"ftypmp42"):
if content[4:12] in (b"ftypisom", b"ftypiso5", b"ftypmp42", b"ftypM4V "):
return "video/mp4"
return "application/octet-stream"