using System; using System.Collections.Generic; using System.Diagnostics; using System.IO; using System.Linq; using System.Threading.Tasks; using Flowframes.IO; using ImageMagick; using Flowframes.Os; using Flowframes.Data; using System.Drawing; using Paths = Flowframes.IO.Paths; using Newtonsoft.Json; namespace Flowframes.Magick { class Dedupe { public enum Mode { None, Info, Enabled, Auto } public static Mode currentMode; public static float currentThreshold; public static async Task Run(string path, bool testRun = false, bool setStatus = true) { if (path == null || !Directory.Exists(path) || Interpolate.canceled) return; currentMode = Mode.Auto; if(setStatus) Program.mainForm.SetStatus("Running frame de-duplication"); currentThreshold = Config.GetFloat(Config.Key.dedupThresh); Logger.Log("Running accurate frame de-duplication..."); if (currentMode == Mode.Enabled || currentMode == Mode.Auto) await RemoveDupeFrames(path, currentThreshold, "*", testRun, false, (currentMode == Mode.Auto)); } public static Dictionary imageCache = new Dictionary(); static MagickImage GetImage(string path) { bool allowCaching = true; if (!allowCaching) return new MagickImage(path); if (!imageCache.ContainsKey(path)) imageCache.Add(path, new MagickImage(path)); return imageCache[path]; } public static void ClearCache () { imageCache.Clear(); } public static async Task RemoveDupeFrames(string path, float threshold, string ext, bool testRun = false, bool debugLog = false, bool skipIfNoDupes = false) { Stopwatch sw = new Stopwatch(); sw.Restart(); Logger.Log("Removing duplicate frames - Threshold: " + threshold.ToString("0.00")); FileInfo[] framePaths = IoUtils.GetFileInfosSorted(path, false, "*." + ext); List framesToDelete = new List(); int bufferSize = await GetBufferSize(); int currentOutFrame = 1; int currentDupeCount = 0; int statsFramesKept = 0; int statsFramesDeleted = 0; bool hasReachedEnd = false; string fileContent = ""; for (int i = 0; i < framePaths.Length; i++) // Loop through frames { if (hasReachedEnd) break; string frame1 = framePaths[i].FullName; int compareWithIndex = i + 1; while (true) // Loop dupes { //compareWithIndex++; if (compareWithIndex >= framePaths.Length) { hasReachedEnd = true; break; } if (framesToDelete.Contains(framePaths[compareWithIndex].FullName) || !File.Exists(framePaths[compareWithIndex].FullName)) { //Logger.Log($"Frame {compareWithIndex} was already deleted - skipping"); compareWithIndex++; } else { string frame2 = framePaths[compareWithIndex].FullName; float diff = GetDifference(frame1, frame2); if (diff < threshold) // Is a duped frame. { if (!testRun) { framesToDelete.Add(frame2); if (debugLog) Logger.Log("Deduplication: Deleted " + Path.GetFileName(frame2)); } statsFramesDeleted++; currentDupeCount++; } else { fileContent += $"{Path.GetFileNameWithoutExtension(framePaths[i].Name)}:{currentDupeCount}\n"; statsFramesKept++; currentOutFrame++; currentDupeCount = 0; break; } } } if (sw.ElapsedMilliseconds >= 500 || (i + 1) == framePaths.Length) // Print every 0.5s (or when done) { sw.Restart(); Logger.Log($"Deduplication: Running de-duplication ({i}/{framePaths.Length}), deleted {statsFramesDeleted} ({(((float)statsFramesDeleted / framePaths.Length) * 100f).ToString("0")}%) duplicate frames so far...", false, true); Program.mainForm.SetProgress((int)Math.Round(((float)i / framePaths.Length) * 100f)); if (imageCache.Count > bufferSize || (imageCache.Count > 50 && OsUtils.GetFreeRamMb() < 3500)) ClearCache(); } // int oldIndex = -1; // TODO: Compare with 1st to fix loops? // if (i >= framePaths.Length) // If this is the last frame, compare with 1st to avoid OutOfRange error // { // oldIndex = i; // i = 0; // } if (i % 3 == 0) await Task.Delay(1); if (Interpolate.canceled) return; } foreach (string frame in framesToDelete) IoUtils.TryDeleteIfExists(frame); string testStr = testRun ? " [TestRun]" : ""; if (Interpolate.canceled) return; int framesLeft = IoUtils.GetAmountOfFiles(path, false, "*" + Interpolate.current.framesExt); int framesDeleted = framePaths.Length - framesLeft; float percentDeleted = ((float)framesDeleted / framePaths.Length) * 100f; string keptPercent = $"{(100f - percentDeleted).ToString("0.0")}%"; Logger.Log($"[Deduplication]{testStr} Done. Kept {framesLeft} ({keptPercent}) frames, deleted {framesDeleted} frames.", false, true); if (statsFramesKept <= 0) Interpolate.Cancel("No frames were left after de-duplication!\n\nTry decreasing the de-duplication threshold."); } static float GetDifference (string img1Path, string img2Path) { MagickImage img2 = GetImage(img2Path); MagickImage img1 = GetImage(img1Path); double err = img1.Compare(img2, ErrorMetric.Fuzz); float errPercent = (float)err * 100f; return errPercent; } static async Task GetBufferSize () { Size res = Interpolate.current.ScaledResolution; long pixels = res.Width * res.Height; // 4K = 8294400, 1440p = 3686400, 1080p = 2073600, 720p = 921600, 540p = 518400, 360p = 230400 int bufferSize = 100; if (pixels < 518400) bufferSize = 1800; if (pixels >= 518400) bufferSize = 1400; if (pixels >= 921600) bufferSize = 800; if (pixels >= 2073600) bufferSize = 400; if (pixels >= 3686400) bufferSize = 200; if (pixels >= 8294400) bufferSize = 100; if (pixels == 0) bufferSize = 100; Logger.Log($"Using magick dedupe buffer size {bufferSize} for frame resolution {res.Width}x{res.Height}", true); return bufferSize; } public static async Task CreateDupesFile (string framesPath, int lastFrameNum, string ext) { bool debug = Config.GetBool("dupeScanDebug", false); FileInfo[] frameFiles = IoUtils.GetFileInfosSorted(framesPath, false, "*" + ext); if (debug) Logger.Log($"Running CreateDupesFile for '{framesPath}' ({frameFiles.Length} files), lastFrameNum = {lastFrameNum}, ext = {ext}.", true, false, "dupes"); Dictionary> frames = new Dictionary>(); for(int i = 0; i < frameFiles.Length; i++) { bool isLastItem = (i + 1) == frameFiles.Length; int frameNum1 = frameFiles[i].Name.GetInt(); int frameNum2 = isLastItem ? lastFrameNum : frameFiles[i+1].Name.GetInt(); int diff = frameNum2 - frameNum1; int dupes = (diff - 1).Clamp(0, int.MaxValue); if(debug) Logger.Log($"{(isLastItem ? "[isLastItem] " : "")}frameNum1 (frameFiles[{i}]) = {frameNum1}, frameNum2 (frameFiles[{i+1}]) = {frameNum2} => dupes = {dupes}", true, false, "dupes"); try { frames[Path.GetFileNameWithoutExtension(frameFiles[i].Name)] = new List(); for (int dupe = 1; dupe <= dupes; dupe++) frames[Path.GetFileNameWithoutExtension(frameFiles[i].Name)].Add(Path.GetFileNameWithoutExtension(frameFiles[i + dupe].Name)); } catch(Exception ex) { Logger.Log($"Deduplication error: {ex.Message}"); Logger.Log($"Stack Trace:\n{ex.StackTrace}", true); } } File.WriteAllText(Path.Combine(framesPath.GetParentDir(), "dupes.json"), JsonConvert.SerializeObject(frames, Formatting.Indented)); } } }