* use mkv container for hls direct * add setting for mp4/mkv container with hls direct * cleanup * update changelog
11 lines
125 B
C#
11 lines
125 B
C#
namespace ErsatzTV.FFmpeg.OutputFormat;
|
|
|
|
public enum OutputFormatKind
|
|
{
|
|
None,
|
|
Mkv,
|
|
MpegTs,
|
|
Mp4,
|
|
Hls
|
|
}
|