I have a buffer of raw audio coming from AudioRecord and I want to convert it to mp3 or any other format for emailing it.
Asked
Active
Viewed 1,265 times
2 Answers
0
You could probably compile http://lame.sourceforge.net/ as a jni library.
Be sure to read and understand http://lame.sourceforge.net/license.txt
I'm sure someone has some java encoder you could use if you aren't talking about tons of data.

Chris Stratton
- 39,853
- 6
- 84
- 117
0
You might look at JLayer (http://www.javazoom.net/javalayer/javalayer.html) from JavaZoom. It's 100% Java and I think it will do what you want.
Good luck.

cjstehno
- 13,468
- 4
- 44
- 56
-
As far as I understand javalayer is decoder only - not encoding. maybe I'm wrong. – Eli Konky Oct 13 '10 at 08:15