python 文字转语音

# coding=utf-8

import pyttsx3

text='I love you 韩长菊'
voice=pyttsx3.init()
voice.say(text)
voice.runAndWait()

猜你喜欢

转载自www.cnblogs.com/gisoracle/p/12063530.html