|
@@ -1916,7 +1916,9 @@ namespace MediaBrowser.Controller.MediaEncoding
|
|
|
|
|
|
if (!string.IsNullOrEmpty(profile))
|
|
|
{
|
|
|
- if (!string.Equals(videoEncoder, "h264_v4l2m2m", StringComparison.OrdinalIgnoreCase))
|
|
|
+ // Currently there's no profile option in av1_nvenc encoder
|
|
|
+ if (!(string.Equals(videoEncoder, "av1_nvenc", StringComparison.OrdinalIgnoreCase)
|
|
|
+ || string.Equals(videoEncoder, "h264_v4l2m2m", StringComparison.OrdinalIgnoreCase)))
|
|
|
{
|
|
|
param += " -profile:v:0 " + profile;
|
|
|
}
|