如何使用 FFMPEG 打开文件\直播流,使用 openCV 编辑每个帧并将其保存为使用 FFMPEGfile\live 流编码的内容?
如何使用 FFMPEG 打开文件\直播流,使用 openCV 编辑每个帧并将其保存为使用 FFMPEGfile\live 流编码的内容?
How to open file\live stream with FFMPEG edit each frame with openCV and save that as encoded with FFMPEGfile\live stream?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
嗯,这很简单。
我建议您从简单的 ffmpeg 解码示例开始。这样你就得到了一个 FFMPEG 图像的结构。您必须将其转换为 opencv 图像结构(IplImage)。然后你就可以应用任何opencv操作。然后你可以查看 FFMPEG 编码示例,你就有了整个处理链:)
重点是将 FFMPEG 图像结构转换为 opencv 图像结构。阅读文档(代码?)后,这非常简单。
如果您有更具体的需求,请编辑您的问题。
我的2c
Well it is quite simple.
I suggest you begin with the simple ffmpeg decoding example. With that you get a struct which is an FFMPEG image. You have to convert it to an opencv image struct (IplImage). Then you can apply any opencv operation. Then you can look at FFMPEG encoding example and you have your whole processing chain :)
The point is to convert FFMPEG image struct to opencv image struct. It is quite simple after you have read the documentation (the code ?).
Edit your question if you have more precise needs.
my2c
以下是如何使用 OpenCV 捕获视频流、编码为 mpeg-4 然后解码回 a 的示例:
http://dimitri-christodoulou.blogspot.com/2012/02/encode-and-decode-video-from-memory.html
Here is an example of how-to capture a video stream with OpenCV, encode as mpeg-4 and then deocde back to a:
http://dimitri-christodoulou.blogspot.com/2012/02/encode-and-decode-video-from-memory.html