diff --git a/src/cogs/ffmeta.py b/src/cogs/ffmeta.py index 8678787..c7f2d92 100644 --- a/src/cogs/ffmeta.py +++ b/src/cogs/ffmeta.py @@ -248,7 +248,7 @@ class FFMeta(commands.Cog): return await ctx.respond("That's not an image!") with tempfile.NamedTemporaryFile(suffix=Path(image.filename).suffix) as temp: img_tmp = io.BytesIO(await image.read()) - dst: io.BytesIO = await asyncio.to_thread(self.jpegify_image, img_tmp, 50, "jpeg") + dst: io.BytesIO = await asyncio.to_thread(self.jpegify_image, img_tmp, 90, "webp") temp.write(dst.getvalue()) temp.flush() process = await asyncio.create_subprocess_exec(