Reputation: 3848
Hi folks I am planning on recording audio, and later play it back, for on of my projects. The requirement is that it should be c++ ( Visual studio 2008 ) compatible. Rest of our application is mostly in silverlight/ VC++. I have worked with NAudio before in C#, but nothing on vc++.
I would like to know what is best suited for my needs :
Can you suggest something that would be best for me ? Thank you in advance!
Upvotes: 0
Views: 836
Reputation: 490048
Probably the easiest way is using MCI. Basically, you can use mciSendCommand
(or mciSendString
) to send an MCI_RECORD
command to do recording, or an MCI_PLAY
to do playback.
Upvotes: 1