要想实现语音合成功能,我们可以选择:
本文简述pyttsx3的使用方法及代码实例。 本文简述pyttsx3的使用方法及代码实例.
笔者使用清华镜像源,用pip命令快速安装
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple pyttsx3
pip3 install -i https://pypi.tuna.tsinghua.edu.cn/simple pyttsx3
import pyttsx3 import io import sys engine = pyttsx3.init() engine.setProperty('voice', 'zh') #开启支持中文 line = "你好,世界!" #要播报的内容 engine.say(line) engine.runAndWait() f.close()
在Ubuntu下,默认的这个语音包,是个歪果仁,说的中文确确实实是那种歪果仁说中文的感觉,而且整体音色机械音。