赞
踩
目录
pyttsx3 · PyPIText to Speech (TTS) library for Python 2 and 3. Works without internet connection or delay. Supports multiple TTS engines, including Sapi5, nsss, and espeak.https://pypi.org/project/pyttsx3/pyttsx3 是 Python 中的文本到语音转换库。与其他库不同,它离线工作,并且与 Python2 和Python3 兼容。
安装:
pip install pyttsx3
- import pyttsx3 as pytts
-
-
- tts = pytts.init()
- tts.setProperty("rate", 150)
- tts.setProperty("volume", 1)
- voices = tts.getProperty("voices")
- tts.setProperty("voice", voices[0].id)
- tts.say("这是TTS测试")
- tts.runAndWait()
- tts.stop()
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。