From a8f18032f378650ff7516abfe01dcc607923614e Mon Sep 17 00:00:00 2001 From: n00mkrad Date: Mon, 18 Apr 2022 04:33:06 +0200 Subject: [PATCH] temporarily remove SVT tiling (same as nmkoder) --- Code/Media/FfmpegUtils.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Code/Media/FfmpegUtils.cs b/Code/Media/FfmpegUtils.cs index 793661d..c184b87 100644 --- a/Code/Media/FfmpegUtils.cs +++ b/Code/Media/FfmpegUtils.cs @@ -88,7 +88,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} {GetKeyIntArg(fps, keyint)} {GetSvtAv1Speed()} {GetTilingArgs(res, "-tile_columns ", "-tile_rows ")} {g} -pix_fmt {GetPixFmt()}" }; + return new string[] { $"-c:v {GetEnc(codec)} -b:v 0 -qp {cq} {GetKeyIntArg(fps, keyint)} {GetSvtAv1Speed()} {g} -pix_fmt {GetPixFmt()}" }; } if (codec == Codec.Vp9)