利用python将文本文件转换成mp3--听书

Posted MrSimple0

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了利用python将文本文件转换成mp3--听书相关的知识,希望对你有一定的参考价值。

from comtypes.client import CreateObject
from comtypes.gen import SpeechLib
engine = CreateObject("SAPI.SpVoice")
stream = CreateObject("SAPI.SpFileStream")
infile = "SHIVA.txt"
outfile = "三体.mp3"
stream.Open(outfile, SpeechLib.SSFMCreateForWrite)
engine.AudioOutputStream = stream
f = open(infile, r,encoding=utf-8)
theText = f.read()
f.close()
engine.speak(theText)
stream.Close()

 

搜索

复制


以上是关于利用python将文本文件转换成mp3--听书的主要内容,如果未能解决你的问题,请参考以下文章

怎么通过ffmpeg将音频文件转换成Mp3 转

如何使用JS将音频文件如何转换成base64格式的

如何将视频文件转换格式

利用Python将GB格式序列文件 转换成 Fasta格式文件

使用Python3将Markdown(.md)文本转换成 htmlpdf

如何将MP3格式的文件转换成M4a格式