0

我有一个在网上找到的方法。代码的目的是让 python 说单词。该方法的代码如下:

def respond(output):
   num=0
   print(output)
   num += 1
   response=gTTS(text=output, lang='en')
   file = str(num)+".mp3"
   response.save(file)
   playsound.playsound(file, True)  # <-- Error here.
   os.remove(file)

函数内部的第 7 行发生错误 - playsound.playsound(file, True)。我查看了另一个 StackOverflow 帖子,其中有基本相同问题的人:Playsound throwing error "returned non-zero exit status 1",我尝试了帖子中推荐的解决方案。不幸的是,我仍然遇到同样的错误。我想问一下我遇到的问题是否有其他解决方案。

错误信息是:

Command '['/usr/bin/python3', '/usr/local/lib/python3.7/dist-packages/playsound.py', '1.mp3']'
  returned non-zero exit status 1.
4

0 回答 0