I went through this guide and found that below commands should give maximum of image-000.jpg to image-999.jpg
ffmpeg -i video.webm -vf fps=1 image-%03d.png
But after reaching image-999.jpg, ffmpeg keeps on creating 1000, 1001, ... 99999.jpg,
I tried with VLC, but VLC as well gives millions of images.
The problem: we work on the last 100 images at any instant. So to create images, we use ffmpeg. But this creates a lot of images, after time moves, so I have to delete older images as disk usage will increase.
ffmpeg -ss 00:01:23 …and start from that as an offset. Then you only get the "remaining" frames. But it's not very exact unless you know the particular start time of the frame from which you want to cut. – slhck May 24 '18 at 10:42