Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'd like to access the audio data in the output/destination buffer. To be specific I would like to save the data to a file. I would also like to add custom effects as AudioNode's.

How can I achieve this with the Web Audio API? I don't see an AudioDestinationBuffer interface or a way to add a custom AudioNode in the specs.

share|improve this question

1 Answer

up vote 3 down vote accepted

You'll have to add one of these http://www.w3.org/TR/webaudio/#JavaScriptAudioNode right before connecting to the destination.

This will give you access to the raw audio data, and any processing made by effect nodes etc. will already be applied. Just make sure this is the very last node before the destination.

Here's a little something on how you use the JavaScriptAudioNode http://www.html5rocks.com/en/tutorials/webaudio/games/#toc-clip-detect, which I hope will illustrate how to access the audio data.

share|improve this answer
Also, this node is what you'd use to write those custom effects. – Oskar Eriksson Jul 2 '12 at 8:04
Thanks Oskar! I already saw your app Plink. Very inspiring :) – Fair Dinkum Thinkum Jul 2 '12 at 12:35
Does anyone know if the JavascriptAudioNode has been deprecated? I don't see it anywhere in the documentation. – Manny Jan 31 at 1:54
Yepp, it's being replaced by this: dvcs.w3.org/hg/audio/raw-file/tip/webaudio/… - I'm not sure about the state of implementation though. – Oskar Eriksson Jan 31 at 10:47

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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