Installation¶
OpenVoxTuner is a real-time pitch correction & harmony generation plugin for vocals, available as VST3, AU, and a Standalone application, built with JUCE 8 (C++17) and licensed under AGPLv3.
This page explains how to install OpenVoxTuner on Windows and macOS, either with the official installers or by installing plugin files manually.
System requirements¶
| Windows | macOS | |
|---|---|---|
| OS | Windows 10 / 11 (64-bit) | macOS 11.0 (Big Sur) or later |
| Architecture | x64 | Universal (arm64 + x86_64) |
| Formats | VST3, Standalone | VST3, AU, Standalone |
| ARA2 | ✅ | ✅ |
Official installers¶
OpenVoxTuner is distributed as GitHub Releases for each version:
| Platform | Artifact | Notes |
|---|---|---|
| Windows | OpenVoxTuner_Windows_Installer.exe |
Installer (Inno Setup) |
| macOS | OpenVoxTuner-macOS.zip |
Drag-and-drop: VST3 + Standalone (universal arm64/x86_64) — not notarized |
| macOS | OpenVoxTuner-macOS.pkg |
Signed & notarized installer: VST3 → /Library/Audio/Plug-Ins/VST3, AU → /Library/Audio/Plug-Ins/Components, Standalone → /Applications |
macOS signing status
The .pkg installer is signed and notarized and includes VST3, AU and
Standalone. The drag-and-drop .zip is not notarized — if Gatekeeper blocks
its contents, right-click (Control-click) and choose Open, or use the .pkg
installer.
Windows installation¶
Option 1 — Installer (recommended)¶
- Download
OpenVoxTuner_Windows_Installer.exefrom the latest GitHub Release. - Run the installer. It copies:
- the VST3 plugin to
C:\Program Files\Common Files\VST3\ - the Standalone application to
C:\Program Files\OpenVoxTuner\ - The installer also handles uninstallation cleanly.
SmartScreen
Because the installer is not code-signed, Windows SmartScreen may show a blue warning ("Windows protected your PC"). Click More info → Run anyway to proceed.
Option 2 — Manual copy¶
If you built the plugin yourself or received the .vst3 / .clap files, copy them
to the system-wide plugin folders:
# VST3
Copy-Item .\OpenVoxTuner.vst3 "C:\Program Files\Common Files\VST3\" -Recurse
# CLAP (if a CLAP build is available)
Copy-Item .\OpenVoxTuner.clap "C:\Program Files\Common Files\CLAP\"
Rescan your DAW
After copying, restart your DAW or trigger a plugin rescan so the newly added plugin is discovered.
macOS installation¶
Option 1 — Drag-and-drop .zip¶
- Download
OpenVoxTuner-macOS.zip. - Unzip it and drag OpenVoxTuner.vst3 to
~/Library/Audio/Plug-Ins/VST3/. - Drag the OpenVoxTuner.app (Standalone) to your
Applicationsfolder.
# Manual equivalent
mkdir -p ~/Library/Audio/Plug-Ins/VST3
rsync -a --delete ~/Downloads/OpenVoxTuner.vst3 ~/Library/Audio/Plug-Ins/VST3/
Option 2 — .pkg installer¶
- Download
OpenVoxTuner-macOS.pkg. - Double-click the package and follow the installer, or run:
This installs:
- VST3 → /Library/Audio/Plug-Ins/VST3/OpenVoxTuner.vst3
- AU → /Library/Audio/Plug-Ins/Components/OpenVoxTuner.component
- Standalone → /Applications/OpenVoxTuner.app
Building the AU (from source)¶
The AU ships in the official .pkg installer. Developers can still build it from
source (for development or testing):
- Build the AU with
./scripts/build_macos_au.sh --juce-path ~/dev/JUCE --install. - The component installs to
~/Library/Audio/Plug-Ins/Components/OpenVoxTuner.component. - On Apple Silicon, ad-hoc sign the locally built component (satisfies the code-signing requirement; the build may already be ad-hoc signed — run this to be sure):
- If Gatekeeper blocks it, remove the quarantine attribute:
- Restart your DAW and rescan the plugin (in Logic: Plug-in Manager → Reset & Rescan).
Standalone application¶
The Standalone version runs OpenVoxTuner as a desktop application without a DAW. It includes an internal 120 BPM transport and is useful for quick previews and testing.
- Windows:
C:\Program Files\OpenVoxTuner\OpenVoxTuner.exe - macOS:
/Applications/OpenVoxTuner.app
Loading in a DAW¶
- After installing, restart your DAW.
- Add OpenVoxTuner to a vocal track (or any audio track).
- On macOS, if the plugin was quarantined and the DAW silently fails to load it, clear the quarantine attribute (see above) and rescan.
- In DAWs that support it, ARA2 integration provides seamless timeline integration; otherwise the plugin reads key/scale from the audio input (auto or via the OpenVoxKey companion plugin on a sidechain bus).
OpenVoxKey companion plugin
OpenVoxTuner ships with a companion OpenVoxKey plugin (VST3/AU) that you place on an accompaniment track. It detects the musical key/scale and publishes it to the main instance via shared memory IPC — set Key Source to Companion on OpenVoxTuner to use it.
Uninstalling¶
- Windows: use the Inno Setup installer's uninstall entry (Add or Remove Programs).
- macOS:
Where to go next¶
- Build Guide — build OpenVoxTuner from source on Windows and macOS.
- Testing — how the unit test suite works.
- Contributing — how you can help the project.