From 775c1e4ae875e6ea4c27758bd4b08d1caab17759 Mon Sep 17 00:00:00 2001 From: Mark Hoekveen Date: Wed, 9 Apr 2025 18:52:06 +0200 Subject: [PATCH] remove fps compression --- bin/vcmp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/vcmp b/bin/vcmp index f968f97..e978a76 100755 --- a/bin/vcmp +++ b/bin/vcmp @@ -103,7 +103,7 @@ def ffmpeg_command(input: pathlib.Path, output: pathlib.Path, nice: int = 20) -> "ffmpeg", "-progress", "pipe:1", # Send progress info to stdout "-i", str(input), - "-vf", "fps='if(gte(source_fps,100),source_fps/4,if(gte(source_fps,50),source_fps/2,source_fps))',scale=-2:'min(1080,ih)'", + "-vf", "scale=-2:'min(1080,ih)'", "-c:v", "libsvtav1", "-crf", "40", "-c:a", "aac",