ffmpeggif

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?


Solution

  • Basic syntax is

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