0az
0az

Reputation: 360

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?

Upvotes: 1

Views: 2237

Answers (1)

Mrab Ezreb
Mrab Ezreb

Reputation: 440

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.

Upvotes: 3

Related Questions