Skip to content

Instantly share code, notes, and snippets.

@vdudouyt
Created June 1, 2017 10:25
Show Gist options
  • Save vdudouyt/c46484db246a890317450eb635dc4cb2 to your computer and use it in GitHub Desktop.
Save vdudouyt/c46484db246a890317450eb635dc4cb2 to your computer and use it in GitHub Desktop.
#!/bin/bash
FFMPEG=~/bin/ffmpeg/ffmpeg
FILE=$1
$FFMPEG -threads 0 -i $FILE -vf vidstabdetect=stepsize=6:shakiness=10:accuracy=15:result=$FILE.trf -f null -
$FFMPEG -threads 0 -i $FILE -vf vidstabtransform=input=$FILE.trf:smoothing=30 -c:v libx264 -preset slow -crf 22 -c:a aac -b:a 256k $FILE.stab.mp4
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment