Skip to content

Commit 19abce8

Browse files
zubeydecivelekzzacharo
authored andcommitted
fix(frames): correct extracted frame timestamp calculation
1 parent caa12f9 commit 19abce8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

cds/modules/flows/tasks.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -705,7 +705,7 @@ def _create_frames(cls, frames, object_, start_time, time_step, **kwargs):
705705
media_type="image",
706706
context_type="frame",
707707
master_id=object_.version_id,
708-
timestamp=start_time + (i + 1) * time_step,
708+
timestamp=start_time + i * time_step,
709709
)
710710
for i, filename in enumerate(frames)
711711
]

0 commit comments

Comments
 (0)