From fc67f3061eea64d87a8ac7eb2c8acad0fb1a4f97 Mon Sep 17 00:00:00 2001 From: alkl58 Date: Thu, 20 Oct 2022 20:11:57 +0200 Subject: [PATCH] Skip Subtitles when WebM is used --- NotEnoughAV1Encodes/Video/VideoMuxer.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/NotEnoughAV1Encodes/Video/VideoMuxer.cs b/NotEnoughAV1Encodes/Video/VideoMuxer.cs index f1d71a0..b78962f 100644 --- a/NotEnoughAV1Encodes/Video/VideoMuxer.cs +++ b/NotEnoughAV1Encodes/Video/VideoMuxer.cs @@ -191,6 +191,10 @@ private static void MuxMKVMerge(bool mux, Queue.QueueElement queueElement, strin if (Path.GetExtension(queueElement.VideoDB.OutputPath).ToLower() == ".webm") { webmcmd = " --webm "; + + // Skip Subtitles - theoretically WebM supports WebVTT + // however we skip it until a better implementation in NEAV1E exists + subsMuxCommand = ""; } //Run mkvmerge command