Fix AV1 artifacts (custom SVT args)

This commit is contained in:
n00mkrad
2022-07-04 10:14:54 +02:00
parent c8744f26f9
commit e30fa39ecd

View File

@@ -93,7 +93,7 @@ namespace Flowframes.Media
{
int cq = Config.GetInt(Config.Key.av1Crf);
string g = GetKeyIntArg(fps, keyint);
return new string[] { $"-c:v {GetEnc(codec)} -b:v 0 -qp {cq} {GetSvtAv1Speed()} {g} -pix_fmt {GetPixFmt()}" };
return new string[] { $"-c:v {GetEnc(codec)} -b:v 0 -qp {cq} {GetSvtAv1Speed()} {g} -svtav1-params enable-overlays=0:enable-tf=0:scd=0 -pix_fmt {GetPixFmt()}" };
}
if (codec == Codec.Vp9)