Search code examples
javaaudiojavasound

Convert mp3 to WAVE in java without external libraries


Is there a way to convert a mp3 audio file into a wav audio file in java without using external libraries?


Solution

  • If you want to tell java "hey, convert an mp3 file", it won't do that, because it isn't made for mp3.
    If, however, you are comfortable with using a purely java library, then check out JLayer. I have used it myself and it worked wonderfully.