* wip * fix songs again * don't use lists of video and audio input files * test concat command output * move concat pipeline * start to use ffmpeg state * add ffmpeg state and audio state * audio state is required * attach input options directly to input files * move filters to input files * add watermark support
21 lines
690 B
C#
21 lines
690 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 Copy = "copy";
|
|
public const string GeneratedImage = "generated-image";
|
|
public const string Undetermined = "";
|
|
}
|