From 3d6e0beb1dd487c3ae88286bdde80f4ee9b5d876 Mon Sep 17 00:00:00 2001 From: Jason Dove <1695733+jasongdove@users.noreply.github.com> Date: Fri, 20 Feb 2026 09:24:53 -0600 Subject: [PATCH] output progress/speed even when copying video --- ErsatzTV.FFmpeg/Pipeline/PipelineBuilderBase.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ErsatzTV.FFmpeg/Pipeline/PipelineBuilderBase.cs b/ErsatzTV.FFmpeg/Pipeline/PipelineBuilderBase.cs index eeb638ed7..30779e663 100644 --- a/ErsatzTV.FFmpeg/Pipeline/PipelineBuilderBase.cs +++ b/ErsatzTV.FFmpeg/Pipeline/PipelineBuilderBase.cs @@ -211,6 +211,7 @@ public abstract class PipelineBuilderBase : IPipelineBuilder new NoStandardInputOption(), new HideBannerOption(), new NoStatsOption(), + new ProgressOption(), new LoglevelErrorOption(), new StandardFormatFlags(), new NoDemuxDecodeDelayOutputOption(), @@ -220,7 +221,6 @@ public abstract class PipelineBuilderBase : IPipelineBuilder if (desiredState.VideoFormat != VideoFormat.Copy) { pipelineSteps.Add(new ClosedGopOutputOption()); - pipelineSteps.Add(new ProgressOption()); } if (desiredState.VideoFormat != VideoFormat.Copy && !desiredState.AllowBFrames)