-
Notifications
You must be signed in to change notification settings - Fork 59
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
long animations not working with saveGIF #87
Comments
How many images do you used in making a animation?
|
I found a solution see thomasp85/gganimate#47
|
Thank you that's great !!
I will have a look asap.
All the best,
Jerome
2017-05-30 13:26 GMT+02:00 Enrico Spinielli <notifications@github.com>:
… I found a solution see thomasp85/gganimate#47
<thomasp85/gganimate#47>
You have to use ImageMagick internal filename globbing by quoting your
filenames (note the quoted "*.png"):
convert "*.png" -delay 3 -loop 0 binom.gif
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#87 (comment)>, or mute
the thread
<https://github.com/notifications/unsubscribe-auth/AMAS0t0onfGJJeTSejiMGd01mqT69PmPks5r-_zTgaJpZM4K4COI>
.
--
Jérôme Mathieu <http://www.jerome-mathieu.com/>
Université Pierre & Marie Curie <http://www.upmc.fr/>
Institute of Ecology and Environmental Sciences (Paris)
<https://ieesparis.ufr918.upmc.fr/>
Team EERI
4 place Jussieu
Tour 44-45, 5th floor, door 514
75005 Paris
France
tel: 33 1 44 27 34 22
|
Hi,
When I try to make an animated plot with many steps (many images), saveGIF throw an error :
"command line too long".
I think it is because the command sent to convert contains the list of the images to work on, and it is too long for large animations.
Perhaps it could be handled by sending instead something like
convert *.png -delay 3 -loop 0 binom.gif
Here's Microsoft's page on similar problem
https://support.microsoft.com/en-us/kb/830473
Is there a way to fix this issue?
Thanks,
Jerome
The text was updated successfully, but these errors were encountered: