如何在一个avconv CLI中使用多个视频滤镜 [英] How to use multiple video filters in one avconv cli

查看:86
本文介绍了如何在一个avconv CLI中使用多个视频滤镜的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

这是我的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

我希望删除视频中的两个水印,但是我的cli仅删除 delogo = x = 44:y = 39:w = 145:h = 49:band = 4 ,要将它们删除成一个cli

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

推荐答案

您必须链接两个过滤器:

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

这篇关于如何在一个avconv CLI中使用多个视频滤镜的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆