Skip to content

MPVST 0.2.0

Latest

Choose a tag to compare

@bdbarnett bdbarnett released this 12 Sep 12:52
· 10 commits to main since this release

Programmable VST3 instruments and audio effects, each running its Python in
its own sidecar process. Every audioinstruments module and every
audioeffects class appears in your DAW under its own name.

Upgrading from 0.1.0 changes how your projects sound. Macros were being
overwritten at load, so every instrument and effect had been playing at
centre-position values rather than its own defaults — a limiter asked for a
−1 dB ceiling was giving you −12. That is fixed, which means a render made
with 0.2.0 will not match one made with 0.1.0. If you have projects you care
about, listen before you overwrite anything.

Install

Windows — run MPVST-0.2.0-windows-x86_64-setup.exe. It installs for the
current user, so there is no administrator prompt; the uninstaller appears
under Settings → Apps → Installed apps. Close your DAW first.

Linux — unpack MPVST-0.2.0-linux-x86_64.tar.gz and run the install.sh
inside it. It copies the bundle to ~/.vst3; --dir puts it elsewhere and
--uninstall removes it.

MPVST-0.2.0-windows-x86_64.zip is the same bundle with no installer.

Both installers run the plug-in scan for you. Then rescan plug-ins in your
host — a real rescan, not a restart
; in REAPER that is Preferences →
Plug-ins → VST → Re-scan.

New: catalog.json

The bundle now ships Contents/Resources/catalog.json — every class with its
class ID, macro labels and their ranges, every patch with its MIDI values, and
the note map for each drum machine. One json.load tells a project generator
everything it needs, with no parsing of source files and no separate dump
step. See docs/generating-projects.md.

Also in this release

  • An empty MPVST Script Host slot is silent, so a project wired to a
    generic class ID instead of a named instrument's is obvious rather than
    sounding like a plausible synth on every track.
  • Packaging metadata (.egg-info) no longer ships inside the bundle.
  • NOTE_MAP is published, so a generator can write drum parts.

Verify what you downloaded

Every file has a .sha256 beside it:

sha256sum -c MPVST-0.2.0-windows-x86_64-setup.exe.sha256

The installer is not code signed, so Windows SmartScreen will warn on
first run — "More info", then "Run anyway".

Known limitations

  • REAPER is the only DAW tested.
  • The editor is one generic panel; per-script panels are deferred.
  • MPVST_SCRIPT_PATH is process-wide, so two developer-file instances cannot
    follow different scripts.
  • Real-time playback on Linux audio hardware is unexercised.
  • No macOS build.
  • The application icon is a placeholder.

Security

The shipped sidecar engine is built without sockets, SSL or FFI, so a piece
you downloaded cannot reach the network whatever it contains. That is a safe
default, not a sandbox — it can still read and write your files. Only load
projects and scripts you trust.