Creating a custom echo node with web-audio
问题 I'm playing with the webkit Audio API and I'm trying to create an Echo effect, to accomplish that I've connected a DelayNode with a GainNode in a loop (The output of one is the input of the other, and viceversa). The effect works fine, but now I want to create an EchoNode Object that I can just plug-in and connect with the other AudioNode objects. Something like: myEchoNode = new EchoNode(); myConvolverNode = context.createConvolver(); myConvolverNode.connect(myEchoNode); I think that I