mirror of
https://github.com/n00mkrad/flowframes.git
synced 2025-12-16 08:27:44 +01:00
faster av1 encoding with tiling
This commit is contained in:
@@ -83,7 +83,7 @@ namespace Flowframes.Media
|
|||||||
if (codec == Codec.AV1)
|
if (codec == Codec.AV1)
|
||||||
{
|
{
|
||||||
int cq = (Config.GetInt("av1Crf") * 1.0f).RoundToInt();
|
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)
|
if (codec == Codec.VP9)
|
||||||
|
|||||||
Reference in New Issue
Block a user