Routing multiple effects in the Webaudio API
问题 this.source.connect(this.filter); // Filter set to eq value 200 this.source.connect(this.convolver); this.source.connect(this.dry); this.convolver.connect(this.wet); // Convolver is the actual convolver this.filter.connect( context.destination ); this.dry.connect(context.destination); // Dry is a gain (at 1) this.wet.connect(context.destination); // Wet is a gain (at 1) As soon as I wanted to add a filter things got utterly confusing. You can assume that the filters and everything are set up