我是Python的新手,并且一直在全职学习这门语言。我希望能够:
png
读入视频帧缓冲区并在窗口中显示png
看起来很简单,我已经能够使用pyglet做部分。我已经阅读了数百份文件,而且似乎让我感到更加困惑。
有人能指出正确的方向吗?
答案 0 :(得分:0)
作为第一个提示,请检查这些功能:
捕获视频帧:pyglet.image.get_texture()
(doc here:http://pyglet.org/doc/api/pyglet.media.Player-class.html)
保存png:pyglet.image.get_buffer_manager().get_color_buffer().save(filename)
要使用像素,当您使用纹理时,pyglet.image.ImageData
类应该是要查看的pyglet类。
(API的文档:http://pyglet.org/doc/api/pyglet.image.ImageData-class.html#format)