diff --git a/Application/FileConverter/ConversionJobs/ConversionJob_FFMPEG.cs b/Application/FileConverter/ConversionJobs/ConversionJob_FFMPEG.cs index 79f81586..7d0d5083 100644 --- a/Application/FileConverter/ConversionJobs/ConversionJob_FFMPEG.cs +++ b/Application/FileConverter/ConversionJobs/ConversionJob_FFMPEG.cs @@ -77,9 +77,9 @@ protected override void Initialize() this.ffmpegProcessStartInfo = new ProcessStartInfo(ffmpegPath) { - CreateNoWindow = true, - UseShellExecute = false, - RedirectStandardOutput = true, + CreateNoWindow = true, + UseShellExecute = false, + RedirectStandardOutput = false, RedirectStandardError = true }; @@ -88,7 +88,7 @@ protected override void Initialize() protected virtual void FillFFMpegArgumentsList() { - const string baseArgs = "-n -progress pipe:1"; + const string baseArgs = "-n"; bool customCommandEnabled = this.ConversionPreset.GetSettingsValue(ConversionPreset.ConversionSettingKeys.EnableFFMPEGCustomCommand); if (customCommandEnabled) @@ -424,7 +424,7 @@ protected virtual void FillFFMpegArgumentsList() } } } - + protected override void Convert() { if (this.ConversionPreset == null)