* wip: hls direct subtitles * convert picture subtitles with hls direct * use mp4 for hls direct to support more codecs * disable subtitle conversion in hls direct * fix tests * update changelog
9 lines
277 B
C#
9 lines
277 B
C#
namespace ErsatzTV.FFmpeg.Encoder;
|
|
|
|
public class EncoderDvdSubtitle : EncoderBase
|
|
{
|
|
public override string Name => "dvdsub";
|
|
public override StreamKind Kind => StreamKind.Subtitle;
|
|
public override FrameState NextState(FrameState currentState) => currentState;
|
|
}
|