1
0
mirror of https://git.sr.ht/~tsileo/microblog.pub synced 2025-06-05 21:59:23 +02:00

Webp support

This commit is contained in:
Thomas Sileo
2022-08-26 08:48:14 +02:00
parent d21ce3313d
commit 53a31ae562

View File

@ -979,6 +979,11 @@ async def serve_proxy_media_resized(
if getattr(i, "is_animated", False):
raise ValueError
i.thumbnail((size, size))
try:
resized_buf = BytesIO()
i.save(resized_buf, format="webp")
except Exception:
logger.exception("Failed to convert to webp")
resized_buf = BytesIO()
i.save(resized_buf, format=i.format)
resized_buf.seek(0)