Skip to content

Commit

Permalink
Fix Combining Hardsub and other filters
Browse files Browse the repository at this point in the history
  • Loading branch information
Alkl58 committed Mar 29, 2023
1 parent 1776039 commit bc4131c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion NotEnoughAV1Encodes/Video/VideoSplitter.cs
Expand Up @@ -338,7 +338,7 @@ private void FFmpegChunking(CancellationToken _token)
if (!queueElement.SubtitleBurnCommand.Contains("-filter_complex"))
{
// Prevents using "-vf" two times
ffmpegCommand += queueElement.SubtitleBurnCommand.Remove(0, 5);
ffmpegCommand += "," + queueElement.SubtitleBurnCommand.Remove(0, 5);
}
}

Expand Down

0 comments on commit bc4131c

Please sign in to comment.