How to use multiple video filters in one avconv cli

别等时光非礼了梦想. 提交于 2019-12-24 02:09:36

问题


here is my cli:

avconv -i /home/roroco/Downloads/test_rm_watermark.mp4 -ss 0 -t 30 -vf "delogo=x=1127:y=38:w=105:h=54:band=4" -vf "delogo=x=44:y=39:w=145:h=49:band=4" -c:v libx264 -an  "/tmp/rm-watermark/test.mp4" -y

I hope remove two watermarks in video, but my cli only remove delogo=x=44:y=39:w=145:h=49:band=4, how to remove them in one cli


回答1:


You have to chain the two filters:

avconv -i /home/roroco/Downloads/test_rm_watermark.mp4 -ss 0 -t 30 -vf "delogo=x=1127:y=38:w=105:h=54:band=4,delogo=x=44:y=39:w=145:h=49:band=4" -c:v libx264 -an  "/tmp/rm-watermark/test.mp4" -y


来源:https://stackoverflow.com/questions/39187616/how-to-use-multiple-video-filters-in-one-avconv-cli

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!