我正在尝试将带有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
我不太清楚这里的问题是什么,有什么建议,我很困惑!
答案 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