Skip to content

Commit

Permalink
Fix for clip-sequence
Browse files Browse the repository at this point in the history
  • Loading branch information
WyattBlue committed Sep 27, 2024
1 parent 3018137 commit eb83339
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion auto_editor/edit.py
Original file line number Diff line number Diff line change
Expand Up @@ -328,7 +328,7 @@ def pad_chunk(chunk: Chunk, total: int) -> Chunks:
total_frames = tl.v1.chunks[-1][1] - 1
clip_num = 0
for chunk in tl.v1.chunks:
if chunk[2] == 99999:
if chunk[2] == 0 or chunk[2] >= 99999:
continue

padded_chunks = pad_chunk(chunk, total_frames)
Expand Down

0 comments on commit eb83339

Please sign in to comment.