如何使用 FFMPEG 打开文件\直播流,使用 openCV 编辑每个帧并将其保存为使用 FFMPEGfile\live 流编码的内容?

发布于 2024-09-07 23:03:49 字数 75 浏览 3 评论 0原文

如何使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

听不够的曲调 2024-09-14 23:03:49

嗯,这很简单。

我建议您从简单的 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

独夜无伴 2024-09-14 23:03:49

以下是如何使用 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文