“未发现从 yuv420p 到 bgr24 的加速色彩空间转换”在 Mac 上使用 OpenCV 和 FFMPEG 时

发布于 2024-12-11 19:58:08 字数 172 浏览 0 评论 0原文

当尝试从视频文件获取帧时(我尝试了多种视频格式),我收到一条错误消息“未找到从 yuv420p 到 bgr24 的加速色彩空间转换”。 完全相同的代码在 Windows 机器上运行得非常好,即使在我重新编译并安装了 FFMPEG 和 OpenCV 之后,我也无法让它在 Mac 上运行。我的操作系统使用 lion。 有什么想法吗?

When trying to acquire a frame from a video file (I've tried several video formats) I am getting an error message "No accelerated colorspace conversion found from yuv420p to bgr24".
The exact same code ran perfectly fine on a windows machine and I couldn't get it to run on a mac even after I recompiled and installed FFMPEG and OpenCV. I am using lion for my OS.
Any ideas?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

泅人 2024-12-18 19:58:08

ffmpeg 在 Windows 上工作正常但抛出此警告消息的原因可以在 代码,行576,FFMPEG

可以看出,如果操作系统不在 PPC 或 X86 上运行,ffmpeg 将始终抛出此警告。

编辑 2024-12-07:

链接已更新,感谢 Aperture Prometheus 的评论

The reason why ffmpeg worked fine on Windows but threw this warning message can be found in the code, line 576, of FFMPEG.

As can be seen, ffmpeg will always throw this warning if the OS does NOT run on PPC or X86.

EDIT 2024-12-07:

link updated thanks to comment by Aperture Prometheus

若沐 2024-12-18 19:58:08

OpenCV 对每个操作系统使用特定的视频编码/解码后端。在 Windows 上,它使用 ffmpeg,而 ffmpeg 又可以使用计算机上安装的一些编解码器。在Mac上它使用qTime,我认为它可以用ffmpeg编译。

确保你有quickTime是最新的,也许安装一些编解码器(Mac上有这样的概念?)

希望它有帮助!

OpenCV uses a specific video coding/decoding back-end for each OS. On windows, it uses ffmpeg, which in turn can use some codecs installed on the machine. On Mac it uses qTime, and I think it can be compiled with ffmpeg.

Make sure u have quickTime up-to-date, and maybe install some codecs (There is such a notion on Mac?)

Hope it helps!

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