Convert mov with Alpha to VP9 Webm with Alpha Using ffmpeg

谁说胖子不能爱 提交于 2019-11-28 00:16:23

Try

ffmpeg -i input.mov -c:v libvpx -pix_fmt yuva420p out.webm

Since 2016-07-13, it's possible to encode VP9/webm videos with alpha channel (VP9a). However, the command you use here will create a VP8a video. Assuming you got a copy of ffmpeg compiled after that date, all you need is change the libvpx to libvpx-vp9. You don't need the yuva420p conversion either (is selected by default).

WebM-alpha is only defined for VP8. It doesn't work at all for VP9 right now.

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!