guess audio mimetypes

This commit is contained in:
cwilvx
2024-05-08 11:15:02 +03:00
parent 6692c78110
commit 999b802f7d
2 changed files with 24 additions and 6 deletions
+21
View File
@@ -0,0 +1,21 @@
import mimetypes
def get_mime_from_ext(filename: str):
"""
Constructs a mime type from a file extension.
"""
ext = filename.rsplit(".", maxsplit=1)[-1]
return f"audio/{ext}"
def guess_mime_type(filename: str):
"""
Guess the mime type of a file.
"""
type = mimetypes.guess_type(filename)[0]
if type is None:
return get_mime_from_ext(filename)
return type