|

楼主 |
发表于 2025-3-27 16:23
|
显示全部楼层
[广告] Excel易用宝 - 提升Excel的操作效率 · Excel / WPS表格插件 ★ 免费下载 ★ ★ 使用帮助★
谢谢高手,我录制出来的音频卡顿怎么办?
Sub 文本到语音() 'word,excel,powerpoint可用
Dim spfilestream As Object, spvoice As Object
Dim sText As String '对象与变量声明
Set spvoice = CreateObject("SAPI.SpVoice")
Set spfilestream = CreateObject("SAPI.SpFileStream")
'指定存放wav(或mp3)文件:<推荐wav格式>
wavfile = "C:\Users\zzpsx\Desktop\音频1.mp3"
'打开音频文件, 不存在则创建
Call spfilestream.Open(wavfile, 3)
'*********&写入音频文件&**********
Set spvoice.AudioOutputStream = spfilestream
sText = Selection.text '当前选定文本
Call spvoice.Speak(sText) '朗读选定文本
spfilestream.Close '关闭对象
Set spvoice = Nothing '释放对象
Set spfilestream = Nothing
End Sub
|
|