Compare commits

...

4 Commits

Author SHA1 Message Date
ac8aa3418a Merge branch 'scraper' into scraper-dev 2025-10-09 20:38:07 +02:00
3ead328a0f Merge branch 'master' into scraper 2025-10-09 20:37:55 +02:00
fb90935d42 Remove non image formats 2025-10-09 20:37:39 +02:00
889e9b69a8 Remove non image formats 2025-10-09 20:36:06 +02:00

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"]