Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://michaelwillis.github.io/dragonfly-reverb/
A set of free reverb effects
https://michaelwillis.github.io/dragonfly-reverb/
dpf dsp freeverb lv2 lv2-plugin reverb vst
Last synced: about 2 months ago
JSON representation
A set of free reverb effects
- Host: GitHub
- URL: https://michaelwillis.github.io/dragonfly-reverb/
- Owner: michaelwillis
- License: gpl-3.0
- Created: 2017-11-11T16:42:14.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2024-04-27T17:53:14.000Z (8 months ago)
- Last Synced: 2024-05-21T12:43:00.201Z (7 months ago)
- Topics: dpf, dsp, freeverb, lv2, lv2-plugin, reverb, vst
- Language: C++
- Homepage: https://michaelwillis.github.io/dragonfly-reverb
- Size: 29.8 MB
- Stars: 860
- Watchers: 34
- Forks: 65
- Open Issues: 18
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
- awesome-my-raspberrypi-micro-desktop - Dragonfly Reverb - Set of free reverb effects_ (Creative List / Digital Audio Workstation)
- awesome-silicon-plugins - Dragonfly Reverbs
README
# [Dragonfly Reverb](https://michaelwillis.github.io/dragonfly-reverb/)
Dragonfly Reverb is a bundle of free audio effects for Linux, MacOS, and Windows.![Dragonfly Reverb](collage.png)
## Download
* **[Linux](https://github.com/michaelwillis/dragonfly-reverb/releases/download/3.2.10/dragonfly-reverb-linux-x86_64-3.2.10.zip)**
* **[MacOS](https://github.com/michaelwillis/dragonfly-reverb/releases/download/3.2.10/dragonfly-reverb-mac-universal-3.2.10.zip)**
* **[Windows (32 bit)](https://github.com/michaelwillis/dragonfly-reverb/releases/download/3.2.10/dragonfly-reverb-win32-3.2.10.zip)**
* **[Windows (64 bit)](https://github.com/michaelwillis/dragonfly-reverb/releases/download/3.2.10/dragonfly-reverb-win64-3.2.10.zip)**## Dependencies
Dragonfly reverb requires GL >= 3.0 to show the graphical interface.
## Building
On Linux or MacOS, invoke the following commands to build Dragonfly
Reverb.```
git submodule update --init --recursive
make
```### Linux Build Dependencies
* libx11-dev
* libxext-dev
* libxrandr-dev
* libgl1-mesa-dev
* libjack-jackd2-devYou can build against the system freeverb3 with using SYSTEM_FREEVERB3=true at build time. If this flag is not set, the bundled freeverb3 will be used. If SYSTEM_FREEVERB3=true, the build also requires libsamplerate.
### Cross compiling for Windows (on Linux)
#### Dependencies
```
sudo apt install wine i686-w64-mingw32-gcc i686-w64-mingw32-g++ x86_64-w64-mingw32-gcc x86_64-w64-mingw32-g++
```#### 32 bit
```
make clean
make CC=i686-w64-mingw32-gcc CXX=i686-w64-mingw32-g++
```#### 64 bit
```
make clean
make CC=x86_64-w64-mingw32-gcc CXX=x86_64-w64-mingw32-g++
```## License
Dragonfly Reverb is distributed under the [GPL 3.0 License](https://www.gnu.org/licenses/gpl-3.0.en.html)