I have 900 images:
- 001.tif
- 002.tif
- 003.tif
- ...
- 900.tif
I use the following code to generate a video from these images:
ffmpeg -r 30 -start_number 1 -i %03d.tif -c:v libx264 -r 30 -pix_fmt yuv420p output.mp4
It works perfectly, but I also need to make another video that is slow (e.g. 5 fps) at the beginning and is gradually (e.g. 6, 7, 8, ... fps) speeding up to reach a very high speed (e.g. 90 fps). Each second of the video should have a different fps compared to the second before and the second after it, a totally gradual acceleration.
Can I do it with FFmpeg? If so, them how?