Page 1 of 1

Gif animation - Different delay values to each frame?

Posted: 2016-06-19T08:03:13-07:00
by agriz
I can clone frames in gif animation. But how can i change the delay of each frame?

Re: Gif animation - Different delay values to each frame?

Posted: 2016-06-19T10:25:40-07:00
by fmw42
try

Code: Select all

convert -delay X image1 -delay Y image2 -delay Z image3 -loop 0 animation.gif
where X,Y and Z are different delay times.

Re: Gif animation - Different delay values to each frame?

Posted: 2016-06-20T02:46:36-07:00
by agriz
Thank you. I will try and tell you sir