Gif animation - Different delay values to each frame?
Gif animation - Different delay values to each frame?
I can clone frames in gif animation. But how can i change the delay of each frame?
- fmw42
- Posts: 25562
- Joined: 2007-07-02T17:14:51-07:00
- Authentication code: 1152
- Location: Sunnyvale, California, USA
Re: Gif animation - Different delay values to each frame?
try
where X,Y and Z are different delay times.
Code: Select all
convert -delay X image1 -delay Y image2 -delay Z image3 -loop 0 animation.gif
Re: Gif animation - Different delay values to each frame?
Thank you. I will try and tell you sir