Category:Video: Difference between revisions
Jump to navigation
Jump to search
(Created page with "Category:Hacking = Quick Tips = == Image Stabilization == === FFMPEG === <pre> ffmpeg -i VID_20250127_144815.mp4 -vf vidstabdetect=shakiness=10:accuracy=15 -f null - ffmpeg -i VID_20250127_144815.mp4 -vf vidstabtransform=smoothing=30:zoom=0 series_launch_english.mp4 </pre> First command generates the convolution file, second command applies it.") |
(→FFMPEG) |
||
Line 4: | Line 4: | ||
=== FFMPEG === | === FFMPEG === | ||
<pre> | <pre> | ||
ffmpeg -i | ffmpeg -i input.mp4 -vf vidstabdetect=shakiness=10:accuracy=15 -f null - | ||
ffmpeg -i | ffmpeg -i input.mp4 -vf vidstabtransform=smoothing=30:zoom=0 output.mp4 | ||
</pre> | </pre> | ||
First command generates the convolution file, second command applies it. | First command generates the convolution file, second command applies it. |
Revision as of 20:33, 31 January 2025
Quick Tips
Image Stabilization
FFMPEG
ffmpeg -i input.mp4 -vf vidstabdetect=shakiness=10:accuracy=15 -f null - ffmpeg -i input.mp4 -vf vidstabtransform=smoothing=30:zoom=0 output.mp4
First command generates the convolution file, second command applies it.
This category currently contains no pages or media.