如何通过Python的pyttsx3库将文字转为音频
目录
- 前言
- 一、pyttsx3是什么?
- 二、安装pyttsx3
- 三、查看pyttsx3版本
- 四、pyttsx3的使用
- 1.引入库
- 2.定义需要转换的文本
- 3.初始化pyttsx3引擎
- 4.设置声音
- 5.设置语速
- 6.设置音量
- 7.播放语音
- 8.保存语音
- 9.等待完成语言转换
- 五、语音效果
- 总结
前言
大家好,我是空空star,本篇给大家分享一下通过python的pyttsx3库将文字转为音频。
一、pyttsx3是什么?
pyttsx3是一个开源的Python文本转语音库,可以将文本转换为自然的人类语音。它提供了丰富灵活的配置选项,可以自定义声音,语速,语调等等,并且支持多语言转换。此外,它还支持异步操作,开发者_JAVA教程可以在后台自动调用语音合成引擎,不会阻塞主程序。Pyttsx3可以广泛应用于各种领域,例如自动化语音提示、智能语音助手、语音验证等等,是一个非常优秀的Python语音处理库。
二、安装pyttsx3
pip install pyttsx3
三、查看pyttsx3版本
pip show pyttsx3
Name: pyttsx3
Version: 2.90Summary: Text to Speech (TTS) library for Python 2 and 3. Works without internet connection or delay. Supports multiple TTS engines, including Sapi5, nsss, and espeak.Home-page: https://github.com/nateshmbhat/pyttsx3
四、pyttsx3的使用
1.引入库
import pyttsx3
2.定义需要转换的文本
text = '大家好,我是空空star,本篇给大家分享一下文字转音频,这是通过pyttsx3转换的音频。'
3.初始化pyttsx3引擎
engine = pyttsx3.init()
4.设置声音
# 获取所有可用的声音列表 voices = engine.getProperty('voices') # 选择一个指定语音(粤语语音sinji) engine.setPrope编程客栈rty('voice', voices[36].id)
这里我用的是MAC系统下的粤语语音
com.apple.speech.synthesis.voice.sinji
5.设置语速
engine.setProperty('rate', 150)
6.设置音量
engine.setProperty('volume', 0.8)
7.播放语音
engine.say(text)
8.保存语音
local = '/Users/kkstar/Downloads/video/' engine.save_to_file(text, local+"audio_pyttsx3.mp3")
9.等待完成语言转换
engine.runAndwait()
engine.ru编程客栈nAndWait() 用于在文本转语音时,等待文本转换完成后再继续程序的执行。它的目的是在文本转换为语音时,避免出现程序过早结束,导致文本无法全部转换的情况。
五、语音效果
由于博客中不能插入mp3文件,所以先将其转为mp4,大家通过mp4的声音来听转换效果。
pyttsx3-文字转音频效果演示
总结
voices如下,可以选择自己喜欢的声音。
com.apple.speech.synthesis.voice.Alexcom.apple.speech.synthesis.voice.alice.premiumcom.apple.speech.synthesis.voice.alvacom.apple.speech.synthesis.voice.ameliecom.apple.speech.synthesis.voice.annacom.apple.speech.synthesis.voice.carmitcom.apple.speech.synthesis.voice.damayanticom.apple.speech.synthesis.voice.danielcom.apple.speech.synthesis.voice.diegocom.apple.speech.synthesis.voice.ellencom.apple.speech.synthesis.voice.fionacom.apple.speech.synthesis.voice.Fredcom.apple.speech.synthesis.voice.ioanacom.apple.speech.synthesis.voice.joanacom.apple.speech.synthesis.voice.jorgecom.apple.speech.synthesis.voice.juancom.apple.speech.synthesis.voice.kanyacom.apple.speech.synthesis.voice.karencom.apple.speech.synthesis.voice.kyokocom.apple.speech.synthesis.voice.laurPkKkZQzySacom.apple.speech.synthesis.voice.lekhacom.apple.speech.synthesis.voice.lucacom.apple.speech.synthesis.voice.lucianacom.apple.speech.synthesis.voice.magedcom.apple.speech.synthesis.voice.mariskacom.apple.speech.synthesis.voice.meijiacom.apple.speech.synthesis.voice.melinacom.apple.speech.synthesis.voice.milenacom.apple.speech.synthesis.voice.moiracom.apple.speech.synthesis.voice.monicacom.apple.speech.synthesis.voice.noracom.apple.speech.synthesis.voice.paulinacom.apple.speech.synthesis.voice.rishicom.apple.speech.synthesis.voice.samanthacom.apple.speech.synthesis.voice.saracom.apple.speech.synthesis.voice.satucom.apple.speech.synthesis.voice.sinjicom.apple.speech.synthesis.voice.tessacom.apple.speech.synthesis.voice.thomascom.apple.speech.synthesis.voice.tingting.premiumcom.apple.speech.synthesis.voice.veenacom.apple.speech.synthesis.voice.Victoriacom.apple.speech.synthesis.voice.xandercom.apple.speech.synthesis.voice.yeldacom.apple.speech.synthesis.voice.yunacom.apple.speech.synthesis.voice.yuricom.apple.speech.synthesis.voice.zosiacom.apple.speech.synthesis.voiwww.devze.comce.zuzana
到此这篇关于如何通过Python的pyttsx3库将文字转为音频的文章就介绍到这了,更多相关Python 文编程客栈字转为音频内容请搜索我们以前的文章或继续浏览下面的相关文章希望大家以后多多支持我们!
精彩评论