mirror of
https://github.com/n00mkrad/flowframes.git
synced 2025-12-25 20:59:39 +01:00
Cleanup
This commit is contained in:
@@ -17,15 +17,12 @@ namespace Flowframes.Main
|
||||
public enum Mode { CFR, VFR }
|
||||
public static int timebase = 10000;
|
||||
|
||||
public static async Task CreateFrameOrderFile(string framesPath, Mode mode, bool loopEnabled, int times, bool noTimestamps)
|
||||
public static async Task CreateFrameOrderFile(string framesPath, bool loopEnabled, int times)
|
||||
{
|
||||
Logger.Log("Generating frame order information...");
|
||||
try
|
||||
{
|
||||
if (mode == Mode.VFR)
|
||||
await CreateTimecodeFile(framesPath, loopEnabled, times, false, noTimestamps);
|
||||
if (mode == Mode.CFR)
|
||||
await CreateEncFile(framesPath, loopEnabled, times, false);
|
||||
await CreateEncFile(framesPath, loopEnabled, times, false);
|
||||
Logger.Log($"Generating frame order information... Done.", false, true);
|
||||
}
|
||||
catch (Exception e)
|
||||
|
||||
Reference in New Issue
Block a user