赞
踩
这里记录一下,使用pygame来播放声音
安装:pip install pygame==2.5.2
- import pygame
- def play(path):
- pygame.mixer.init()
- pygame.mixer.music.load(path)
- pygame.mixer.music.set_volume(1.0) #声量,1.0最大
- pygame.mixer.music.play()
- while pygame.mixer.music.get_busy():
- pass
- play('./sounds/a1.mp3')
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。