https://github.com/linuxmao-org/fogpad-port
A reverb effect in which the reflections can be frozen, filtered, pitch shifted and ultimately disintegrated (unofficial port)
https://github.com/linuxmao-org/fogpad-port
dpf
Last synced: about 1 year ago
JSON representation
A reverb effect in which the reflections can be frozen, filtered, pitch shifted and ultimately disintegrated (unofficial port)
- Host: GitHub
- URL: https://github.com/linuxmao-org/fogpad-port
- Owner: linuxmao-org
- License: mit
- Created: 2019-12-27T20:17:25.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-06-16T08:54:07.000Z (about 6 years ago)
- Last Synced: 2025-04-09T14:05:02.750Z (about 1 year ago)
- Topics: dpf
- Language: C++
- Homepage:
- Size: 211 KB
- Stars: 10
- Watchers: 4
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Fogpad
[](https://travis-ci.com/linuxmao-org/fogpad-port)
A reverb effect in which the reflections can be frozen, filtered, pitch shifted and ultimately disintegrated
## About
This is a port of the [Fogpad plugin created by Igorski](https://github.com/igorski/fogpad).
It is based on the DISTRHO plugin framework (DPF) to provide support of
GNU/Linux and other platforms.
Based on the upstream revision: d5b2a27
## Downloads
**Development**
- All: download from [Automatic builds](https://github.com/linuxmao-org/fogpad/releases/tag/automatic).
## Build instructions
1. Obtain prerequisites
Install needed packages:
- `git`
- `build-essential`
- `pkg-config`
- `libx11-dev`
- `libcairo2-dev`
- `libjack-jackd2-dev` or `libjack-dev`
- `mesa-common-dev`
2. Check out the repository and submodules
```
git clone https://github.com/linuxmao-org/fogpad.git
cd fogpad
git submodule update --init
```
3. Compile
```
make
```
4. Install
```
sudo make install # to install in system directories, or
make install-user # to install in the home directory
```
## Changelog
**v1.0.0**
This is an initial version of the Fogpad port, a cross-platform audio plugin.
This distinguishes from upstream Fogpad in some ways:
- adopted a version numbering scheme
- implemented portably on top of the DISTRHO plugin framework
- changed sample rate to no longer be a global variable of the plugin
- fixed a bug which disregards the host sample rate, running the effect as default 44.1 kHz