Adding a reverb effect to my audio file

I am looking for javascript code that causes the reverb of an audio file. An audio file is a recorded audio file using html5.I want to be able to add a reverb effect to this file. I tried to find google for anycode. but couldn’t find or sometimes find something hard to follow if someone can help

+4
source share
2 answers

There are several libraries on github that allow you to:

https://github.com/web-audio-components/simple-reverb

https://github.com/Dinahmoe/tuna

What they eventually do is use the AudioContext api to create a convolution (which is also an option if you don't want to use libraries).

Principle:

1.) Ajax, AudioContext.decodeAudioData, .

2.) .destination, .createConvolver()

audioContext api :

https://developer.mozilla.org/en-US/docs/Web/API/AudioContext.createConvolver

+4

2015: <audio> HTML5 . API -.

( , ..), Web Audio API node, , , . ( , ). node , - , .

, node - API Reverb.js (http://reverbjs.org). Creative Commons, , . Base64, / HTML-. , , .

+1

All Articles