Hi All
I want to record my Call Conversation using OpenNetCF. I have used the C following Codes
Private audioRecorder As OpenNETCF.Media.WaveAudio.Recorder
'---duration to record (in seconds)---
Const RECORD_DURATION As Integer = 10000
'---save the recording to storage---
Dim audioStream As IO.Stream
audioStream = System.IO.File.OpenWrite("\My Documents\Record1.wav")
audioRecorder = New OpenNETCF.Media.WaveAudio.Recorder
'---save the audio to stream---
audioRecorder.RecordFor( _
audioStream, _
RECORD_DURATION, _
OpenNETCF.Media.WaveAudio.SoundFormats.Mono16bit11kHz)
Now my problem is that it record only my voice not the voice of the other side caller(ear piece sound).
I have found this code in http://www.devx.com/wireless/Article/36134/1954 this forum where it described that this code can able to record the Conversation.
Can any one help me regarding this problem??
Thanx
Koushik