10 lines
240 B
C#
10 lines
240 B
C#
namespace ErsatzTV.FFmpeg.Format;
|
|
|
|
public static class VideoProfile
|
|
{
|
|
public const string Main = "main";
|
|
public const string High = "high";
|
|
public const string High10 = "high10";
|
|
public const string High444p = "high444p";
|
|
}
|