mirror of
https://github.com/morpheus65535/bazarr.git
synced 2025-04-22 05:37:17 -04:00
11 lines
222 B
Python
11 lines
222 B
Python
import filetype
|
|
|
|
_IMG_MIME = {
|
|
'image/jpeg': 'jpeg',
|
|
'image/png': 'png',
|
|
'image/gif': 'gif'
|
|
}
|
|
|
|
def what(_, img):
|
|
img_type = filetype.guess(img)
|
|
return _IMG_MIME.get(img_type.mime) if img_type else None
|