Added 1.7 model to RIFE-NCNN, updated model descriptions

This commit is contained in:
N00MKRAD
2021-01-26 19:39:16 +01:00
parent 86e27a4041
commit cc7a15e115
4 changed files with 14 additions and 8 deletions

View File

@@ -64,6 +64,12 @@ namespace Flowframes
}
}
public static void LogIfLastLineDoesNotContainMsg (string s, bool hidden = false, bool replaceLastLine = false, string filename = "")
{
if (!GetLastLine().Contains(s))
Log(s, hidden, replaceLastLine, filename);
}
public static void WriteToFile (string content, bool append, string filename)
{
if (string.IsNullOrWhiteSpace(filename))

View File

@@ -202,8 +202,7 @@ namespace Flowframes
AutoEncode.busy = false;
Program.mainForm.SetWorking(false);
Program.mainForm.SetTab("interpolation");
if(!Logger.GetLastLine().Contains("Canceled interpolation."))
Logger.Log("Canceled interpolation.");
Logger.LogIfLastLineDoesNotContainMsg("Canceled interpolation.");
if (!string.IsNullOrWhiteSpace(reason) && !noMsgBox)
Utils.ShowMessage($"Canceled:\n\n{reason}");
}

View File

@@ -1,4 +1,4 @@
RIFE 1.5 - Optimized for general and HD content
RIFE 1.6 - Optimized for general and HD/UHD content
RIFE 1.5 - Optimized for general content
RIFE 1.6 - Updated general model
RIFE 1.7 - Optimized for 2D animation (Recommended)
RIFE 1.8 - Optimized for all content (Experimental)
RIFE 1.8 - Updated 2D animation model (Experimental)

View File

@@ -1,3 +1,4 @@
RIFE 1.5 - Optimized for general and HD content
RIFE 1.6 - Optimized for general and HD/UHD content
RIFE 1.5 - Optimized for general content
RIFE 1.6 - Updated general model
RIFE 1.7 - Optimized for 2D animation (Recommended)
RIFE 1.8 - Updated 2D animation model (Experimental)