https://github.com/hollance/levels
Basic digital level meter plug-in.
https://github.com/hollance/levels
audio-effects audio-processing audio-unit audio-visualizer cplusplus juce vst3
Last synced: about 2 months ago
JSON representation
Basic digital level meter plug-in.
- Host: GitHub
- URL: https://github.com/hollance/levels
- Owner: hollance
- License: mit
- Created: 2023-12-19T17:01:51.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-12-21T14:00:05.000Z (almost 2 years ago)
- Last Synced: 2025-04-04T21:51:07.906Z (6 months ago)
- Topics: audio-effects, audio-processing, audio-unit, audio-visualizer, cplusplus, juce, vst3
- Language: C++
- Homepage: https://audiodev.blog/levels-plugin
- Size: 28.3 KB
- Stars: 12
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.markdown
- License: LICENSE
Awesome Lists containing this project
README
# Levels
Basic level meter. Useful for testing and debugging plug-ins that don't have a built-in level meter.

For more info on how this plug-in works, [check out the blog post](https://audiodev.blog/levels-plugin/).
## How to build
This plug-in uses [JUCE](https://juce.com) and is built using CMake. Make sure [JUCE's CMake support](https://github.com/juce-framework/JUCE/blob/master/docs/CMake%20API.md) has been installed on your system.
### macOS
```text
$ git clone https://github.com/hollance/levels.git
$ cd levels
$ cmake -B build -G Xcode
$ cmake --build build -j --config Release
```The resulting AU and VST3 will be installed in `~/Library/Audio/Plug-Ins/`.
I have only tried it on an Intel Mac running macOS 12 (Monterey) with Xcode 14.2 and JUCE 7.0.8.
### Windows
```text
$ git clone https://github.com/hollance/levels.git
$ cd levels
$ cmake -B build -G "Visual Studio 17 2022"
$ cmake --build build -j --config Release
```The resulting VST will be installed in `C:\Program Files\Common Files\VST3` (you may need to change permissions on this folder).
I have only tried it on Windows 10 with Visual Studio 2022 and JUCE 7.0.9.
## License
The source code in this repo is licensed under the terms of the [MIT license](LICENSE).