Answer the question
In order to leave comments, you need to log in
How are sounds digitally recorded?
There is this code:
static WasapiLoopbackCapture wi;
static void Main(string[] args)
{
wi = new WasapiLoopbackCapture();
wi.DataAvailable += new EventHandler<WaveInEventArgs>(wi_DataAvailable);
wi.StartRecording();
}
static void wi_DataAvailable(object sender, WaveInEventArgs e)
{
byte[] bytes = e.Buffer;
}
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question