4

Is there AMR to WAV , WAV to AMR converter available written Java? I need to do conversion in realtime. Looking for open source, free or paid.

Thanks.

bakkal
  • 54,350
  • 12
  • 131
  • 107
sohilv
  • 1,712
  • 2
  • 16
  • 21
  • http://stackoverflow.com/questions/2559746/getting-error-while-converting-wav-to-amr-using-ffmpeg – sohilv Aug 11 '10 at 15:16

1 Answers1

3

Your best bet would be to call ffmpeg from within Java. Sadly, I don't know of a good solution which is java-only, but using ffmpeg allows you to use the wide range of codecs available to this program (which includes AMR support).

Nik Reiman
  • 39,067
  • 29
  • 104
  • 160
  • This works for me on Ubuntu 17.10: `Process p = Runtime.getRuntime().exec(new String[] { "bash", "-c", "ffmpeg -i /home/absin/Downloads/1234.amr /home/absin/Downloads/1234.wav" });` After doing `sudo apt install ffmpeg` ofcourse! – absin May 21 '18 at 16:50