Various build fixes, cleanup and details #6

Merged
leo merged 34 commits from trace into main 2023-11-21 15:32:49 +00:00
Showing only changes of commit c3d6aecffd - Show all commits

View File

@ -1,4 +1,5 @@
import asyncio
import gc
import io
import mimetypes
import urllib.parse
@ -105,10 +106,13 @@ def process_video(path, *, maxsize, quality):
container.seek(container.duration // 8)
frame = next(container.decode(stream))
img = frame.to_image()
del frame, stream
img.thumbnail((maxsize, maxsize))
imgdata = io.BytesIO()
if rotation:
img = img.rotate(rotation, expand=True)
img.save(imgdata, format="webp", quality=quality, method=4)
return imgdata.getvalue()
ret = imgdata.getvalue()
gc.collect()
return ret