mirror of
https://github.com/n00mkrad/flowframes.git
synced 2025-12-16 16:37:48 +01:00
179 lines
8.1 KiB
C#
179 lines
8.1 KiB
C#
using Flowframes.Media;
|
|
using Flowframes.Data;
|
|
using Flowframes.IO;
|
|
using Flowframes.MiscUtils;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Diagnostics;
|
|
using System.IO;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Flowframes.Main
|
|
{
|
|
class AutoEncode
|
|
{
|
|
static string interpFramesFolder;
|
|
static string videoChunksFolder;
|
|
public static int chunkSize = 125; // Encode every n frames
|
|
public static int safetyBufferFrames = 90; // Ignore latest n frames to avoid using images that haven't been fully encoded yet
|
|
public static string[] interpFramesLines;
|
|
public static List<int> encodedFrameLines = new List<int>();
|
|
public static List<int> unencodedFrameLines = new List<int>();
|
|
|
|
public static bool busy;
|
|
|
|
public static bool paused;
|
|
|
|
public static void UpdateChunkAndBufferSizes ()
|
|
{
|
|
chunkSize = GetChunkSize((IOUtils.GetAmountOfFiles(Interpolate.current.framesFolder, false, "*.png") * Interpolate.current.interpFactor).RoundToInt());
|
|
bool isNcnn = Interpolate.current.ai.aiName.ToUpper().Contains("NCNN");
|
|
safetyBufferFrames = isNcnn ? Config.GetInt("autoEncSafeBufferNcnn", 90) : Config.GetInt("autoEncSafeBufferCuda", 30); // Use bigger safety buffer for NCNN
|
|
}
|
|
|
|
public static async Task MainLoop(string interpFramesPath)
|
|
{
|
|
try
|
|
{
|
|
UpdateChunkAndBufferSizes();
|
|
|
|
interpFramesFolder = interpFramesPath;
|
|
videoChunksFolder = Path.Combine(interpFramesPath.GetParentDir(), Paths.chunksDir);
|
|
if (Interpolate.currentlyUsingAutoEnc)
|
|
Directory.CreateDirectory(videoChunksFolder);
|
|
|
|
encodedFrameLines.Clear();
|
|
unencodedFrameLines.Clear();
|
|
|
|
Logger.Log($"[AutoEnc] Starting AutoEncode MainLoop - Chunk Size: {chunkSize} Frames - Safety Buffer: {safetyBufferFrames} Frames", true);
|
|
int videoIndex = 1;
|
|
string encFile = Path.Combine(interpFramesPath.GetParentDir(), Paths.GetFrameOrderFilename(Interpolate.current.interpFactor));
|
|
interpFramesLines = IOUtils.ReadLines(encFile).Select(x => x.Split('/').Last().Remove("'").Split('#').First()).ToArray(); // Array with frame filenames
|
|
|
|
while (!Interpolate.canceled && GetInterpFramesAmount() < 2)
|
|
await Task.Delay(2000);
|
|
|
|
int lastEncodedFrameNum = 0;
|
|
|
|
while (HasWorkToDo()) // Loop while proc is running and not all frames have been encoded
|
|
{
|
|
if (Interpolate.canceled) return;
|
|
|
|
if (paused)
|
|
{
|
|
//Logger.Log("autoenc paused");
|
|
await Task.Delay(200);
|
|
continue;
|
|
}
|
|
|
|
unencodedFrameLines.Clear();
|
|
|
|
for (int vfrLine = lastEncodedFrameNum; vfrLine < interpFramesLines.Length; vfrLine++)
|
|
unencodedFrameLines.Add(vfrLine);
|
|
|
|
bool aiRunning = !AiProcess.currentAiProcess.HasExited;
|
|
|
|
if (unencodedFrameLines.Count > 0 && (unencodedFrameLines.Count >= (chunkSize + safetyBufferFrames) || !aiRunning)) // Encode every n frames, or after process has exited
|
|
{
|
|
List<int> frameLinesToEncode = aiRunning ? unencodedFrameLines.Take(chunkSize).ToList() : unencodedFrameLines; // Take all remaining frames if process is done
|
|
|
|
string lastOfChunk = Path.Combine(interpFramesPath, interpFramesLines[frameLinesToEncode.Last()]);
|
|
|
|
if (!File.Exists(lastOfChunk))
|
|
{
|
|
await Task.Delay(500);
|
|
continue;
|
|
}
|
|
|
|
busy = true;
|
|
string outpath = Path.Combine(videoChunksFolder, "chunks", $"{videoIndex.ToString().PadLeft(4, '0')}{FFmpegUtils.GetExt(Interpolate.current.outMode)}");
|
|
int firstLineNum = frameLinesToEncode.First();
|
|
int lastLineNum = frameLinesToEncode.Last();
|
|
Logger.Log($"[AutoEnc] Encoding Chunk #{videoIndex} to '{outpath}' using line {firstLineNum} ({Path.GetFileName(interpFramesLines[firstLineNum])}) through {lastLineNum} ({Path.GetFileName(Path.GetFileName(interpFramesLines[frameLinesToEncode.Last()]))})", true, false, "ffmpeg");
|
|
|
|
await CreateVideo.EncodeChunk(outpath, Interpolate.current.outMode, firstLineNum, frameLinesToEncode.Count);
|
|
|
|
if (Interpolate.canceled) return;
|
|
|
|
if (aiRunning && Config.GetInt("autoEncMode") == 2)
|
|
Task.Run(() => DeleteOldFramesAsync(interpFramesPath, frameLinesToEncode));
|
|
|
|
if (Interpolate.canceled) return;
|
|
|
|
encodedFrameLines.AddRange(frameLinesToEncode);
|
|
|
|
Logger.Log("Done Encoding Chunk #" + videoIndex, true, false, "ffmpeg");
|
|
lastEncodedFrameNum = (frameLinesToEncode.Last() + 1 );
|
|
|
|
videoIndex++;
|
|
busy = false;
|
|
}
|
|
await Task.Delay(50);
|
|
}
|
|
|
|
if (Interpolate.canceled) return;
|
|
await CreateVideo.ChunksToVideos(Interpolate.current.tempFolder, videoChunksFolder, Interpolate.current.outFilename);
|
|
}
|
|
catch (Exception e)
|
|
{
|
|
Logger.Log($"AutoEnc Error: {e.Message}. Stack Trace:\n{e.StackTrace}");
|
|
Interpolate.Cancel("Auto-Encode encountered an error.");
|
|
}
|
|
}
|
|
|
|
static async Task DeleteOldFramesAsync (string interpFramesPath, List<int> frameLinesToEncode)
|
|
{
|
|
Logger.Log("[AutoEnc] Starting DeleteOldFramesAsync.", true, false, "ffmpeg");
|
|
Stopwatch sw = new Stopwatch();
|
|
sw.Restart();
|
|
int counter = 0;
|
|
|
|
foreach (int frame in frameLinesToEncode)
|
|
{
|
|
if (!FrameIsStillNeeded(interpFramesLines[frame], frame)) // Make sure frames are no longer needed (for dupes) before deleting!
|
|
{
|
|
string framePath = Path.Combine(interpFramesPath, interpFramesLines[frame]);
|
|
IOUtils.OverwriteFileWithText(framePath); // Overwrite to save space without breaking progress counter
|
|
}
|
|
|
|
if(counter % 1000 == 0)
|
|
await Task.Delay(1);
|
|
|
|
counter++;
|
|
}
|
|
|
|
Logger.Log("[AutoEnc] DeleteOldFramesAsync finished in " + FormatUtils.TimeSw(sw), true, false, "ffmpeg");
|
|
}
|
|
|
|
static bool FrameIsStillNeeded (string frameName, int frameIndex)
|
|
{
|
|
if ((frameIndex + 1) < interpFramesLines.Length && interpFramesLines[frameIndex+1].Contains(frameName))
|
|
return true;
|
|
return false;
|
|
}
|
|
|
|
public static bool HasWorkToDo ()
|
|
{
|
|
if (Interpolate.canceled || interpFramesFolder == null) return false;
|
|
// Logger.Log($"HasWorkToDo - Process Running: {(AiProcess.currentAiProcess != null && !AiProcess.currentAiProcess.HasExited)} - encodedFrameLines.Count: {encodedFrameLines.Count} - interpFramesLines.Length: {interpFramesLines.Length}");
|
|
return ((AiProcess.currentAiProcess != null && !AiProcess.currentAiProcess.HasExited) || encodedFrameLines.Count < interpFramesLines.Length);
|
|
}
|
|
|
|
static int GetChunkSize(int targetFramesAmount)
|
|
{
|
|
if (targetFramesAmount > 50000) return 2400;
|
|
if (targetFramesAmount > 20000) return 1200;
|
|
if (targetFramesAmount > 5000) return 600;
|
|
if (targetFramesAmount > 1000) return 300;
|
|
return 150;
|
|
}
|
|
|
|
static int GetInterpFramesAmount()
|
|
{
|
|
return IOUtils.GetAmountOfFiles(interpFramesFolder, false, $"*.{InterpolateUtils.GetOutExt()}");
|
|
}
|
|
}
|
|
}
|