0

I'm creating a tutorial for my app and I would like to add an animated image just like the one below, but I don't know how I achieve that. If you could suggest me an app or how can I do the same it would be very helpful. Thanks.

Glorfindel
  • 21,988
  • 13
  • 81
  • 109
Arturo Mejia
  • 1,862
  • 1
  • 17
  • 25

1 Answers1

1

You can do it with ffmpeg

ffmpeg -i input.mp4 -vf fps=1 out%d.png

Output one image every second, named out1.png, out2.png, out3.png, etc.

Dmitriy Puchkov
  • 1,530
  • 17
  • 41