Skip to content

Commit

Permalink
Skip Subtitles when WebM is used
Browse files Browse the repository at this point in the history
  • Loading branch information
Alkl58 committed Oct 20, 2022
1 parent bf5d339 commit fc67f30
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions NotEnoughAV1Encodes/Video/VideoMuxer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit fc67f30

Please sign in to comment.