mahdi
mahdi

Reputation:

Converting WAV files to MP3 using VB6?

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

Upvotes: 1

Views: 2126

Answers (2)

MusiGenesis
MusiGenesis

Reputation: 75296

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.

Upvotes: 5

PhiLho
PhiLho

Reputation: 41132

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.

Upvotes: 2

Related Questions