Skip to main content

Notice

Please note that most of the software linked on this forum is likely to be safe to use. If you are unsure, feel free to ask in the relevant topics, or send a private message to an administrator or moderator. To help curb the problems of false positives, or in the event that you do find actual malware, you can contribute through the article linked here.
Topic: MP3 Decoding in C (Read 4121 times) previous topic - next topic
0 Members and 1 Guest are viewing this topic.

MP3 Decoding in C

Hi,

I'm trying to look into mp3 decoding.

I'd like to have a working source code which compiles in Visual Studio C++ to an EXE that will do the decoding / play an MP3.

I've tried MP3 Tech but there stuff is mostly for linux machines :-(

Thanks

Rob

MP3 Decoding in C

Reply #1
Look at mpglib.


MP3 Decoding in C

Reply #3
Quote
I've tried MP3 Tech but there stuff is mostly for linux machines :-(

Don't be too concerned about it being for Linux.  Be more concerned about it working right and giving accurate output.

Most simple stuff for Linux just means it's a generic program that runs from a command line:  mp3dec input.mp3 output.wav

It should be standard ANSI/ISO C, so you shouldn't have too much trouble compiling it on any platform.

MP3 Decoding in C

Reply #4
The MAD lib stuff compiles, but trying to get Madplay to compile fails becuase of zlib being missing.

Anyone have a copy ready for compiling with MAD?

Thanks

Sorry to be a pain