How to fix jittery video pans cos I used the wrong shutter speed?

I’m not sure what you mean be “jittery video pans”. If there is a strobe effect because the shutter speed was too fast, you can process each frame to be a weighted average of that frame and the previous frame and the next frame.

For example:

  frame[20] = 0.1 * frame[19] + 0.8 * frame[20] + 0.1 * frame[21]

I expect this can be done using just ffmpeg. It can certainly be done by extracting the frames with ffmpeg, processing them with ImageMagick, and reassembling the frames into a movie with ffmpeg.

1 Like