Video stabilization
-
ffmpeg + vid.stab
(source).# Generate stabilization data and save it to `transforms.trf` ffmpeg -i input.mp4 -vf vidstabdetect -f null - # Stabilize the video ffmpeg -i input.mp4 -vf vidstabtransform stabilized.mp4 # Create stacked comparison video ffmpeg -i input.mp4 -i stabilized.mp4 -filter_complex vstack stacked.MP4 # Create side-by-side comparison video ffmpeg -i input.mp4 -i stabilized.mp4 -filter_complex hstack side-by-side.MP4
-
ffmpeg deshake
(source).ffmpeg -i input.mp4 -vf deshake=rx=64:ry=64:blocksize=32 -strict -2 stabilized.mp4
-
Blender
-
How to Stabilize footage in Blender! (Blender VFX) (quick, almost no explanations)
-
Blender 2.8 2D video stabilization tutorial (explains all the details)
-
Blender 2.81 Movie Clip Editor: Stabilize And Edit A Shaky Video Clip And Render/Export With Audio (explains how to get audio in stabilized videos)
-