用python写一个文字转语音的代码
时间: 2023-02-12 18:21:29 浏览: 270
python实现文字转语音功能
5星 · 资源好评率100%
你可以使用 Python 的 gTTS (Google Text-to-Speech) 库来实现文字转语音。
示例代码如下:
```python
from gtts import gTTS
import os
text = "你好, 世界"
tts = gTTS(text, lang='zh-cn')
tts.save("hello.mp3")
os.system("hello.mp3")
```
第一行导入 gTTS 库,第二行是要转换的文本,第三行实例化 gTTS 对象,第四行将语音保存为 MP3 文件,最后一行是播放这个文件。
这个程序会把"你好, 世界"转换成语音,并保存为hello.mp3,最后播放hello.mp3.
请注意,使用 gTTS 库需要连接到互联网。
阅读全文