Click here to Skip to main content
15,879,474 members
Articles / Programming Languages / C++
Article

Simple audio recording program

Rate me:
Please Sign up or sign in to vote.
4.18/5 (31 votes)
12 Jul 20071 min read 400.5K   18.5K   83   109
Simplest way to record sound...

Sample Image - SoundRecord.jpg

Introduction

This sample program make use of waveInxxxx functions to read from an audio input device like a sound card and write it to a .wav file using mmioxxx functions. It is one of the simplest way to record sound with all the format capabilities supported by the hardware device

Initially, by using waveInGetNumDevs, we can find all the devices and then by using waveInGetDevCaps, we can find the formats it is supported.

To start recording, first select a device and then open the device with waveInOpen API call with the specified format (i.e. 16 bit etc). The output file is also prepared with all the headers filled in properly. Here i am using only PCM format which is easy. If you have more codecs installed on your PC, you can change that one also. But be sure that you supplied the proper values in the WAVEFORMATEX structure.

waveIn needs buffers to start recording. It is better to give more buffers for buffering to avoid any delays. I have used 3 here, but you can add more if your PC needs more time in writing to the HDD and thus causing the delay. Once the buffers are added in the queue, waveInStart will start recording. For each data chunk, the callback function specified in the waveinOpen will get the buffers. Just write it to the file and mark the buffer again for recording by calling the same addbuffer fn.

Once done with recording, adjust the chunk headers using the mmioascend APIs. Thats it.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Software Developer (Senior)
United States United States
I am from the beautiful sea side town called Kochi ( cochin), Kerala, South India.

Comments and Discussions

 
Generalwriting audio to serial port Pin
abhishek50500426-Mar-10 20:27
abhishek50500426-Mar-10 20:27 
GeneralRe: writing audio to serial port Pin
Saneesh21-Apr-10 5:22
Saneesh21-Apr-10 5:22 
GeneralTimer is not working when recording a sound Pin
NightBeforeChirstmas13-Jan-10 22:32
NightBeforeChirstmas13-Jan-10 22:32 
GeneralRe: Timer is not working when recording a sound Pin
Saneesh14-Jan-10 3:34
Saneesh14-Jan-10 3:34 
Questionsegmenting the output Pin
wui ngiap2-Oct-09 4:56
wui ngiap2-Oct-09 4:56 
GeneralWaveinaddBuffer returns 33! Pin
albertinho8624-Sep-09 3:48
albertinho8624-Sep-09 3:48 
GeneralRe: WaveinaddBuffer returns 33! Pin
Saneesh30-Sep-09 5:45
Saneesh30-Sep-09 5:45 
GeneralRe: WaveinaddBuffer returns 33! Pin
albertinho8630-Sep-09 11:14
albertinho8630-Sep-09 11:14 
GeneralRecording Audio Output [modified] Pin
sairamdp12-Jun-09 21:11
sairamdp12-Jun-09 21:11 
GeneralRe: Recording Audio Output Pin
Saneesh14-Jun-09 3:11
Saneesh14-Jun-09 3:11 
GeneralCalling waveInAddBuffer from waveInProc Pin
GMV21-May-09 11:39
GMV21-May-09 11:39 
GeneralRe: Calling waveInAddBuffer from waveInProc Pin
Saneesh22-May-09 4:05
Saneesh22-May-09 4:05 
GeneralRe: Calling waveInAddBuffer from waveInProc Pin
GMV22-May-09 11:17
GMV22-May-09 11:17 
GeneralRe: Calling waveInAddBuffer from waveInProc Pin
Saneesh1-Jun-09 16:24
Saneesh1-Jun-09 16:24 
GeneralNEED VC6 Version Pin
wakaley16-Mar-09 23:36
wakaley16-Mar-09 23:36 
GeneralRe: NEED VC6 Version Pin
Saneesh17-Mar-09 4:19
Saneesh17-Mar-09 4:19 
GeneralUsing your program Pin
w1e2i312-Jan-09 19:03
w1e2i312-Jan-09 19:03 
GeneralRe: Using your program Pin
Saneesh13-Jan-09 4:21
Saneesh13-Jan-09 4:21 
GeneralMemory Leak Pin
yktan15-Dec-08 1:37
yktan15-Dec-08 1:37 
GeneralRe: Memory Leak Pin
Saneesh15-Dec-08 8:08
Saneesh15-Dec-08 8:08 
GeneralI need VC6 version pls... Pin
krishna Vuppala1-Nov-08 22:29
krishna Vuppala1-Nov-08 22:29 
GeneralRe: I need VC6 version pls... Pin
Saneesh3-Nov-08 9:41
Saneesh3-Nov-08 9:41 
GeneralRe: I need VC6 version pls... Pin
Member 870123527-Apr-12 22:48
Member 870123527-Apr-12 22:48 
QuestionHow can i add my own format to the drop down Pin
Member 465536511-Jul-08 0:36
Member 465536511-Jul-08 0:36 
AnswerRe: How can i add my own format to the drop down Pin
Saneesh13-Jul-08 16:11
Saneesh13-Jul-08 16:11 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.