* add video profile for nvenc/software h264 encoders * add h264 profile for all other encoders * update changelog
8 lines
150 B
C#
8 lines
150 B
C#
namespace ErsatzTV.FFmpeg.Format;
|
|
|
|
public static class VideoProfile
|
|
{
|
|
public const string Main = "main";
|
|
public const string High = "high";
|
|
}
|