├── .gitignore ├── LICENSE.txt ├── README.md ├── deploy.bat ├── drysounds ├── Cello.wav ├── Half-time Drums.wav ├── Heavy Rock Drums.wav ├── Male Speaker.wav └── Pizzicato.wav ├── index.html ├── main.css ├── main.js ├── package.json └── reverbgen.js /.gitignore: -------------------------------------------------------------------------------- 1 | # Emacs backup files 2 | *~ 3 | 4 | #npm 5 | *.tgz 6 | -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adelespinasse/reverbGen/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adelespinasse/reverbGen/HEAD/README.md -------------------------------------------------------------------------------- /deploy.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adelespinasse/reverbGen/HEAD/deploy.bat -------------------------------------------------------------------------------- /drysounds/Cello.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adelespinasse/reverbGen/HEAD/drysounds/Cello.wav -------------------------------------------------------------------------------- /drysounds/Half-time Drums.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adelespinasse/reverbGen/HEAD/drysounds/Half-time Drums.wav -------------------------------------------------------------------------------- /drysounds/Heavy Rock Drums.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adelespinasse/reverbGen/HEAD/drysounds/Heavy Rock Drums.wav -------------------------------------------------------------------------------- /drysounds/Male Speaker.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adelespinasse/reverbGen/HEAD/drysounds/Male Speaker.wav -------------------------------------------------------------------------------- /drysounds/Pizzicato.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adelespinasse/reverbGen/HEAD/drysounds/Pizzicato.wav -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adelespinasse/reverbGen/HEAD/index.html -------------------------------------------------------------------------------- /main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adelespinasse/reverbGen/HEAD/main.css -------------------------------------------------------------------------------- /main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adelespinasse/reverbGen/HEAD/main.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adelespinasse/reverbGen/HEAD/package.json -------------------------------------------------------------------------------- /reverbgen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adelespinasse/reverbGen/HEAD/reverbgen.js --------------------------------------------------------------------------------