【发布时间】:2013-04-12 06:42:51
【问题描述】:
我有 avconv 命令
avconv -i file -s [new size options] -vf "[filters]" /root/converted/1.mp4
Avconv 在编码之前使用过滤器,但我需要之后。我需要一个 avconv 命令:
Resize video first
Use filters second
我该怎么做?
【问题讨论】:
我有 avconv 命令
avconv -i file -s [new size options] -vf "[filters]" /root/converted/1.mp4
Avconv 在编码之前使用过滤器,但我需要之后。我需要一个 avconv 命令:
Resize video first
Use filters second
我该怎么做?
【问题讨论】:
在不知道输入格式(您没有提供)的情况下,这是最好的猜测:
avconv -i file -y -s [new size options] - | avconv -i - -vf "[filters]" /root/converted/1.mp4
【讨论】: