diff --git a/Code/Main/VfrDedupe.cs b/Code/Main/FrameTiming.cs similarity index 99% rename from Code/Main/VfrDedupe.cs rename to Code/Main/FrameTiming.cs index 83aee49..6166f60 100644 --- a/Code/Main/VfrDedupe.cs +++ b/Code/Main/FrameTiming.cs @@ -12,7 +12,7 @@ using System.Threading.Tasks; namespace Flowframes.Main { - class VfrDedupe + class FrameTiming { public static async Task CreateTimecodeFiles(string framesPath, bool loopEnabled, int times, bool noTimestamps) { diff --git a/Code/Main/Interpolate.cs b/Code/Main/Interpolate.cs index bea4110..5decf84 100644 --- a/Code/Main/Interpolate.cs +++ b/Code/Main/Interpolate.cs @@ -164,7 +164,7 @@ namespace Flowframes if (canceled) return; bool useTimestamps = Config.GetInt("timingMode") == 1; // TODO: Auto-Disable timestamps if input frames are sequential, not timestamped - await VfrDedupe.CreateTimecodeFiles(currentFramesPath, Config.GetBool("enableLoop"), lastInterpFactor, !useTimestamps); + await FrameTiming.CreateTimecodeFiles(currentFramesPath, Config.GetBool("enableLoop"), lastInterpFactor, !useTimestamps); if (canceled) return;