Added custom quality option

This commit is contained in:
n00mkrad
2023-02-05 21:31:48 +01:00
parent c33a14ec9d
commit 4e3cca2268
6 changed files with 67 additions and 17 deletions

View File

@@ -376,5 +376,15 @@ namespace Flowframes
{
return OutputUtils.GetEncoderInfoVideo(enc);
}
public static bool IsEmpty (this string s)
{
return string.IsNullOrWhiteSpace(s);
}
public static bool NotEmpty(this string s)
{
return !string.IsNullOrWhiteSpace(s);
}
}
}