Moviepy: ImageSequenceClip requires all images to be the same size
Package:
moviepy
8456
Exception Class:
Exception
Raise code
= sequence[0].shape
for image in sequence:
image1 = image
if isinstance(image, str):
image1 = imread(image)
if size != image1.shape:
raise Exception(
"Moviepy: ImageSequenceClip requires all images to be the same size"
)
self.fps = fps
if fps is not None:
durations = [1.0 / fps for image in sequence]
self.images_starts = [
Links to the raise (1)
https://github.com/Zulko/moviepy/blob/576fb1ab980ea53212675a775e059e1460488672/moviepy/video/io/ImageSequenceClip.py#L91NO FIXES YET
Just press the button and we will add solution
to this exception as soon as possible
* As many users press the button, the faster we create a fix
Add a possible fix
Please authorize to post fix