问题是我尝试缩放视频并保持宽高比
ffmpeg -i in.mp4 -vf scale=240:-1 out.mp4
我也尝试-s 240x135但总是一样错误..
height not divisible by 2 (240x135)
但是,如果我尝试240x180它正在工作,问题是因为我需要保持宽高比,因为我需要scale=240:-1
我有什么错误
height not divisible by 2 (240x135)
Error while opening encoder for output stream #0:0 - maybe incorrect parameters such as bit_rate, rate, width or height
答案 0 :(得分:0)
使用-vf scale=240:-2
-2作为值可确保高度为偶数,因此可以被2整除。