Created
December 7, 2019 05:00
-
-
Save zhangdxchn/aeeab01b9da10fe95a6d5914c945ae11 to your computer and use it in GitHub Desktop.
FFmpeg 去除水印
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
# 绿色框去除水印位置(通过周围像素插值) | |
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