Files
ersatztv/ErsatzTV.FFmpeg/Format/VideoFormat.cs
T
Jason DoveandGitHub 35817f09ac add hls segmenter v2 streaming mode (#1620)
* 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
2024-02-19 13:59:33 -06:00

22 lines
727 B
C#

namespace ErsatzTV.FFmpeg.Format;
public static class VideoFormat
{
public const string Hevc = "hevc";
public const string H264 = "h264";
public const string Mpeg1Video = "mpeg1video";
public const string Mpeg2Video = "mpeg2video";
public const string MsMpeg4V2 = "msmpeg4v2";
public const string MsMpeg4V3 = "msmpeg4v3";
public const string Vc1 = "vc1";
public const string Mpeg4 = "mpeg4";
public const string Vp9 = "vp9";
public const string Av1 = "av1";
public const string MpegTs = "mpegts";
public const string Raw = "raw";
public const string Copy = "copy";
public const string GeneratedImage = "generated-image";
public const string Undetermined = "";
}