Always compress where possible

This commit is contained in:
nexy7574 2023-05-11 19:04:13 +01:00
parent 03743e2f65
commit d7d6462d6d

View file

@ -1265,8 +1265,7 @@ class OtherCog(commands.Cog):
continue
st = file.stat().st_size
COMPRESS_FAILED = False
if st / 1024 / 1024 >= MAX_SIZE_MB or st >= BYTES_REMAINING:
if compress_if_possible:
if compress_if_possible and file.suffix in (".mp4", ".mkv", ".mov"):
await ctx.edit(
embed=discord.Embed(
title="Compressing...",
@ -1306,6 +1305,7 @@ class OtherCog(commands.Cog):
files.append(discord.File(file, file.name))
BYTES_REMAINING -= st
continue
if st / 1024 / 1024 >= MAX_SIZE_MB or st >= BYTES_REMAINING:
units = ["B", "KB", "MB", "GB", "TB"]
st_r = st
while st_r > 1024: