python使用PyGame模块播放声音的方法
程序员文章站
2022-06-29 10:50:38
本文实例讲述了python使用PyGame模块播放声音的方法。分享给大家供大家参考。具体实现方法如下:
import pygame
pygame.init()...
本文实例讲述了python使用PyGame模块播放声音的方法。分享给大家供大家参考。具体实现方法如下:
import pygame pygame.init() pygame.mixer.music.load("sound_file.ogg") pygame.mixer.music.play() pygame.event.wait()
希望本文所述对大家的Python程序设计有所帮助。
推荐阅读
-
Python 使用 Pillow 模块给图片添加文字水印的方法
-
使用httplib模块来制作Python下HTTP客户端的方法
-
python数据持久存储 pickle模块的基本使用方法解析
-
Python使用urllib2模块实现断点续传下载的方法
-
Python使用pickle模块报错EOFError Ran out of input的解决方法
-
Python使用pygame模块编写俄罗斯方块游戏的代码实例
-
python 使用poster模块进行http方式的文件传输到服务器的方法
-
Python使用logging模块实现打印log到指定文件的方法
-
python 使用 requests 模块发送http请求 的方法
-
Python的SimpleHTTPServer模块用处及使用方法简介