https://github.com/ImJimmi/Contrast
A bundle of free, open-source audio plugins built with the JUCE framework.
https://github.com/ImJimmi/Contrast
Last synced: about 2 months ago
JSON representation
A bundle of free, open-source audio plugins built with the JUCE framework.
- Host: GitHub
- URL: https://github.com/ImJimmi/Contrast
- Owner: ImJimmi
- License: mit
- Created: 2020-06-12T12:34:59.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2023-06-03T21:04:26.000Z (about 2 years ago)
- Last Synced: 2024-11-14T20:38:25.027Z (8 months ago)
- Language: C++
- Size: 177 KB
- Stars: 12
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGES.md
- License: LICENSE
Awesome Lists containing this project
- awesome-juce - Contrast - ins| MIT|12| 2 years<sub><sup>🟠</sup></sub>| (Effects)
README
# CONTRAST
A bundle of free, open-source audio plug-ins built with [JUCE](https://juce.com/).
[](LICENSE)
[](https://github.com/ImJimmi/Contrast/actions)
## PLUG-INS

[CHANGES](CHANGES.md)
[](https://github.com/ImJimmi/Contrast/releases/latest)
| NAME | DESCRIPTION |
| ------ | ----------- |
| [GATE](Gate/) | Look-ahead noise gate with attack and release. |
| [PITCH](Pitch/) | Pitch shifter. |
| [PRESS](Press/) | Straightforward compressor. |
| [VERB](Verb/) | Straightforward mono or stereo reverb. |## REQUIREMENTS
### 
- VST3 or AU compatible host
- OSX 10.7 or later### 
- VST3 compatible host
- Windows 7 or later## INSTALLING
1. [Download Latest Version](https://github.com/ImJimmi/Contrast/releases/latest)
2. Extract files to relevant directories:### 
| FORMAT | DIRECTORY |
| ------ | --------- |
| VST3 | `~/Library/Audio/Plug-Ins/VST3`
`Macintosh HD/Library/Audio/Plug-Ins/VST3` |
| AU | `~/Library/Audio/Plug-Ins/Components`
`Macintosh HD/Library/Audio/Plug-Ins/Components` |### 
| FORMAT | DIRECTORY |
| ------ | --------- |
| VST3
x64 | `C:\Program Files\Common Files\VST3` |
| VST3
Win32 (x86) | `C:\Program Files(x86)\Common Files\VST3` |## BUILDING
```bash
git clone --recurse-submodules [email protected]:ImJimmi/Contrast.git
cd Contrast
```### 
```bash
code .
```- (Recommended) Install [C/C++ Extension Pack](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools-extension-pack)
### 
```bash
cmake -Bbuild -GXcode
```- Open `build/contrast.xcodeproj`
### 
```bash
cmake -Bbuild
```- Open `build/contrast.sln`
### 
```bash
cmake -Bbuild -GNinja
cmake --build build --config Debug
```