Skip to content

Instantly share code, notes, and snippets.

@narate
Last active March 18, 2026 06:40
Show Gist options
  • Select an option

  • Save narate/9b5d4efc92461dc0211daea8570a7416 to your computer and use it in GitHub Desktop.

Select an option

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