Click here to Skip to main content
15,867,568 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 399.3K   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

 
GeneralVC V6 Pin
dave7dave7-Oct-07 12:09
dave7dave7-Oct-07 12:09 
GeneralRe: VC V6 Pin
Saneesh4-Jan-08 6:08
Saneesh4-Jan-08 6:08 
GeneralVB.NET Pin
BIRDENT30-Jul-07 21:38
BIRDENT30-Jul-07 21:38 
GeneralRe: VB.NET Pin
Saneesh31-Jul-07 5:56
Saneesh31-Jul-07 5:56 
GeneralSaving sound (*wav) into access database Pin
indray2j16-Jul-07 22:31
indray2j16-Jul-07 22:31 
GeneralRe: Saving sound (*wav) into access database Pin
Saneesh17-Jul-07 4:07
Saneesh17-Jul-07 4:07 
GeneralRe: Saving sound (*wav) into access database Pin
indray2j17-Jul-07 20:14
indray2j17-Jul-07 20:14 
GeneralComplete Program.. Pin
indray2j8-Jul-07 22:05
indray2j8-Jul-07 22:05 
GeneralRe: Complete Program.. Pin
Saneesh9-Jul-07 4:18
Saneesh9-Jul-07 4:18 
GeneralRe: Complete Program.. Pin
indray2j10-Jul-07 21:47
indray2j10-Jul-07 21:47 
GeneralRe: Complete Program.. Pin
Saneesh11-Jul-07 4:04
Saneesh11-Jul-07 4:04 
GeneralRe: Complete Program.. Pin
indray2j12-Jul-07 3:46
indray2j12-Jul-07 3:46 
GeneralRe: Complete Program.. Pin
Saneesh12-Jul-07 5:02
Saneesh12-Jul-07 5:02 
GeneralRe: Complete Program.. Pin
indray2j13-Jul-07 2:27
indray2j13-Jul-07 2:27 
GeneralRe: Complete Program.. Pin
Member 870123527-Apr-12 20:49
Member 870123527-Apr-12 20:49 
Generaloutput wav can't play on Vista Pin
binsonl4-May-07 7:35
binsonl4-May-07 7:35 
GeneralRe: output wav can't play on Vista Pin
Saneesh4-May-07 16:46
Saneesh4-May-07 16:46 
GeneralRe: output wav can't play on Vista Pin
binsonl4-May-07 17:17
binsonl4-May-07 17:17 
GeneralRe: output wav can't play on Vista Pin
GabeON6-May-07 5:07
GabeON6-May-07 5:07 
GeneralRe: output wav can't play on Vista Pin
binsonl7-May-07 2:18
binsonl7-May-07 2:18 
QuestionRe: output wav can't play on Vista Pin
Saneesh16-May-07 12:58
Saneesh16-May-07 12:58 
AnswerRe: output wav can't play on Vista Pin
binsonl16-May-07 20:37
binsonl16-May-07 20:37 
GeneralRe: output wav can't play on Vista Pin
Saneesh17-May-07 4:11
Saneesh17-May-07 4:11 
GeneralRe: output wav can't play on Vista Pin
binsonl17-May-07 8:02
binsonl17-May-07 8:02 
GeneralFormat combo box Pin
chris_mezzanine5-Feb-07 4:14
chris_mezzanine5-Feb-07 4:14 

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.