Skip to content

a2aaron/nyasynth

Repository files navigation

Nyasynth - The World's Second Meowizer

Do you remember Meowsynth? So do I. Unfortunately, it seems that Meowsynth is only 32-bit and hence isn't compatible with many 64-bit DAWs (in particular, it's not compatible with Ableton, which doesn't support 32-bit VSTs any more). Additionally, there isn't a Mac or Linux version. This repo aims to fix that by being a recreation of the synthesizer!

Listen to Nyasynth in action!

A screenshot of the Nyasynth UI as it apperas on Mac.

Download

Download Nyasynth from the releases page. Or click on one of the links below:

Download for Windows x86-64

Download for Apple (ARM Binary)

Download for Apple (Universal Binary)

(If your platform isn't listed above, you can try compiling from source by following the instructions below.)

Build Instructions

First, make sure you have Rust installed.

To build the plugin as a vst3 bundle, run the following command:

cargo xtask bundle nyasynth --release

This will create a nyasynth.vst3 bundle in /target/bundled/. Install this into any DAW of your choice.

You can also create a standalone binary by running the following command:

cargo build --release --bin standalone

This will create a standalone binary in /target/release/. You can see the arguments it uses with standalone -h. See nih-plug for more information.