当前位置: 代码迷 >> PB >> 怎么通过modem发送语音wav
  详细解决方案

怎么通过modem发送语音wav

热度:76   发布时间:2016-04-29 08:20:13.0
如何通过modem发送语音wav
软件通过modem发送语音(wav)格式,让接听电话的人能够听到语音

调用mscomm32.ocx控件

ole_1.object.Settings="9600,n,8,1"
ole_1.object.CommPort=2
ole_1.object.portopen = true
ole_1.object.output = 'ATDT122' + char(13)
ole_1.object.output = 'AT+FCLASS=8' + char(13)
ole_1.object.output = 'AT+VLS=7' + char(13)
ole_1.object.output ='AT+VTX' +char(13)
电话可以拨通,不知道如何将语音通过串口发送

资料显示通过api函数waveOutWrite可以。有朋友能告知吗?谢谢

------解决方案--------------------
晕,用串口发送语音,建议还是用vc等来实现吧