Generating an mp3/wav/ogg Waveform using Java

user962206 picture user962206 · Nov 3, 2012 · Viewed 10.7k times · Source

Like soundcloud and zippyshare1, how can I generate an audio waveform image using java? are there any frameworks or open source libraries available for such case?

I wanted to generate an audio waveform as an image, and upon loading a track, the waveform image with will be loaded.


  1. enter image description here

Answer

Andrew Thompson picture Andrew Thompson · Nov 3, 2012

Start with this answer. The "further processing.." in this case might be to add each instantaneous value to a GeneralPath, then (scale that path to fit within the painting area and) draw it.