* 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
14 lines
350 B
C#
14 lines
350 B
C#
using ErsatzTV.FFmpeg.Format;
|
|
|
|
namespace ErsatzTV.FFmpeg.Encoder;
|
|
|
|
public class EncoderRawVideo : EncoderBase
|
|
{
|
|
public override string Name => "rawvideo";
|
|
|
|
public override StreamKind Kind => StreamKind.Video;
|
|
|
|
public override FrameState NextState(FrameState currentState) =>
|
|
currentState with { VideoFormat = VideoFormat.Raw };
|
|
}
|