-
Notifications
You must be signed in to change notification settings - Fork 1.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Moviepy Image Module #1000
Comments
sorry, I formatted my code wrong in the post |
Use |
tburrows13
added a commit
to tburrows13/moviepy
that referenced
this issue
Apr 27, 2020
tburrows13
added a commit
that referenced
this issue
Apr 27, 2020
Thanks for reporting this, I've fixed the faulty docs in #1159. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
So basically I am using the Pillow module in python and also the
moviepy
library in order to make a video out of pictures. Though, when I try to get the images usingmoviepy
through themy_clip = Image(f"{SmallVidCount}.jpg")
, theImage() i
s read as something fromPIL
library. It gives methe object has no attribute error
in python.I have tried to use
mpe.Image(f"{SmallVidCount}.jpg")
, but it gives me the module'moviepy.editor' has no attribute 'Image
' error. The First one ismodule 'object' has no attribute 'Image'
.I just want it to output a video that is made out of the pictures. I got this code from https://zulko.github.io/moviepy/getting_started/videoclips.html
The text was updated successfully, but these errors were encountered: