我有这个错误,“无法导入名称gTTS”

时间:2017-08-21 11:39:17

标签: python

from gtts import gTTS
import os

tts=gTTS(text="Both are great",lang="en")
tts.save("both.mp3")
os.system("mpg12 both.mp3")

1 个答案:

答案 0 :(得分:0)

  1. 您应尝试重命名文件并再次运行。
  2. 您已另存为“ both.mp3”,并尝试播放文件“ mpg12 both.mp3”进行了修正!

    os.system("both.mp3")