Skip to content

Instantly share code, notes, and snippets.

@narate
Last active December 18, 2017 14:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save narate/9b5d4efc92461dc0211daea8570a7416 to your computer and use it in GitHub Desktop.
Save narate/9b5d4efc92461dc0211daea8570a7416 to your computer and use it in GitHub Desktop.
Blur video using FFMPEG
ffmpeg -i $1 -filter_complex \
"[0:v]crop=350:40:100:60,boxblur=10[fg]; \
[0:v][fg]overlay=90:62[v]" \
-map "[v]" -map 0:a -c:v libx264 -c:a copy -movflags +faststart $2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment