当前位置:主页 > 软件编程 > Python代码 >

pyttsx3实现中文文字转语音的方法

时间:2022-03-07 08:51:48 | 栏目:Python代码 | 点击:

如下所示:

import pyttsx3
import io
import sys
sys.stdout = io.TextIOWrapper(sys.stdout.buffer, encoding='utf-8')

engine = pyttsx3.init()
engine.setProperty('voice', 'zh')
f = open("result.txt", 'r')
line = f.readline()
while line:
 line = f.readline()
 engine.say(line)
engine.runAndWait()
f.close()

您可能感兴趣的文章:

相关文章