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.
我有来自我们正在开发的网络灰度相机的原始图像流。在这种情况下,我们的图像是 8 位像素 (640x480) 的数组。由于这台相机每秒输出超过 200 帧,我需要尽快将这些图像存储为 WebM 视频,以免丢失任何帧。
使用 libvpx 的最佳方法是什么?
最快和最简单的做法是将灰度平面直接提供到带有 VPX_IMG_FMT_I420 的 libvpx 压缩函数 vpx_codec_encode 中。不过,您必须输入两个 2x2 二次采样颜色平面 - 在您的情况下为 320x240 - 使这些平面的所有八位字节的值都为 128。