python转文本为语音并播放

1、导入库

pip install pyttsx3==2.90

2、流程

1、初始化tts引擎
2、设置音量(0到1之间)
3、设置语速
4、 设置声音对象,voices[0].id代表男生,voices[1].id代表女生
5、转换文本并播放
6、挂起声音引擎

3、代码

# -*- coding: utf-8 -*-

"""
@contact: 微信 1257309054
@file: test.py
@time: 2024/7/1 22:15
@author: LDC
"""
import pyttsx3


def get_sound_engine():
    '''
    初始化声音引擎
    :return:
    ''
07-07 03:56