赞
踩
目录
https://gtts.readthedocs.io/en/latest/https://gtts.readthedocs.io/en/latest/
gTTS 是基于 Python 的文本转语音库,用于语音合成。
安装:
pip install gTTS
Python:
- from gtts import gTTS
-
- text = "这是TTS测试"
- tts = gTTS(text=text, lang='zh-CN')
-
- file = "audio.mp3"
- tts.save(file)
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。