From 645fc656132eb439624fe393af1982ae951e5185 Mon Sep 17 00:00:00 2001 From: nexy7574 Date: Sat, 9 Sep 2023 22:14:23 +0100 Subject: [PATCH] Fix ffmpeg trimmer --- cogs/other.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cogs/other.py b/cogs/other.py index 608d715..182a02b 100644 --- a/cogs/other.py +++ b/cogs/other.py @@ -1012,7 +1012,7 @@ class OtherCog(commands.Cog): "-i", str(bak), "-ss", - "%d:%d:%d" % map(round, (hours, minutes, seconds)), + "{!s}:{!s}:{!s}".format(*map(round, (hours, minutes, seconds))), # "-c", # "copy", "-y",