Video – ffmpeg: smooth zoompan with no jiggle

I’m trying to create a basic 5 second zoompan to the center of an image (from the example on the ffmpeg.org website). The command below works, but jitters more than my hands after 5 cups of coffee: ffmpeg -framerate 25 -loop 1 -i island.jpg -filter_complex “[0:v]scale=-2:480,zoompan=z=’min(zoom+0.0015,1.5)’:x=’iw/2-(iw/zoom/2)’:y=’ih/2-(ih/zoom/2)’:d=125,trim=duration=5[v]” -map “[v]” -y out.mp4 Input jpg.  Output mp4. I’m…

Read More