You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Build filter graphs (plugin chains) with multiple plugin instances
12
14
- Saving and loading of filter graphs as files
13
15
- MIDI support (e.g. for using MIDI keyboard and a sampler plugin as soundboard)
@@ -16,29 +18,35 @@
16
18
Plugin Host2 can interface directly with audio and MIDI hardware, OBS audio sources, and output audio as new OBS sources, allowing for complex audio processing setups. E.g. use ASIO interface as audio device, take additional audio from OBS sources, route monitoring to ASIO outputs and/or different audio drivers/hardware, use plugins and create final mix, and output the processed audio as a new OBS source for recording and streaming. Or just create a simple soundboard with a sampler plugin and a MIDI keyboard.
17
19
18
20
## Device I/O
21
+
19
22
- Send and receive audio directly into and from audio devices
20
23
- "Anything from/to anywhere" device routing
21
24
- ASIO, CoreAudio and Windows Audio devices
22
25
- Resampling and drift correction
23
26
24
27
## Audio Source Mixer (OBS Source)
28
+
25
29
- Mix audio from up to 8 OBS sources into a new OBS audio source
26
30
- E.g. allows creating new submixes
27
-
- Can be used as 'dummy' source to host Device IO
31
+
- Can be used as 'dummy' source to host Device IO
28
32
29
33
## Installation
34
+
30
35
- Download and install [latest release](https://github.com/atkAudio/PluginForObsRelease/releases/latest)
31
36
- Manual/portable installations: extract `.dll|.dylib|.so` from installer and copy it to OBS plugins directory. For example on major Linux distros, extract `atkaudio-pluginforobs.so` from `.deb` file and copy it to `~/.config/obs-studio/plugins/atkaudio-pluginforobs/bin/64bit/`
32
37
33
38
## Build instructions
39
+
34
40
Project is based on [OBS Plugin Template](https://github.com/obsproject/obs-plugintemplate) and depends on [JUCE Framework](https://github.com/juce-framework/JUCE). Install JUCE Framework [Minimum System Requirements](https://github.com/juce-framework/JUCE#minimum-system-requirements) and OBS Plugin Template [Supported Build Environment](https://github.com/obsproject/obs-plugintemplate#supported-build-environments) and follow OBS Plugin Template [Quick Start Guide](https://github.com/obsproject/obs-plugintemplate/wiki/Quick-Start-Guide).
35
41
36
42
In short, after installing all dependencies (Ubuntu example):
0 commit comments