Files
ersatztv/ErsatzTV.FFmpeg/GlobalOption/ProgressOption.cs
T
Jason DoveandGitHub f47134d2d0 log warnings when transcoding speed is potentially insufficient (#2808)
* refactor parsing ffmpeg progress/speed

* log warnings when transcoding speed is potentially insufficient

* dont log progress on hls direct; fix tests
2026-02-03 08:49:07 -06:00

7 lines
154 B
C#

namespace ErsatzTV.FFmpeg.GlobalOption;
public class ProgressOption : GlobalOption
{
public override string[] GlobalOptions => ["-progress", "-"];
}