Files
ersatztv/ErsatzTV.FFmpeg/Format/VideoProfile.cs
T
Jason DoveandGitHub c1d6ddcc57 add h264 profile option to ffmpeg profile (#1686)
* add video profile for nvenc/software h264 encoders

* add h264 profile for all other encoders

* update changelog
2024-04-22 22:03:18 -05:00

8 lines
150 B
C#

namespace ErsatzTV.FFmpeg.Format;
public static class VideoProfile
{
public const string Main = "main";
public const string High = "high";
}