Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 3 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 (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-06-03T21:04:26.000Z (over 1 year ago)
- Last Synced: 2024-05-12T04:32:54.219Z (6 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: MIT](https://img.shields.io/github/license/ImJimmi/Contrast?style=for-the-badge)](LICENSE)
[![GitHub Workflow Status](https://img.shields.io/github/workflow/status/ImJimmi/Contrast/CMake?logo=github&style=for-the-badge)](https://github.com/ImJimmi/Contrast/actions)
![GitHub last commit](https://img.shields.io/github/last-commit/ImJimmi/Contrast?style=for-the-badge)## PLUG-INS
![GitHub release (latest by date)](https://img.shields.io/github/v/release/ImJimmi/Contrast?label=LATEST%20VERSION&style=for-the-badge)
![GitHub Release Date](https://img.shields.io/github/release-date/ImJimmi/Contrast?style=for-the-badge)[CHANGES](CHANGES.md)
[![Download](https://img.shields.io/github/v/release/ImJimmi/Contrast?label=DOWNLOAD&style=for-the-badge&logo=GitHub&color=success)](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
### ![Mac OS](https://img.shields.io/badge/mac%20os-000000?style=for-the-badge&logo=apple&logoColor=F0F0F0)
- VST3 or AU compatible host
- OSX 10.7 or later### ![Windows](https://img.shields.io/badge/Windows-0078D6?style=for-the-badge&logo=windows&logoColor=white)
- 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:### ![Mac OS](https://img.shields.io/badge/mac%20os-000000?style=for-the-badge&logo=apple&logoColor=F0F0F0)
| 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` |### ![Windows](https://img.shields.io/badge/Windows-0078D6?style=for-the-badge&logo=windows&logoColor=white)
| 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
```### ![Visual Studio Code](https://img.shields.io/badge/Visual%20Studio%20Code-0078d7.svg?style=for-the-badge&logo=visual-studio-code&logoColor=white)
```bash
code .
```- (Recommended) Install [C/C++ Extension Pack](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools-extension-pack)
### ![Xcode](https://img.shields.io/badge/Xcode-007ACC?style=for-the-badge&logo=Xcode&logoColor=white)
```bash
cmake -Bbuild -GXcode
```- Open `build/contrast.xcodeproj`
### ![Visual Studio](https://img.shields.io/badge/Visual%20Studio-5C2D91.svg?style=for-the-badge&logo=visual-studio&logoColor=white)
```bash
cmake -Bbuild
```- Open `build/contrast.sln`
### ![CMake](https://img.shields.io/badge/CMake-%23008FBA.svg?style=for-the-badge&logo=cmake&logoColor=white)
```bash
cmake -Bbuild -GNinja
cmake --build build --config Debug
```