All Projects → RustAudio → Vst Rs

RustAudio / Vst Rs

Licence: mit
VST 2.4 API implementation in rust. Create plugins or hosts. Previously rust-vst on the RustDSP group.

Programming Languages

rust
11053 projects

Labels

Projects that are alternatives of or similar to Vst Rs

DtBlkFx
Fast-Fourier-Transform (FFT) based VST plug-in
Stars: ✭ 99 (-83.39%)
Mutual labels:  dsp, vst
Melodrumatic
Audio plugin that lets you use MIDI to pitch-shift via delay to turn unpitched audio into melodies
Stars: ✭ 26 (-95.64%)
Mutual labels:  dsp, vst
matchering-web
🎚️ Self-Hosted LANDR / eMastered Alternative
Stars: ✭ 25 (-95.81%)
Mutual labels:  dsp, vst
Audio Plugin Development Resources
Various resources related to developing plugins for audio production.
Stars: ✭ 136 (-77.18%)
Mutual labels:  dsp, vst
Dragonfly Reverb
A set of free reverb effects
Stars: ✭ 412 (-30.87%)
Mutual labels:  dsp, vst
Renderman
Command line C++ and Python VSTi Host library with MFCC, FFT, RMS and audio extraction and .wav writing.
Stars: ✭ 225 (-62.25%)
Mutual labels:  dsp, vst
fogpad
A VST reverb effect in which the reflections can be frozen, filtered, pitch shifted and ultimately disintegrated.
Stars: ✭ 61 (-89.77%)
Mutual labels:  dsp, vst
Awesome Musicdsp
A curated list of my favourite music DSP and audio programming resources
Stars: ✭ 871 (+46.14%)
Mutual labels:  dsp, vst
matchering-cli
🎚️ Simple Matchering 2.0 Command Line Application
Stars: ✭ 28 (-95.3%)
Mutual labels:  dsp, vst
DAFx19-Gamelanizer
Accompanying material for the paper 'A Real-Time Audio Effect Plug-In Inspired by the Processes of Traditional Indonesian Gamelan Music'
Stars: ✭ 33 (-94.46%)
Mutual labels:  dsp, vst
Frequalizer
Equalizer using JUCE new dsp module
Stars: ✭ 130 (-78.19%)
Mutual labels:  dsp, vst
Dplug
Audio plugin framework. VST2/VST3/AU/AAX/LV2 for Linux/macOS/Windows.
Stars: ✭ 341 (-42.79%)
Mutual labels:  dsp, vst
Regrader
VST delay plugin where the repeats degrade in resolution
Stars: ✭ 44 (-92.62%)
Mutual labels:  dsp, vst
SpleeterRT
Real time monaural source separation base on fully convolutional neural network operates on Time-frequency domain.
Stars: ✭ 111 (-81.38%)
Mutual labels:  dsp, vst
Baseplug
MVC audio plugin framework for rust
Stars: ✭ 44 (-92.62%)
Mutual labels:  dsp, vst
simple-reverb
A simple reverb made with the JUCE DSP module
Stars: ✭ 43 (-92.79%)
Mutual labels:  dsp, vst
Axiom
A powerful realtime node-based audio synthesizer.
Stars: ✭ 599 (+0.5%)
Mutual labels:  dsp, vst
juceSynths
Collection of JUCE synthesisers utilising the Maximilian library.
Stars: ✭ 78 (-86.91%)
Mutual labels:  dsp, vst
Amsynth
Analog Modelling Synthesizer
Stars: ✭ 313 (-47.48%)
Mutual labels:  dsp, vst
Matchering
🎚️ Open Source Audio Matching and Mastering
Stars: ✭ 398 (-33.22%)
Mutual labels:  dsp, vst

vst-rs

crates.io dependency status Discord Chat Discourse topics

vst-rs is a library for creating VST2 plugins in the Rust programming language.

This library is a work in progress, and as such it does not yet implement all functionality. It can create basic VST plugins without an editor interface.

Note: If you are upgrading from a version prior to 0.2.0, you will need to update your plugin code to be compatible with the new, thread-safe plugin API. See the transfer_and_smooth example for a guide on how to port your plugin.

Library Documentation

Documentation for released versions can be found here.

Development documentation (current master branch) can be found here.

Crate

This crate is available on crates.io. If you prefer the bleeding-edge, you can also include the crate directly from the official Github repository.

# get from crates.io.
vst = "0.2.1"
# get directly from Github.  This might be unstable!
vst = { git = "https://github.com/rustaudio/vst-rs" }

Usage

To create a plugin, simply create a type which implements the Plugin trait. Then call the plugin_main macro, which will export the necessary functions and handle dealing with the rest of the API.

Example Plugin

A simple plugin that bears no functionality. The provided Cargo.toml has a crate-type directive which builds a dynamic library, usable by any VST host.

src/lib.rs

#[macro_use]
extern crate vst;

use vst::plugin::{HostCallback, Info, Plugin};

struct BasicPlugin;

impl Plugin for BasicPlugin {
    fn new(_host: HostCallback) -> Self {
        BasicPlugin
    }

    fn get_info(&self) -> Info {
        Info {
            name: "Basic Plugin".to_string(),
            unique_id: 1357, // Used by hosts to differentiate between plugins.
            ..Default::default()
        }
    }
}

plugin_main!(BasicPlugin); // Important!

Cargo.toml

[package]
name = "basic_vst"
version = "0.0.1"
authors = ["Author <[email protected]>"]

[dependencies]
vst = { git = "https://github.com/rustaudio/vst-rs" }

[lib]
name = "basicvst"
crate-type = ["cdylib"]

Packaging on OS X

On OS X VST plugins are packaged inside of loadable bundles. To package your VST as a loadable bundle you may use the osx_vst_bundler.sh script this library provides. 

Example: 

./osx_vst_bundler.sh Plugin target/release/plugin.dylib
Creates a Plugin.vst bundle

Special Thanks

Marko Mijalkovic for initiating this project

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].