3

I want to generate tiled image from video with ffmpeg. Every part of image is screenshot of video with different moment.

apollo
  • 41
  • 2
  • https://superuser.com/questions/135117/how-to-extract-one-frame-of-a-video-every-n-seconds-to-an-image/729351 covers generation of a folder's worth of png files . Then u need the html/DOM to frame the gallery of photos – Robert Rowntree Aug 26 '20 at 16:07
  • See [Create tile/filmstrip every X seconds with ffmpeg](https://superuser.com/a/984688/). – llogan Aug 26 '20 at 18:52

1 Answers1

1

The example from the documentation is:

ffmpeg -skip_frame nokey -i file.avi -vf 'scale=128:72,tile=8x8' -an -vsync 0 keyframes%03d.png

Get rid of -skip_frame nokey if you want to get every frame.

Joman68
  • 2,248
  • 3
  • 34
  • 36