mirror of
https://github.com/morpheus65535/bazarr.git
synced 2025-12-23 23:59:04 -05:00
12 lines
222 B
Python
12 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
|