faster av1 encoding with tiling

This commit is contained in:
N00MKRAD
2021-05-10 00:25:23 +02:00
parent ddf6aa3a3f
commit 25c0d229a0

View File

@@ -83,7 +83,7 @@ namespace Flowframes.Media
if (codec == Codec.AV1)
{
int cq = (Config.GetInt("av1Crf") * 1.0f).RoundToInt();
args += $"-b:v 0 -qp {cq} -g 240 {GetSvtAv1Speed()} -pix_fmt yuv420p";
args += $"-b:v 0 -qp {cq} -g 240 {GetSvtAv1Speed()} -tile_rows 2 -tile_columns 2 -pix_fmt yuv420p";
}
if (codec == Codec.VP9)