我有avconv命令
avconv -i file -s [new size options] -vf "[filters]" /root/converted/1.mp4Avconv在编码之前使用过滤器,但我需要在编码之后。我需要一个avconv命令:
Resize video first
Use filters second我该怎么做呢?
发布于 2014-02-27 00:04:05
在不知道输入格式的情况下(您没有提供它),最好的猜测是:avconv -i file -y -s [new size options] - | avconv -i - -vf "[filters]" /root/converted/1.mp4
https://stackoverflow.com/questions/15964776
复制相似问题