From 7b66bdabbbe53addc93aed2b5a3fad8aaa65fa61 Mon Sep 17 00:00:00 2001 From: Scrub <72096833+ScrubN@users.noreply.github.com> Date: Thu, 11 Jul 2024 01:01:27 -0400 Subject: [PATCH] Uncap maximum streams (#1149) --- TwitchDownloaderCore/VideoDownloader.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/TwitchDownloaderCore/VideoDownloader.cs b/TwitchDownloaderCore/VideoDownloader.cs index eecb1d74..487fc5d7 100644 --- a/TwitchDownloaderCore/VideoDownloader.cs +++ b/TwitchDownloaderCore/VideoDownloader.cs @@ -340,6 +340,7 @@ private async Task RunFfmpegVideoCopy(string tempFolder, FileInfo outputFil "-analyzeduration", $"{int.MaxValue}", "-probesize", $"{int.MaxValue}", "-f", "concat", + "-max_streams", $"{int.MaxValue}", "-i", concatListPath, "-i", metadataPath, "-map_metadata", "1",