-
Notifications
You must be signed in to change notification settings - Fork 1.7k
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
Out of memory exception #862
Comments
This is not really a moviepy issue, the problem is that you are loading all frames in memory. You could avoid that using ImageSequenceClip. You can also avoid writing images by defining a make_frame(t) function as explained in my blog post about vapory. Sorry for not giving links am on mobile. |
Apologies are not required. I figured the issue was because of the loading of the frames. I did look through the vapory page. This was very helpful and why I started working on PovRay again. I should probably re-read through the pages again for things I've missed. Thank-you for your quick reply on this matter. I will also dig through the ImageSequenceClip documentation and see what i can turn up. |
@Morketh Did you manage to solve your problem? Can we close this issue? |
Yes, according to Zulko "This is not really a moviepy issue, the problem is that you are loading all frames in memory." After rewriting the code I'm able to deal with the memory issues now. |
System is running out of memory while trying to combine PNG files (7200 frames at 1920x1080) output from PovRay to produce an Mp4 animation. Issue #827 looks possibly related.
Specifications
The text was updated successfully, but these errors were encountered: