An open API service indexing awesome lists of open source software.

https://github.com/azur1s/penare

(VST3/CLAP) A wonky distortion plugin
https://github.com/azur1s/penare

audio-processing nih-plug rust vst3

Last synced: about 1 year ago
JSON representation

(VST3/CLAP) A wonky distortion plugin

Awesome Lists containing this project

README

          

# Penare

A free wonky distortion plugin :3

![UI](assets/ui_0.2.1.png)

## Installing
For Windows:
1. Get the lastest release from the [here](https://github.com/azur1s/penare/releases)
2. Unzip and find the `.vst3` or `.clap` file inside and move it to your VST3/CLAP directory. Usually it would be `C:\Program Files\Common Files\VST3` for Windows.
3. Re-scan your plugins in your DAW if needed

For MacOS:
1. Do the same as Windows
2. If MacOS thinks that I'm a evil virus programmer 😈 and you don't believe I am 😇 then you can run this command in terminal:
```shell
# Replace `PATH_TO_PLUGIN` to where your plugin is
xattr -cr PATH_TO_PLUGIN
```
Otherwise, if you don't trust me, then don't do it

## Features
- Pre and post gain control (no way)
- Symmetric and Asymmetric waveshaping!
- Filter control (like which range the distortion is applied) and you can mix it back afterward :O

## Contributing

Here's some features I want to add:
- Presets loading/saving systems
- Waveform visualizer
- Filters visualizer
- LFO/ADSR to modulate the sliders (I don't know how to do that)

The [`debug.ps1`](debug.ps1) is for me to use. Although you can use it, if it works.

Use this to compile to VST3 and CLAP.

```shell
# Debug build, huge file size
cargo xtask bundle penare
# Release build, small file size
cargo xtask bundle penare --release
```