properly implemented svtav1 strategy and added a temporary set of values, same with x265 (cpu)

This commit is contained in:
Samuele Lorefice
2025-12-23 03:58:10 +01:00
parent 2ddcfd2edb
commit f6869e54ac
3 changed files with 182 additions and 47 deletions

View File

@@ -29,7 +29,7 @@ class NvencSpeedPreset(NvencSpeed speed) : FFMpegCore.Arguments.IArgument {
}
class NvencTuneArgument(NvencTune tune) : FFMpegCore.Arguments.IArgument {
public string Text { get { return $"-tune {tune.ToString().ToLower()}"; } }
public string Text { get { return $"-tune {(int)tune}"; } }
}
class NvencHighBitDepthArgument(bool enable) : FFMpegCore.Arguments.IArgument {