Newer versions of ffmpeg have no -sameq (see faq) but do have GIF support.
ffmpeg -i %03d.png output.gif
Where %03d is the frame ID in 3 digits.
Você também pode tentar usar ffmpeg
para criar um filme a partir de uma sequência de imagens e depois converter o filme em uma animação GIF (novamente usando ffmpeg
).
# cf. http://pages.uoregon.edu/noeckel/MakeMovie.html
# first convert an image sequence to a movie
ffmpeg -sameq -i %03d.jpg output.mp4
# ... and then convert the movie to a GIF animation
ffmpeg -i output.mp4 -pix_fmt rgb24 -s qcif -loop_output 0 output.gif