Skip to content

Instantly share code, notes, and snippets.

@allanlei
Last active September 7, 2019 06:51
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 allanlei/65f0b8bda3817ccf8d3885daa3006053 to your computer and use it in GitHub Desktop.
Save allanlei/65f0b8bda3817ccf8d3885daa3006053 to your computer and use it in GitHub Desktop.
FFmpeg Filtergraph to blur a video
ffmpeg -i source.mp4 -filter_complex \
"[0:v]boxblur=luma_radius=10:chroma_radius=10:luma_power=1[blurred]" \
-map "[blurred]" blurred.mp4
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment