I'm trying to use JavaScript to display the waveform for and audio file (something like this), but I don't even know how to get started. I found the Audio Data API, but am unfamiliar with most audio terms and don't really know what is provided or how to manipulate it. I found examples of waveforms in JavaScript, but they are too complicated/I can't comprehend what is going on. Then my question is: how can you use JavaScript to create a waveform of a song on canvas, and what exactly is the process behind it?

link|improve this question

67% accept rate
According to this, you can't, but it is relatively old and things could have changed since then: mrdoob.com/blog/post/677 – Andrew M May 29 '11 at 20:23
A waveform is nothing special it's has mostly a value between -127 and +127. It shouldn't be too complicated to make a function in js. Do you know the Open Office Calc function to print a 2 dimensional diagram? – Chibox May 29 '11 at 20:27
1  
Well I know it's possible if you use the audio data api (currently only available in FF4+), I just would like and explanation of how and why it works, and hopefully a simpler implementation of it. A demo is here: videos-origin.mozilla.org/serv/blizzard/audio-slideshow/#slide4 – Alex Nolan May 29 '11 at 20:32
Ah, so it is a really new API – Andrew M May 29 '11 at 22:26
feedback

2 Answers

Here's some sample code from my book (HTML5 Multimedia: Develop and Design) that does exactly that; Audio Waveform. It uses the Mozilla Audio Data API.

The code simply takes snapshots of the audio data and uses it to draw on the canvas.

link|improve this answer
feedback

Not well supported yet but take a look at this Firefox tone generator.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.