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.
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.
Thanks Adron great information. +1
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.
If you are looking for apps to do it, LAME, Winamp, and Cooledit can do it rather well.