From f2f3f67d1033b4f2ab8acaf2c1d4c2951228d699 Mon Sep 17 00:00:00 2001 From: Dominic Date: Thu, 16 Nov 2023 09:57:06 +0100 Subject: [PATCH] set quality level to 22 24 hides a lot of details "in the background", i.e. in the dark green areas of the blackboard --- src/render/ffmpeg.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/render/ffmpeg.rs b/src/render/ffmpeg.rs index 614ad19..c01269f 100644 --- a/src/render/ffmpeg.rs +++ b/src/render/ffmpeg.rs @@ -256,7 +256,7 @@ impl Ffmpeg { } // append encoding options - const QUALITY: &str = "24"; + const QUALITY: &str = "22"; if vaapi { cmd.arg("-c:v").arg("h264_vaapi"); if self.video_bitrate.is_none() {