Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何将 RGB 图像转码为 VP8 帧(关键帧 + 一些依赖帧)?
所以我创建了一些图像,现在如何将 tham 变成 VP8?
最简单的方法是使用ffmpeg。
最新版本的 ffmpeg (0.6) 现在支持 VP8 编解码器,现在构建它很容易。
然后,ffmpeg可以轻松地将单个帧收集到一个动画中。这是一个教程,但您可以谷歌搜索更多结果。
首先,您需要一个用于 VP8 的编解码器库:
http://www.webmproject.org/code/build-prerequisites/
然后使用libvpx API,您可以将 RGB 帧编码为 VP8 帧。