Stream custom live channels using your own media
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

20 lines
690 B

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 Copy = "copy";
public const string GeneratedImage = "generated-image";
public const string Undetermined = "";
}