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
- Host: GitHub
- URL: https://github.com/azur1s/penare
- Owner: azur1s
- License: gpl-3.0
- Created: 2023-08-01T00:04:52.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-10-09T11:46:01.000Z (almost 3 years ago)
- Last Synced: 2025-04-13T04:46:09.320Z (about 1 year ago)
- Topics: audio-processing, nih-plug, rust, vst3
- Language: Rust
- Homepage:
- Size: 501 KB
- Stars: 23
- Watchers: 2
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# Penare
A free wonky distortion plugin :3

## 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
```