我正在使用 Python 编写游戏并且需要播放音效,所以我使用了 playsound 模块:
from playsound import playsound
playsound("Typing.wav", False)
当我尝试运行程序时,返回了这个错误:
Error 263 for command:
open Typing.wav
The specified device is not open or is not recognized by MCI.
我做了一些研究,一些消息来源表明这是我的声音驱动程序的问题。我更新并重新安装了它,但问题仍然存在。有没有办法解决这个问题?