最快的 python/C++多媒体图书馆
我在基于 OpenGL 的游戏中使用 pyglet,但它是最快的带有 python 包装器的库吗?我可以创建 C++ 扩展并使用任何 C++ 多媒体库。是否有任何 C++ 库值得投入时间,或者不值得额外的工作?
谢谢。
I'm using pyglet for my OpenGL based game but is it the fastest library out there which has a python wrapper? I could create a C++ extension and use any C++ multimedia library. Are there any C++ libraries that are worth investing time into or is it not worth the extra work?
Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Pygame 是 SDL 库,广泛应用于游戏开发,提供 OpenGL、声音和输入管理。据我所知,至少 SDL 相当快,而且包装器只是封装了供 python 使用的二进制功能。根据您的使用情况,您可以实现高速。
Pygame is a python wrapper for the SDL library, which is widely used in game developing and provides OpenGL, sound and input management. To my knowledge at least SDL is quite fast, and the wrapper just encapsulates the binary functionality for python usage. Depending on your usage you can accomplish high speed.
我想说 (Py)SFML 但我不确定您的多媒体要求是什么。
I'd say (Py)SFML but I'm not sure of what your multimedia requirements are.