Howto use VoiceRecorder from Opennetcf

  • Thread starter Thread starter nobs
  • Start date Start date
N

nobs

Hello

I want to use the VoiceRecorde implementation from Opennetcf

Is there somewhere some doku and/or example code how to use it?
(I'm posting it here because i get always timeouts from the opennetcf
forum.)

Norbert
 
Well, VoiceRecorder was not included into OpenNETCF v1.3 thus you need
to get it from vault.netcf.tv (guest/guest) and compile by yourself.
Here is the example how it could be used:


vr = new OpenNETCF.Windows.Forms.VoiceRecorder();
vr.Location = new Point(20, 20);
vr.Size = new Size(200, 100);
vr.FileName = "file";
Controls.Add(vr);

vr.Show();
 
Thanks a lot for the quick answer!

Is there a way to remote control this control?
I actually want to draw my own buttons, not use the buttons from the
Voice Control
(they are to small)


Norbert
 
He
that was fast ;-)

In fact, right now I'm using the Audio.Recorder.

The reason why I want to use the VoiceRecorder, is the encoding of the
audio signal
For example, the Dell Axim50 has a build in GSM codec, with this, its
possible to record in reasonable quality with only 2kb/sec (compared
to 8 or even 11 kb PCM encoding)...
Or do you know a way to use a codec for the audio.recorder?

Norbert
 
The VoiceRecorder_Create function returns Window Handle of
VoiceRecorder. Try to send to that window WM_USER (0x0400) + 1001 to
start recording and WM_USER + 1002 to stop recording.
 
Back
Top