Files
ersatztv/ErsatzTV.FFmpeg/OutputOption/ShortestOutputOption.cs
T
Jason DoveandGitHub 35817f09ac add hls segmenter v2 streaming mode (#1620)
* concat segmenter process kind of works

* segmenter v2 improvements

* rework to allow hw accel in concat segmenter

* remove shortest; use different audio alignment filter

* hls v2 improvements

* fix tests

* update changelog
2024-02-19 13:59:33 -06:00

7 lines
158 B
C#

namespace ErsatzTV.FFmpeg.OutputOption;
public class ShortestOutputOption : OutputOption
{
public override string[] OutputOptions => ["-shortest"];
}