目录
1. 简单介绍
2. 代码示例
1. 简单介绍
https://gtts.readthedocs.io/en/latest/https://gtts.readthedocs.io/en/latest/
gTTS 是基于 Python 的文本转语音库,用于语音合成。
2. 代码示例
安装:
pip install gTTS
Python:
from gtts import gTTStext = "这是TTS测试"
tts = gTTS(text=text, lang='zh-CN')file = "audio.mp3"
tts.save(file)