Skip to content

Instantly share code, notes, and snippets.

@allanjos
Last active February 4, 2021 16:08
Show Gist options
  • Save allanjos/d1ed8a790d591d5a9429e661c58f38ed to your computer and use it in GitHub Desktop.
Save allanjos/d1ed8a790d591d5a9429e661c58f38ed to your computer and use it in GitHub Desktop.
FFMmpeg - Video effects.md

Black/white:

ffmpeg -i VID_20210131_202207090.mp4 -vf format=gray VID_20210131_202207090-gray.mp4

Blur:

ffmpeg -i VID_20210131_202207090-gray.mp4 -filter_complex "[0:v]boxblur=luma_radius=10:chroma_radius=10:luma_power=1[blurred]" -map "[blurred]" VID_20210131_202207090-gray-blur.mp4
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment