tags:

views:

244

answers:

1

Possible Duplicate:
C\C++ open source Mp3 to PCM convertor

What I want is some kind of library that can take an MP3 file and return the PCM as values (as numbers like 15, 654, 110, 4, ... ).

No matter how long. It just returns them as values on their own or in an array and I don't care about other types (e.g. Ogg and WAV) and the like and also it doesn't matter to hear it play but if it could be done it would be welcome. In other words:

Input = Just a simple directory (to the MP3 file).

Output = A punch of values that represent the PCM of that MP3 file.

P.S.: Take it easy I am still a noob :) ...

+1  A: 

Take a look at the answers to C\C++ open source Mp3 to PCM convertor which give you a starting point.

Paul Dixon