from pygame import mixer
def playSound(file):
mixer.quit()
mixer.init(26000)
file_path = "Sound/" + file + ".mp3"
my_file = os.path.isfile(file_path)
mixer.music.load(file_path)
mixer.music.play()
while mixer.music.get_busy():
pass
答案 0 :(得分:0)
我认为您的问题是您使用的是python 2.7而不是3.5,当我运行此代码时,即使窗口未激活,我也会听到声音。更新带来了很多其他好处,所以我绝对会推荐它。