原始 RGB 帧到 mpeg?
有谁知道一个简单的 dll 有 3 个主要功能,即
1. Start_recording_mpeg(<encoding>, <fps>, <file>, <etc>)
2. Encode_frame(<raw rgb data>)
3. Finish()
Does anybody know of a simple dll that has like 3 main functions, i.e.
1. Start_recording_mpeg(<encoding>, <fps>, <file>, <etc>)
2. Encode_frame(<raw rgb data>)
3. Finish()
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将 RGB 帧转换为 YUV,然后将它们通过管道传送到 ffmpeg,如博客条目<中所述/a>.
Convert your RGB frames to YUV and then pipe them to ffmpeg as described in this blog entry.