如何在Ubuntu上将视频缩放到3.5:1而没有质量损失?


0

我尝试使用ffmpeg : ffmpeg -i <input_file> -vf scale=3.5:1 <output_file>,也试过用3,5而不是3.5。但它告诉大小无效。我会感谢任何应用程序,例如Handbrake。

Answers:


1

语法是

ffmpeg -i <input_file> -vf scale=3.5*iw:ih <output_file>

此命令将应用默认编码参数,因此具体设置将取决于输出格式。

您可能希望setsar=1在缩放后添加,以便播放器在播放期间不调整视频大小。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.