Files
ersatztv/ErsatzTV.FFmpeg/OutputFormat/OutputFormatKind.cs
T
Jason DoveandGitHub 147ab6143d hls direct mkv container (#1292)
* use mkv container for hls direct

* add setting for mp4/mkv container with hls direct

* cleanup

* update changelog
2023-06-06 10:21:09 -05:00

11 lines
125 B
C#

namespace ErsatzTV.FFmpeg.OutputFormat;
public enum OutputFormatKind
{
None,
Mkv,
MpegTs,
Mp4,
Hls
}