diff --git a/TwitchDownloaderCore/ClipDownloader.cs b/TwitchDownloaderCore/ClipDownloader.cs index 1945c2e5..6189d18d 100644 --- a/TwitchDownloaderCore/ClipDownloader.cs +++ b/TwitchDownloaderCore/ClipDownloader.cs @@ -169,6 +169,7 @@ await FfmpegMetadata.SerializeAsync(metadataFile, clipMetadata.broadcaster.displ }; process.Start(); + process.BeginErrorReadLine(); // If the process has exited before we call WaitForExitAsync, the thread locks up. // This was probably not intended by the .NET team, but it's an issue regardless.