首页 热点专区 义务教育 高等教育 出国留学 考研考公

Vb6 如何将文字转换成wav

发布网友 发布时间:2022-04-25 08:23

我来回答

1个回答

热心网友 时间:2023-11-08 21:12

Const SSFMCreateForWrite = 3
Private Sub Form_Load()
strText = "测试文本"'这里输入要输出的声音
Set objVoice = CreateObject("SAPI.SpVoice")
Set objFile = CreateObject("SAPI.SpFileStream.1")
objFile.Open "D:\测试声音.wav", SSFMCreateForWrite'输出路径
Set objVoice.AudioOutputStream = objFile
objVoice.Rate = 1
objVoice.Volume = 100'音量
objVoice.AllowAudioOutputFormatChangesOnNextSet = False
objVoice.Speak strText
objFile.Close
Set objVoice.AudioOutputStream = Nothing
Set objVoice = Nothing
End Sub

英文也可以输出

注意需要引用Microsoft Speech Object Library库

望采纳

热心网友 时间:2023-11-08 21:12

Const SSFMCreateForWrite = 3
Private Sub Form_Load()
strText = "测试文本"'这里输入要输出的声音
Set objVoice = CreateObject("SAPI.SpVoice")
Set objFile = CreateObject("SAPI.SpFileStream.1")
objFile.Open "D:\测试声音.wav", SSFMCreateForWrite'输出路径
Set objVoice.AudioOutputStream = objFile
objVoice.Rate = 1
objVoice.Volume = 100'音量
objVoice.AllowAudioOutputFormatChangesOnNextSet = False
objVoice.Speak strText
objFile.Close
Set objVoice.AudioOutputStream = Nothing
Set objVoice = Nothing
End Sub

英文也可以输出

注意需要引用Microsoft Speech Object Library库

望采纳

热心网友 时间:2023-11-08 21:12

Const SSFMCreateForWrite = 3
Private Sub Form_Load()
strText = "测试文本"'这里输入要输出的声音
Set objVoice = CreateObject("SAPI.SpVoice")
Set objFile = CreateObject("SAPI.SpFileStream.1")
objFile.Open "D:\测试声音.wav", SSFMCreateForWrite'输出路径
Set objVoice.AudioOutputStream = objFile
objVoice.Rate = 1
objVoice.Volume = 100'音量
objVoice.AllowAudioOutputFormatChangesOnNextSet = False
objVoice.Speak strText
objFile.Close
Set objVoice.AudioOutputStream = Nothing
Set objVoice = Nothing
End Sub

英文也可以输出

注意需要引用Microsoft Speech Object Library库

望采纳

声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com