1

我正在为 python 使用 cocos2d 游戏引擎。我阅读了 api 文档,但找不到视频库。如何使用 python cocos2d 播放 avi 或 mpeg 视频?

4

1 回答 1

1

我找到了这个解决方案。

class VideoLayer (Layer):
    def __init__(self, video_name):
        super(VideoLayer, self).__init__()

        source = pyglet.media.load(video_name)
        format = source.video_format
        if not format:
            print 'No video track in this source.'
            return

        self.media_player = pyglet.media.Player()
        self.media_player.queue(source)
        self.media_player.play()

    def draw(self):
        self.media_player.get_texture().blit(0, 0)
于 2011-07-13T16:06:54.363 回答