你好,我看了你的《delphi实现音频传输》一文,很详细,我研究ACM也很久了,我的代码是这样的<br/> tmpformat.wFormatTag := 49;<br/> tmpformat.nChannels := 1;<br/> tmpformat.nSamplesPerSec := 8000;<br/> tmpformat.nAvgBytesPerSec := 1625;<br/> tmpformat.nBlockAlign := 65;<br/> tmpformat.wBitsPerSample := 0;<br/> tmpformat.cbSize := 2;<br/> tmpformat.xBytes := 320;<br/> ACMWaveIn1.Open(@tmpformat);<br/><br/> ACMWaveOut1.Close;<br/> tmpformat1.wFormatTag := 49;<br/> tmpformat1.nChannels := 1;<br/> tmpformat1.nSamplesPerSec := 8000;<br/> tmpformat1.nAvgBytesPerSec := 1625;<br/> tmpformat1.nBlockAlign := 65;<br/> tmpformat1.wBitsPerSample := 0;<br/> tmpformat1.cbSize := 2;<br/> tmpformat1.xBytes := 320;<br/> ACMWaveOut1.Open(@tmpformat1); //把采集到的经过压缩后的语音取出来<br/><br/>建一个结构来保存声音与发送声音,我想问一个问题,就是对方收到后,如果要把声音保存成WAV之类的文件,随便什么文件,只要能把声音保存下来就行,你有没有什么好办法,我为了这个问题头痛一年了,呵,一直没有搞定,我的邮箱是show_20@163.com,谢谢,