Geuis
Geuis

Reputation: 42277

ffmpeg creating gif from images, how to prevent loop?

I'm creating gifs from a small group of images. Currently the gif loops by default. I've been trying variations of -loop in the ffmpeg command, but the gif still loops. What's the right way to do this?

Upvotes: 7

Views: 5896

Answers (1)

Gyan
Gyan

Reputation: 93261

Basic syntax is

ffmpeg -i images%d {-other-options} -loop -1 out.gif

Upvotes: 12

Related Questions