How to encode series of images into VP8 using WebM VP8 Encoder API? (C/C++)

早过忘川 提交于 2019-12-23 12:20:09

问题


How to transcode RGB images into VP8 frames (Keyframe + some dependent frames)?

So I created some images how to turn tham into VP8 now?


回答1:


First, you need a codec library for VP8:

http://www.webmproject.org/code/build-prerequisites/

Using libvpx API you can then encode your RGB frames into VP8 frames.




回答2:


The easiest way to go is to use ffmpeg.

The latest release of ffmpeg (0.6) now supports the VP8 codec, and building it is now easy.

Then, ffmpeg makes it simple to gather individual frames into a movive. Here is a tutorial, but you can google for more results.



来源:https://stackoverflow.com/questions/3029164/how-to-encode-series-of-images-into-vp8-using-webm-vp8-encoder-api-c-c

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