我只是为了好玩而编写一个小型 Python 游戏,并且我有一个功能可以完成开头的叙述。
我试图让音频在后台播放,但不幸的是 MP3 文件在功能继续之前先播放。
如何让它在后台运行?
import playsound
def displayIntro():
playsound.playsound('storm.mp3',True)
print('')
print('')
print_slow('The year is 1845, you have just arrived home...')
另外,有没有办法控制playsound模块的音量?
我使用的是 Mac,我并不热衷于使用 playsound。它似乎是我可以开始工作的唯一模块。