Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
linux:ffmepeg [2019/01/10 17:42]
admin
linux:ffmepeg [2019/01/10 17:43] (current)
admin [Video Stabilization with FFmpeg]
Line 19: Line 19:
 === Transcoding the Video === === Transcoding the Video ===
    ffmpeg2 -i SHAKY_INPUT_VIDEO.mp4 -vf vidstabtransform=input=transform_vectors.trf:zoom=1:smoothing=30,unsharp=5:5:0.8:3:3:0.4 -vcodec libx264 -preset slow -tune film -crf 18 -acodec copy SMOOTH_OUTPUT_VIDEO.mp4    ffmpeg2 -i SHAKY_INPUT_VIDEO.mp4 -vf vidstabtransform=input=transform_vectors.trf:zoom=1:smoothing=30,unsharp=5:5:0.8:3:3:0.4 -vcodec libx264 -preset slow -tune film -crf 18 -acodec copy SMOOTH_OUTPUT_VIDEO.mp4
 +
 +That manual is taken from: [[https://www.epifocal.net/blog/video-stabilization-with-ffmpeg]]\\
  
 ---- ----