tags:

views:

769

answers:

3

I need help converting WAV files to MP3 format in VB6. I did already find source code in C#, but I can't use that

+2  A: 

AFAIK, MP3 compression is under a patent, you can do that legally only by buying a license.

Or, like many other softwares, use the Lame DLL without distributing it but asking to download it in a site not under the same laws...

Somehow, that's how Opera does with GPL software: they don't provide spelling correction out of the box but they instruct to download and install aspell...

Note you can use free alternatives, like Ogg Vobis, it depends on your purpose.

PhiLho
You can only sell commercial software that does MP3 encoding by licensing from Frauenhofer (decoding is OK). Personal use does not require a license.
MusiGenesis
I might have that backwards (it might be that decoding needs the license but encoding does not). Either way, it doesn't apply to personal use.
MusiGenesis
I don't know what you call "personal use", but even freewares I get on Internet doesn't provide MP3 compression out of the box. Now, I am not a lawyer... But indeed, that's compression which under license, decompression is free. A bit like Rar compression format.
PhiLho
+5  A: 

Here is a code example from the greatest programmer on Earth (Google):

VB6 Lame MP3 Encoder

Don't let the word "lame" fool you - it stands for "LAme Mp3 Encoder", I think.

MusiGenesis
A: 

thanks for your useful comments. best regards