diff --git a/Code/Main/Interpolate.cs b/Code/Main/Interpolate.cs index 2646578..48bc0cd 100644 --- a/Code/Main/Interpolate.cs +++ b/Code/Main/Interpolate.cs @@ -192,6 +192,9 @@ namespace Flowframes if (ai.aiName == Networks.rifeNcnn.aiName) tasks.Add(AiProcess.RunRifeNcnn(current.framesFolder, outpath, (int)current.interpFactor, current.model)); + if (ai.aiName == Networks.flavrCuda.aiName) + tasks.Add(AiProcess.RunFlavrCuda(current.framesFolder, current.interpFactor, current.model)); + if (ai.aiName == Networks.dainNcnn.aiName) tasks.Add(AiProcess.RunDainNcnn(current.framesFolder, outpath, current.interpFactor, current.model, Config.GetInt("dainNcnnTilesize", 512)));