From bbfdf1e9f4d2a06dd13e206edc92779577b86ddc Mon Sep 17 00:00:00 2001 From: barelyprofessional <150058423+barelyprofessional@users.noreply.github.com> Date: Sun, 24 Aug 2025 02:39:55 -0500 Subject: [PATCH] Instead of remuxing, --merge-output-format to mp4 instead of mkv. Might help with audio desync issues? --- KfChatDotNetBot/Services/StreamCapture.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/KfChatDotNetBot/Services/StreamCapture.cs b/KfChatDotNetBot/Services/StreamCapture.cs index 8924ada..715f1ef 100644 --- a/KfChatDotNetBot/Services/StreamCapture.cs +++ b/KfChatDotNetBot/Services/StreamCapture.cs @@ -107,7 +107,7 @@ public class StreamCapture(string streamUrl, StreamCaptureMethods captureMethod, captureLine = $"{_settings[BuiltIn.Keys.CaptureYtDlpBinaryPath].Value} -o \"{_settings[BuiltIn.Keys.CaptureYtDlpOutputFormat].Value}\" " + $"--user-agent \"{_settings[BuiltIn.Keys.CaptureYtDlpUserAgent].Value}\" " + $"--cookies-from-browser {_settings[BuiltIn.Keys.CaptureYtDlpCookiesFromBrowser].Value} " + - $"--write-info-json --wait-for-video 15 --remux-video mp4 {streamUrl}"; + $"--write-info-json --wait-for-video 15 --merge-output-format mp4 {streamUrl}"; } else if (captureMethod == StreamCaptureMethods.Streamlink) {