Valhalla Legends Archive

Programming => General Programming => C/C++ Programming => Topic started by: Zorm on October 20, 2003, 08:19 PM

Title: Recording from line in?
Post by: Zorm on October 20, 2003, 08:19 PM
Anyone happen to know how to record from line in using C++? Would like to save it to mp3 but I can deal with saving it to wav and converting.
Title: Re:Recording from line in?
Post by: Adron on October 21, 2003, 03:46 AM
As with everything, there are several ways. I've used two of them.

You can use MCI (http://msdn.microsoft.com/library/default.asp?url=/library/en-us/multimed/htm/_win32_mci_record.asp) which is simple and not very powerful at all. Send a command to start recording to a file, another to stop.

You can use the low level (http://msdn.microsoft.com/library/default.asp?url=/library/en-us/multimed/htm/openingwaveformaudioinputdevices.asp) audio functions - much more powerful. You pass buffers to the sound card, it fills them with wave input data. These are what I mostly use for capturing sound.

You could probably also use DirectSound/DirectShow, which might enable you to both capture and encode audio in realtime. I have no experience with doing that programmatically though.


To switch to the right input, you might want to use the audio mixer services (http://msdn.microsoft.com/library/default.asp?url=/library/en-us/multimed/htm/openingwaveformaudioinputdevices.asp)

It seems that the Audio Compression Manager (http://msdn.microsoft.com/library/default.asp?url=/library/en-us/multimed/htm/_win32_converting_data_from_one_format_to_another.asp) might allow you to do the mp3 encoding programmatically, if you have such a codec. Many applications use LAME (http://lame.sf.net) instead.
Title: Re:Recording from line in?
Post by: Zorm on October 21, 2003, 10:21 AM
Thanks Adron great information. +1
Title: Re:Recording from line in?
Post by: Adron on October 21, 2003, 04:13 PM
Actually, I forgot to ask what OS it was for, I just assumed Windows. For linux, I have a fully working recording app that reads from line in and writes mp3 files using a forked lame.
Title: Re:Recording from line in?
Post by: Banana fanna fo fanna on October 21, 2003, 07:39 PM
If you are looking for apps to do it, LAME, Winamp, and Cooledit can do it rather well.