Last active
September 7, 2019 06:51
-
-
Save allanlei/65f0b8bda3817ccf8d3885daa3006053 to your computer and use it in GitHub Desktop.
FFmpeg Filtergraph to blur a video
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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