Sound Card

  • Thread starter Thread starter HardySpicer
  • Start date Start date
H

HardySpicer

Is there a dll somewhere so that I can access the sound card? I need
access to the audio waveform samples from (say) the mic input or Aux.


hardy
 
Hardy

Maybe DirectX (in past it had samples how to use sound, altough those were
then in C# were those for every a little bit expirience VB user readable)

http://www.microsoft.com/downloads/details.aspx?familyid=124552ff-836...

Cor

I did find what is called a full duplex program which I converted from
c#.

http://www.codeproject.com/KB/audio-video/cswavrec.aspx

Trouble is it is not clear to me how to get at the samples.
I have a call like this in it

Dim fmt As New WaveLib.WaveFormat(44100, 16, 2) (this
is just the format 44.1kHz 16 bits 2 channels)

m_Recorder = New WaveLib.WaveInRecorder(-1, fmt,
16384, 3, New WaveLib.BufferDoneEventHandler(AddressOf DataArrived))
I assume the sample must be in DataArrived (but I am unsure).

how to get the data out!!


Hardy
 
Back
Top