Created
May 2, 2014 17:45
-
-
Save sjwilliams/4b23f60fc451e7e8c59e to your computer and use it in GitHub Desktop.
FFmpeg: Blur video
This file contains hidden or 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 intro.mov -vf "boxblur=5:1" intro-blur.mov |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-vf boxblur
===-vf boxblur=luma_radius=2:luma_power=2
.-vf boxblur=w=20:h=20:x=400:y=200
.-vf boxblur=enable='between(t,3,10*60)'
.:
to separate arguments,=
to specify value).enable
is available for any filter! (when it makes sense, not much forcrop
, for example..).