简体   繁体   中英

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

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

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

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.

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.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM