当前位置:   article > 正文

【语音合成】pyttsx3_pytts离线合成语音

pytts离线合成语音

目录

1. 简单介绍

2. 代码示例


1. 简单介绍

 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 兼容。

2. 代码示例

安装:

pip install pyttsx3

Python:

  1. import pyttsx3 as pytts
  2. tts = pytts.init()
  3. tts.setProperty("rate", 150)
  4. tts.setProperty("volume", 1)
  5. voices = tts.getProperty("voices")
  6. tts.setProperty("voice", voices[0].id)
  7. tts.say("这是TTS测试")
  8. tts.runAndWait()
  9. tts.stop()

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/盐析白兔/article/detail/911541
推荐阅读
  

闽ICP备14008679号