import pyttsx3# 初始化朗读引擎
engine = pyttsx3.init()
# 设置朗读速度
self.engine.setProperty('rate', 120)
# text为需要读取的内容
self.engine.say(text)
# 不添加下面这句,没有声音
self.engine.runAndWait()
pyttsx3其他应用:
python pyttsx3实现文字朗读_JSON_L的博客-CSDN博客_python3 朗读文字pyttsx3是Python中的一个文本到语音转换库。与其他库不同,它可以脱机工作,并且与python2和python3兼容1.安装pyttsx3pip install pyttsx32.朗读demoimport pyttsx3import timedef talkWith(engine, content): """ 朗读内容 """ engine.say(content) engine.runAndWait()def talkContent(cohttps://blog.csdn.net/json_ligege/article/details/114027076pyttsx3 和 win32com.client 更换说话人的声音_中南自动化学院“智能控制与优化决策“至渝的博客-CSDN博客_pyttsx3改变声音的类型pyttsx3查看可以设置几种声音 engine = pyttsx3.init() # 初始化 voices = engine.getProperty('voices') for voice in voices: print ('id = {} \nname = {} \n'.format(voice.id, voice.name)) engine.setProperty('voice', voices[2].id) #设置发音人我电脑输出是id https://blog.csdn.net/qq_43657442/article/details/108205540