You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a Resolve NDF timeline with start timecode of '01:00:00:00' with frame rate 29.97
I wish to export a series of frames indicated by (blue) timeline markers
The first marker is at 01:01:10:03
timeline.GetMarkers() reports this marker at frame 2103
If I instead do:
'01' + s.gettc(2103)[2:] → '01:01:10:03
which is correct.
So there's something about going beyond an hour that's an issue.
That said, this may actually be a Resolve issue… as timeline.GetStartFrame() → 108000 which is incorrect for a 29.97 frame rate. In any case, I'd like this to "just work"
The text was updated successfully, but these errors were encountered:
ecnelson
changed the title
Doesn't work for Resolve timeline starting with and hour
Doesn't work for Resolve timeline starting with an hour
Dec 13, 2024
I have a Resolve NDF timeline with start timecode of '01:00:00:00' with frame rate 29.97
I wish to export a series of frames indicated by (blue) timeline markers
The first marker is at 01:01:10:03
timeline.GetMarkers() reports this marker at frame 2103
s.fps = 29.97
s.df = False
s.getframes('01:00:00:00') → 107892
s.gettc(107892 + 2103) → '01:01:10:05'
It's off by two frames.
If I instead do:
'01' + s.gettc(2103)[2:] → '01:01:10:03
which is correct.
So there's something about going beyond an hour that's an issue.
That said, this may actually be a Resolve issue… as timeline.GetStartFrame() → 108000 which is incorrect for a 29.97 frame rate. In any case, I'd like this to "just work"
The text was updated successfully, but these errors were encountered: