Fix timestamps for loop frames for VFR loop videos

This commit is contained in:
N00MKRAD
2024-11-26 13:45:44 +01:00
parent b9029cb5f4
commit 32eeac578d
8 changed files with 30 additions and 9 deletions

View File

@@ -41,6 +41,7 @@ namespace Flowframes.Data
public bool SequenceInitialized = false;
public bool IsVfr = false;
public List<float> InputTimestamps = new List<float>();
public List<float> InputTimestampDurations = new List<float>();
public int FileCount = 1;
public int FrameCount { get { return VideoStreams.Count > 0 ? VideoStreams[0].FrameCount : 0; } }