Powered by WebAssembly
Stabilize Video via API
Remove camera shake from handheld footage using the vidstab filter. Two-pass processing analyzes motion patterns and applies smooth stabilization transforms.
Try it in your browser
Loading FFmpeg engine... (~31 MB)
Use the API
curl -X POST https://renderio.dev/v1/commands \
-H "X-API-KEY: ffsk_your_api_key" \
-H "Content-Type: application/json" \
-d '{
"ffmpeg_command": "-i {in_video} -vf vidstabdetect=stepsize=6:shakiness=8:accuracy=9 -f null - && -i {in_video} -vf vidstabtransform=smoothing=10 {out_video}",
"input_files": {
"in_video": "https://example.com/input.mp4"
},
"output_files": {
"out_video": "output.mp4"
}
}'Need an API key? Get your free API key to start processing files programmatically.
Common Variations
Aggressive stabilization
-i input.mp4 -vf vidstabtransform=smoothing=30 output.mp4Light stabilization
-i input.mp4 -vf vidstabtransform=smoothing=5 output.mp4With zoom to hide borders
-i input.mp4 -vf vidstabtransform=smoothing=10:zoom=5 output.mp4Related Operations
Need to process at scale?
Automate this with the RenderIO FFmpeg API. Process thousands of files programmatically or through no-code video automation.