Fix batch processing outPath

This commit is contained in:
n00mkrad
2026-05-16 00:50:09 +02:00
parent b02d9ef8d6
commit 1d63b75feb

View File

@@ -106,7 +106,7 @@ namespace Flowframes
return;
inPath = inputPath;
// outPath = (Config.GetInt("outFolderLoc") == 0) ? inputPath.GetParentDir() : Config.Get("custOutDir").Trim();
outPath = (Config.GetInt("outFolderLoc") == 0) ? inputPath.GetParentDir() : Config.Get("custOutDir").Trim(); // This used to be commented out, idk why. Required for batch mode to set outPath.
tempFolder = InterpolateUtils.GetTempFolderLoc(inPath, outPath);
framesFolder = Path.Combine(tempFolder, Paths.framesDir);
interpFolder = Path.Combine(tempFolder, Paths.interpDir);