Reputation: 360
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
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