标签: python
from gtts import gTTS import os tts=gTTS(text="Both are great",lang="en") tts.save("both.mp3") os.system("mpg12 both.mp3")
答案 0 :(得分:0)
您已另存为“ both.mp3”,并尝试播放文件“ mpg12 both.mp3”进行了修正!
os.system("both.mp3")