1. 程式人生 > >python | gtts 將文字轉化為語音內容

python | gtts 將文字轉化為語音內容

子:
from gtts import gTTS
import os
tts = gTTS(text='您好,您吃早飯了嗎?需要我給你推薦些吃的嗎?', lang='zh-tw')
tts.save("hello.mp3")
os.system("mpg321 hello.mp3")

執行成功後,結果為1,然後去目錄下開啟hello.mp3