开发者

How do I record audio with C#/WPF?

开发者 https://www.devze.com 2023-01-15 14:59 出处:网络
I have an application to which I want to add the ability to import small audio snippets directly from a microphone device of some sort.

I have an application to which I want to add the ability to import small audio snippets directly from a microphone device of some sort.

I already allow importing of pictures and this works okay with disk files and cameras since cameras magically become disk devices when you attach them so a file import method works for both.

Audio however is slightly different. I've already allowed for importing audio files o开发者_开发知识库ff the disk but I want to add the capability to directly record from a microphone to a disk file or in-memory buffer.

Does C#/WPF provide an easy way to do this? What's a good way to add this functionality?


Probably the easiest is to use mciSendString function:

public class Program
{
    [DllImport("winmm.dll", EntryPoint = "mciSendStringA", CharSet = CharSet.Ansi, SetLastError = true, ExactSpelling = true)]
    private static extern int mciSendString(string lpstrCommand, string lpstrReturnString, int uReturnLength, int hwndCallback);

    static void Main(string[] args)
    {
        mciSendString("open new Type waveaudio Alias recsound", "", 0, 0);
        mciSendString("record recsound", "", 0, 0);
        Console.WriteLine("recording, press Enter to stop and save ...");
        Console.ReadLine();

        mciSendString("save recsound c:\\work\\result.wav", "", 0, 0);
        mciSendString("close recsound ", "", 0, 0);
    }
}

Another option is to use the DirectShowNet library (there's a sample called PlayCap).

You might also find this CodeProject article useful.


I'm using the this library: http://www.codeproject.com/KB/cs/Streaming_wave_audio.aspx Mainly due to the simple api. But I don't like this code too much. For example it fixes it's buffers in memory for a long time instead of allocating unmanaged buffers.


mciSendString function records only microphone sound. if no mic is connected it will record nothing.

0

精彩评论

暂无评论...
验证码 换一张
取 消