语音合成 - TTS gTTS

目录

1. 简单介绍

2. 代码示例


1. 简单介绍

https://gtts.readthedocs.io/en/latest/icon-default.png?t=M85Bhttps://gtts.readthedocs.io/en/latest/

gTTS 是基于 Python 的文本转语音库,用于语音合成。

2. 代码示例

安装:

pip install gTTS 

Python:

from gtts import gTTS

text = "这是TTS测试"
tts = gTTS(text=text, lang='zh-CN')

file = "audio.mp3"
tts.save(file)

你可能感兴趣的:(语音,语音识别)