Skip to content

Instantly share code, notes, and snippets.

@zhangdxchn
Created December 7, 2019 05:00
Show Gist options
  • Save zhangdxchn/aeeab01b9da10fe95a6d5914c945ae11 to your computer and use it in GitHub Desktop.
Save zhangdxchn/aeeab01b9da10fe95a6d5914c945ae11 to your computer and use it in GitHub Desktop.
FFmpeg 去除水印
# 绿色框去除水印位置(通过周围像素插值)
ffplay -i source.mp4 -vf delogo=x=72:y=32:w=168:h=86:show=1
# 确定后执行去除
ffmpeg -i source.mp4 -vf delogo=x=72:y=32:w=168:h=86 output.mp4
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment