Skip to content

Commit

Permalink
Fix Zulko#632
Browse files Browse the repository at this point in the history
  • Loading branch information
koutoftimer committed Feb 3, 2023
1 parent 9e9836e commit 8d83307
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions moviepy/video/compositing/concatenate.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,8 @@ def concatenate_videoclips(

def make_frame(t):
i = np.searchsorted(timings, t)
if t == timings[-1]:
i = -1
return clips[i].get_frame(t - timings[i])

def get_mask(clip):
Expand Down

0 comments on commit 8d83307

Please sign in to comment.