修正一下音频播放部分。加入状态判断,可以避免播放的错误:
dirs='E://sounds/Digital/Fete.aac'
so=audio.Sound.open(dirs)
def playSound():
if so.state()==audio.EOpen:
so.play(1,0)
--------------------
audio.EOpen表示音频文件已经打开
修正一下音频播放部分。加入状态判断,可以避免播放的错误:
dirs='E://sounds/Digital/Fete.aac'
so=audio.Sound.open(dirs)
def playSound():
if so.state()==audio.EOpen:
so.play(1,0)
--------------------
audio.EOpen表示音频文件已经打开