All Projects → obsproject → Obs Vst

obsproject / Obs Vst

Licence: gpl-2.0
Use VST plugins in OBS

Labels

Projects that are alternatives of or similar to Obs Vst

Sonobus
Source code for SonoBus, a real-time network audio streaming collaboration tool.
Stars: ✭ 586 (+480.2%)
Mutual labels:  vst
Awesome Musicdsp
A curated list of my favourite music DSP and audio programming resources
Stars: ✭ 871 (+762.38%)
Mutual labels:  vst
Owlplug
Audio plugin manager. Small tool to manage VST plugin folders on Windows and MacOS.
Stars: ✭ 64 (-36.63%)
Mutual labels:  vst
Axiom
A powerful realtime node-based audio synthesizer.
Stars: ✭ 599 (+493.07%)
Mutual labels:  vst
Giada
Your Hardcore Loop Machine.
Stars: ✭ 903 (+794.06%)
Mutual labels:  vst
Rtb Rs
Window and event library for rust audio plugins.
Stars: ✭ 30 (-70.3%)
Mutual labels:  vst
Camomile
An audio plugin with Pure Data embedded that allows to load and to control patches
Stars: ✭ 527 (+421.78%)
Mutual labels:  vst
Jamba
A lightweight VST2/3 framework
Stars: ✭ 73 (-27.72%)
Mutual labels:  vst
Wdl Ol
Enhanced version of Cockos' iPlug - A simple-to-use C++ framework for developing cross platform audio plugins and targeting multiple plugin APIs with the same code. VST / VST3 / Audiounit / RTAS / AAX (Native) formats supported. NOTE: THIS IS OBSOLETE, PLEASE SEE IPLUG2:
Stars: ✭ 906 (+797.03%)
Mutual labels:  vst
Audiobench
Open source modular synthesizer
Stars: ✭ 63 (-37.62%)
Mutual labels:  vst
Zrythm
a highly automated and intuitive digital audio workstation - official mirror
Stars: ✭ 703 (+596.04%)
Mutual labels:  vst
Vst24 Hello World
This project contains a "Hello World" style application for building a VST 2.4 plugin
Stars: ✭ 18 (-82.18%)
Mutual labels:  vst
Baseplug
MVC audio plugin framework for rust
Stars: ✭ 44 (-56.44%)
Mutual labels:  vst
Vst Rs
VST 2.4 API implementation in rust. Create plugins or hosts. Previously rust-vst on the RustDSP group.
Stars: ✭ 596 (+490.1%)
Mutual labels:  vst
Node Audio
Graph-based audio api for Node.js based on LabSound and JUCE
Stars: ✭ 67 (-33.66%)
Mutual labels:  vst
Olive
Free open-source non-linear video editor
Stars: ✭ 5,682 (+5525.74%)
Mutual labels:  vst
Iplug2
C++ Audio Plug-in Framework for desktop, mobile and web [PRE-RELEASE]
Stars: ✭ 875 (+766.34%)
Mutual labels:  vst
Wolf Shaper
Waveshaper plugin with a spline-based graph editor (LV2, VST, DSSI and Jack)
Stars: ✭ 93 (-7.92%)
Mutual labels:  vst
Andes
Sound synthesiser based on Perlin noise
Stars: ✭ 69 (-31.68%)
Mutual labels:  vst
Regrader
VST delay plugin where the repeats degrade in resolution
Stars: ✭ 44 (-56.44%)
Mutual labels:  vst

OBS-VST

Use VST 2.x plugins as audio filters in OBS.

Plugin Preview

Research

Sites

Info

In general VST 2.4 is platform independent. There are only three platform dependent opcodes :
effEditOpen
audioMasterGetDirectory
audioMasterOpenFileSelector

Here are the required API changes for 64 bit Mac OS X:

effEditOpen:
the [ptr] argument is a WindowRef on 32 bit Mac.
On 64 bit this is a NSView pointer. The plug-in needs to add its own NSView as subview of it.

audioMasterGetDirectory:
the [return value] is a FSSpec on 32 bit Mac.
On 64 bit this is a char pointer pointing to an UTF-8 encoded string.

audioMasterOpenFileSelector:
the VstFileSelect struct uses FSSpec's on 32 bit Mac.
On 64 bit Mac these are char pointers pointing to UTF-8 encoded strings.

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].