From 1089ff861a523f73fb6975d95166be319dfe1033 Mon Sep 17 00:00:00 2001 From: N00MKRAD Date: Sun, 21 Mar 2021 21:56:08 +0100 Subject: [PATCH] No UI status change for blending scene changes in autoenc --- Code/Main/CreateVideo.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Code/Main/CreateVideo.cs b/Code/Main/CreateVideo.cs index 56808d2..89db4ee 100644 --- a/Code/Main/CreateVideo.cs +++ b/Code/Main/CreateVideo.cs @@ -181,7 +181,7 @@ namespace Flowframes.Main File.WriteAllLines(framesFileChunk, IOUtils.ReadLines(framesFileFull).Skip(firstFrameNum).Take(framesAmount)); if (Config.GetInt("sceneChangeFillMode") == 1) - await Blend.BlendSceneChanges(framesFileChunk); + await Blend.BlendSceneChanges(framesFileChunk, false); float maxFps = Config.GetFloat("maxFps"); bool fpsLimit = maxFps != 0 && I.current.outFps > maxFps;