TC
video6 min read

How Frame Interpolation Creates Smooth Slow Motion

Slow motion looks simple from the outside: play the clip slower and you get a dramatic cinematic effect. In practice, that often produces stutter because the timeline stretches but the original frame count does not. If your source is 30 fps, every second only contains 30 unique moments in time.

To make slow motion feel smooth, software has to decide how to create the in-between moments. That decision is what separates three common strategies: frame duplication, frame blending, and optical-flow interpolation.

DUPLICATIONRepeat existing framesQUALITYSPEEDBLENDINGMix adjacent framesQUALITYSPEEDOPTICAL FLOWSynthesize via motion vectorsQUALITYSPEED
Core idea: Slow motion quality is mostly about how in-between frames are generated, not about the speed percentage alone.

Why slowing video is not just “play slower”

When you apply a slower playback speed, the clip duration increases. A 5-second shot at 30 fps has 150 frames. At half speed, that shot becomes 10 seconds. To maintain 30 fps output, the renderer now needs 300 displayed frames. It only has 150 originals, so it must invent the missing 150 somehow.

ORIGINAL (30fps, 0.2s)F1F2F3F4F5F66 frames↓ 0.5× speed = need 2× framesHALF SPEED (30fps, 0.4s)F1?F2?F3?F4?F5?F6?12 framesYellow = frames that must be generated

The yellow frames above are the ones the software has to generate. The strategy it uses determines whether the result looks choppy, ghosty, or cinematic.


Frame duplication: simplest, fastest, choppy

Frame duplication keeps original frames intact and repeats them to fill time. In FFmpeg this pairs with setpts — you extend timing without adding motion detail.

The upside is speed and reliability: duplicated frames never hallucinate artifacts. The downside is visible stepping on fast motion, because each original moment lingers longer before the next unique frame appears.

  • Best when: Quick processing, preview renders, or utilitarian slow-down.
  • Common artifact: Judder and strobing on pans, sports, and handheld motion.

Frame blending: smoother motion, possible ghosting

Blending mixes adjacent frames to synthesize intermediates. Instead of showing frame A then frame B, it creates a weighted average between them. Motion appears less jumpy because transitions are softer.

But blending does not understand object boundaries. If an athlete moves across the frame, blending can leave transparent “double image” trails. The image looks smoother yet softer, with visible ghosting around edges.

  • Best when: Smoother motion than duplication with moderate compute cost.
  • Common artifact: Ghost trails where objects move quickly.

Optical flow: motion-compensated interpolation

Motion-compensated interpolation (FFmpeg's mi_mode=mci) estimates how pixels move between frames. Instead of averaging two images, it builds motion vectors and warps content forward and backward to synthesize a plausible in-between frame.

Frame NMotionvectorsWarp& mergeFrame N+½

This produces the smoothest slow motion with sharp moving subjects, especially on high-shutter, well-lit footage. It is also the most expensive option and can fail on difficult scenes: occlusions, motion blur, smoke, and flashing lights can confuse vector estimation.

  • Best when: Highest smoothness needed and longer render time is acceptable.
  • Common artifact: Warping around complex edges or occluded objects.

When each mode is the right choice

Choose duplication for speed and predictability

Great for rough cuts, screen recordings, and workflows where processing time matters more than perfect smoothness.

Choose blending for a balanced middle ground

Useful when duplicate-frame judder is too obvious but full optical flow is overkill.

Choose optical flow for showcase shots

Ideal for hero moments where motion quality is part of the story and render time is acceptable.


Real-world uses

  • Sports replay: Reveal mechanics of movement — kick, swing, throw — frame by frame.
  • Filmmaking: Emphasize emotion and impact in pivotal moments.
  • Content creation: Add dramatic pacing to action clips for short-form video.
  • Product demos: Slow down fast interactions so details remain readable.
Practical takeaway: Start with blending for a quick quality boost, switch to optical flow for standout shots, and keep duplication as the fastest fallback when reliability matters most.

Try it yourself

Put what you learned into practice with our Video Slow Motion.