Browse Source

output progress/speed even when copying video

pull/2833/head
Jason Dove 5 months ago
parent
commit
3d6e0beb1d
No known key found for this signature in database
  1. 2
      ErsatzTV.FFmpeg/Pipeline/PipelineBuilderBase.cs

2
ErsatzTV.FFmpeg/Pipeline/PipelineBuilderBase.cs

@ -211,6 +211,7 @@ public abstract class PipelineBuilderBase : IPipelineBuilder @@ -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 @@ -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)

Loading…
Cancel
Save