我想使用 ffmpeg 制作带有 jpeg 图像和 mp3 音频文件的简单视频。我使用了这个命令:
ffmpeg -loop 1 -i image.jpg -i audio.mp3 -c:v libx264 -tune stillimage -c:a aac -b:a 192k -pix_fmt yuv420p -shortest out.mp4
并得到这个错误:
[swscaler @ 0x555f60538b40] deprecated pixel format used, make sure you did set range correctly
[libx264 @ 0x555f60594d40] height not divisible by 2 (550x765)
Error initializing output stream 0:0 -- Error while opening encoder for output stream #0:0 - maybe incorrect parameters such as bit_rate, rate, width or height
Conversion failed!
我无法理解它。你能为我更正命令吗?
利用:
比例过滤器示例是使宽度和高度可被 2 整除的一种奇特方式,这是此特定编码器在输出 YUV 4:2:0 时所需的(不支持 4:2:2 和 4:4:4大多数玩家,这就是为什么你会看到这么多使用
yuv420p
) 的例子。一种更简单的方法是像 一样裁剪或缩放
crop=550:764
,但上述命令适用于任何输入大小。