Is there a way to convert a mp3 audio file into a wav audio file in java without using external libraries?
Asked
Active
Viewed 2,190 times
1
-
by "external libraries", do you mean no libraries that need natives or no java libraries? – Mrab Ezreb May 15 '15 at 18:06
-
obviously there is, but it is complicated. That's why somebody made JLayer, so that not everybody has to bother with the complication – Mrab Ezreb May 15 '15 at 18:29
1 Answers
3
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.

Mrab Ezreb
- 440
- 5
- 15
-
Please refer following existing question with answer to your problem http://stackoverflow.com/questions/14085199/mp3-to-wav-conversion-in-java – gujralam May 15 '15 at 18:11
-
Do you mean to post JLayer as an answer there or put that into my answer here? – Mrab Ezreb May 15 '15 at 18:14