VFR option in GUI, logic fixes and sanity check improvs, disable dedupe if <5% dupes

This commit is contained in:
N00MKRAD
2024-12-03 00:40:24 +01:00
parent 2769b7dff7
commit 046cbaddb1
17 changed files with 127 additions and 62 deletions

View File

@@ -285,11 +285,6 @@ namespace Flowframes
return filePath.IsConcatFile() ? $"{rateStr}-safe 0 -f concat " : "";
}
public static string GetFfmpegInputArg(this string filePath)
{
return $"{(filePath.IsConcatFile() ? filePath.GetConcStr() : "")} -i {filePath.Wrap()}";
}
public static string Get(this Dictionary<string, string> dict, string key, bool returnKeyInsteadOfEmptyString = false, bool ignoreCase = false)
{
if (key == null)