错误"使用auto_alt_ref进行透明度编码不起作用"将带有Alpha的.mov转换为带有ffmpeg的alpha的.webm

时间:2017-08-09 10:26:53

标签: video ffmpeg alpha webm mov

我正在尝试将带有Alpha透明度的.mov文件转换为.webm文件,并一直关注此主题寻求帮助:Convert mov with Alpha to VP9 Webm with Alpha Using ffmpeg

我一直在使用的命令行是

ffmpeg -r 24/1 -i Desktop/Skel_Walk_1.mov -c:v libvpx -pix_fmt yuva420p Desktop/Skel_Walk_1.webm

然而,当我去运行命令时,它会出现2个错误

Transparency encoding with auto_alt_ref does not work

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

我不太清楚这里的问题是什么,有什么建议,我很困惑!

1 个答案:

答案 0 :(得分:21)

我想我可能已经解决了这个问题,在输出修复此问题之前添加-auto-alt-ref 0 !!

工作指令

ffmpeg -i Desktop/Skel_Walk_1.mov -c:v libvpx -pix_fmt yuva420p -auto-alt-ref 0 Desktop/Skel_Walk_1.webm