Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/brettbuddin/reverb
🚂 A toy convolution reverb program.
https://github.com/brettbuddin/reverb
Last synced: 5 days ago
JSON representation
🚂 A toy convolution reverb program.
- Host: GitHub
- URL: https://github.com/brettbuddin/reverb
- Owner: brettbuddin
- License: apache-2.0
- Created: 2019-06-03T16:08:25.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-06-05T17:48:13.000Z (over 5 years ago)
- Last Synced: 2024-06-20T15:49:16.390Z (7 months ago)
- Language: Go
- Homepage:
- Size: 10.7 KB
- Stars: 7
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# reverb
This is a toy convolution reverb program. It uses [fourier](https://github.com/brettbuddin/fourier) to convolve an
impulse response with an input sound. It supports WAV and AIFF file formats.## Example
```
# Download some impulses and a goat
wget http://www.airwindows.com/wp-content/uploads/2014/08/AirwindowsImpulses.zip -O impulses.zip && unzip impulses.zip -d impulses
wget http://www.wavsource.com/snds_2018-06-03_5106726768923853/animals/goat.wav -O goat.wav# Install sox and resample the goat to 44.1kHz
brew install sox
sox goat.wav --norm -r 44100 goat-44100.wav rate# Space goat!
reverb goat-44100.wav impulses/RoomHuge.aiff space-goat.wav
```