You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am using split_animation to split an animation up and I've noticed that anim_save or even just printing seem to hang when not using default options. I've even left it overnight and it never finished.
However, if I now change some rendering options to make it a little more taxing then it never finishes.
# initial rendering is fine (as is saving the whole animation with anim_save)anim_reveal<- animate(p, width=2888, height=2166, units="px",
renderer= gifski_renderer(loop=FALSE))
# splitting works ok, if slowsplit_anim<- split_animation(anim_reveal, by=frame_along<50)
# but trying to save or print the split animation will cause a hang# don't run these lines or you will need to force interrupt R for either of them# anim_save("~/split2.gif", split_anim$`FALSE`)# split_anim$`FALSE`
If I do the same as above but do the splitting manually and then render/save using gifski directly it works fine again (and the splitting is much faster):
Hello,
I am using
split_animation
to split an animation up and I've noticed thatanim_save
or even just printing seem to hang when not using default options. I've even left it overnight and it never finished.Using all the default settings works fine:
However, if I now change some rendering options to make it a little more taxing then it never finishes.
If I do the same as above but do the splitting manually and then render/save using gifski directly it works fine again (and the splitting is much faster):
Not sure what's happening sorry, but thought I better raise an issue.
The text was updated successfully, but these errors were encountered: