moviepy icon indicating copy to clipboard operation
moviepy copied to clipboard

CompositeVideoClip of CompositeVideoClips does not provide expected behavior.

Open davidbernat opened this issue 2 years ago • 0 comments

Expected Behavior

video = CompositeVideoClip([background, overlays])

When background and overlays are both CompositeVideoClip objects, the resulting new composite will often fail to contain the video elements of the latter. If, instead, the new composite is created using this code, the expected result occurs; however, under-the-hood functionality of true composites may be missed.

video = CompositeVideoClip(background.clips + overlays.clips)

davidbernat avatar Jul 26 '22 22:07 davidbernat