I have 100 images (001.png ... 100.png) in my img folder and I want to create 2 gif files with different frame ranges for specific uses from there.
The first case uses all 100 images. I use the code below and it works fine.
ffmpeg -f image2 -framerate 30 -i %003d.png -vf scale=-2:480 myAnim.gif
But in the second case, we want to use only 50 images from 20 to 70. What code should I use to select this specific range?