Remove non image formats

This commit is contained in:
2025-10-09 20:37:39 +02:00
parent 3279e8e3c0
commit fb90935d42

View File

@ -2,7 +2,7 @@ from urllib.parse import urlparse, quote_plus
from os.path import splitext
IMAGE_FORMATS = ["jpeg", "jpg", "png", "gif", "mp4", "webm"]
IMAGE_FORMATS = ["jpeg", "jpg", "png", "gif"]
VIDEO_FORMATS = ["mp4", "webm"]