* 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
7 lines
155 B
C#
7 lines
155 B
C#
namespace ErsatzTV.FFmpeg.OutputOption;
|
|
|
|
public class NoBFramesOutputOption : OutputOption
|
|
{
|
|
public override string[] OutputOptions => ["-bf", "0"];
|
|
}
|