README.md (10400B)
1 <div style="text-align:center"> 2 <img src="https://steinbergmedia.github.io/vst3_doc/gfx/vst3_logo.jpg" alt="VST 3 SDK" /></div> 3 4 # Welcome to VST SDK 3.7.x 5 6 ## Table Of Contents 7 8 1. [The VST SDK package](#100) 9 1. [System requirements](#200) 10 1. [About VST plug-ins in general](#300) 11 1. [About VST 3](#400) 12 1. [How to build VST 3](#500) 13 1. [Contributing](#600) 14 1. [License & Usage guidelines](#700) 15 16 <div id='100'/> 17 18 ## The VST SDK package contains 19 20 - VST 3 API 21 - VST 3 Implementation Helper Classes 22 - AAX, AUv3 and AU Wrappers 23 - VST 3 plug-ins Examples 24 25 The full **VST 3 SDK** is available [here!](https://www.steinberg.net/en/company/developers.html). It contains: 26 27 - VST 3 plug-in Test Host Application/Validator, 28 - the **Steinberg VST 3 Plug-In SDK Licensing Agreement** that you have to sign if you want to develop or host **VST 3** plug-ins. 29 30 <div id='200'/> 31 32 ## System requirements 33 34 Supported Platforms: 35 36 | Operating System | Architecture | Compiler | Notes | 37 | :-------------------------------- | :---------------------------- | :-------------------- | :-------------------------------- | 38 | Windows 11 | x86, x86_64, arm64, arm64EC | MSVC 2022 | | 39 | Windows 8.1/10 | x86, x86_64 | MSVC 2019, MSVC 2022 | | 40 | macOS 10.13 - 15 | x86, x86_64, Apple Silicon | Xcode 10 - 16 | | 41 | iOS 13 - 18 | arm64 | Xcode 11 - 16 | | 42 | Linux - Ubuntu 24.04 LTS | x86_64 | GCC 13.3 and higher | Visual Studio Code, Qt Creator | 43 44 --- 45 <div id='300'/> 46 47 ## About VST plug-ins in general 48 49 A VST plug-in is an audio processing component that is utilized within a host application. This host application provides the audio or/and event streams that are processed by the plug-in's code. Generally speaking, a VST plug-in can take a stream of audio data, apply a process to the audio, and return the result to the host application. A VST plug-in performs its process normally using the processor of the computer. The audio stream is broken down into a series of blocks. The host supplies the blocks in sequence. The host and its current environment control the block-size. The VST plug-in maintains the status of all its own parameters relating to the running process: The host does not maintain any information about what the plug-in did with the last block of data it processed. 50 51 From the host application's point of view, a VST plug-in is a black box with an arbitrary number of inputs, outputs (Event (MIDI) or Audio), and associated parameters. The host needs no implicit knowledge of the plug-in's process to be able to use it. The plug-in process can use whatever parameters it wishes, internally to the process, but depending on the capabilities of the host, it can allow the changes to user parameters to be automated by the host. 52 53 The source code of a VST plug-in is platform independent, but the delivery system depends on the platform architecture: 54 55 - On **Windows**, a VST plug-in is a multi-threaded DLL (Dynamic Link Library), recently packaged into a folder structure. 56 - On **Mac OS X**, a VST plug-in is a Mach-O Bundle 57 - On **Linux**, a VST plug-in is a package 58 59 To learn more about VST you can: 60 61 - subscribe to the [VST Developer Forum](https://sdk.steinberg.net) 62 - check the 3rd Party Developer Support section at [www.steinberg.net](https://www.steinberg.net/en/company/developers.html) 63 - check the VST 3 SDK online documentation under: [steinbergmedia.github.io/vst3_dev_portal](https://steinbergmedia.github.io/vst3_dev_portal/pages/index.html) 64 - check the online documentation under: [steinbergmedia.github.io/vst3_doc](https://steinbergmedia.github.io/vst3_doc) 65 66 --- 67 <div id='400'/> 68 69 ## About VST 3 70 71 VST 3 is a general rework of the long-serving VST plug-in interface. It is not compatible with the older VST versions, but it includes some new features and possibilities. We have redesigned the API to make it not only far easier and more reliable for developers to work with, but have also provided completely new possibilities for plug-ins. These include: 72 73 ### 1. Improved Performance with the Silence Flag 74 75 Processing can optionally be applied to plug-ins only when audio signals are present on their respective inputs, so VST 3 plug-ins can apply their processing economically and only when it is needed. 76 77 ### 2. Multiple Dynamic I/Os 78 79 VST 3 plug-ins are no longer limited to a fixed number of inputs and outputs, and their I/O configuration can dynamically adapt to the channel configuration. Side-chains are also very easily realizable. This includes the possibility to deactivate unused busses after loading and even reactivate those when needed. This cleans up the mixer and further helps to reduce CPU load. 80 81 ### 3. Sample-accurate Automation 82 83 VST 3 also features vastly improved parameter automation with sample accuracy and support for ramped automation data, allowing completely accurate and rapid parameter automation changes. 84 85 ### 4. Logical Parameter Organization 86 87 The VST 3 plug-in parameters are displayed in a tree structure. Parameters are grouped into sections which represent the structure of the plug-in. Plug-ins can communicate their internal structure for the purpose of overview, but also for some associated functionality (eg. program-lists). 88 89 ### 5. Resizeable UI Editor 90 91 VST 3 defines a way to allow resizing of the plug-in editor by a user. 92 93 ### 6. Mouse Over Support 94 95 The host could ask the plug-in which parameter is under the mouse. 96 97 ### 7. Context Menu Support 98 99 VST 3 defines a way to allow the host to add its own entries in the plug-in context menu of a specific parameter. 100 101 ### 8. Channel Context Information 102 103 A VST 3 plug-in could access some channel information where it is instantiated: name, color, ... 104 105 ### 9. Note Expression 106 107 VST 3 defines with Note Expression a new way of event controller editing. The plug-in is able to break free from the limitations of MIDI controller events by providing access to new VST 3 controller events that circumvent the laws of MIDI and provide articulation information for each individual note (event) in a polyphonic arrangement according to its noteId. 108 109 ### 10. 3D Support 110 111 VST 3 supports new speaker configurations like Ambisonic, Atmos, Auro 3D or 22.2. 112 113 ### 11. Factory Concept 114 115 VST 3 plug-in library could export multiple plug-ins and in this way replaces the shell concept of VST 2 (kPlugCategShell). 116 117 ### 12. Support Remote control Representation 118 119 VST 3 plug-in can deliver a specific parameter mapping for remote controls like Nuage. 120 121 ### 13. Others 122 123 While designing VST 3, we performed a careful analysis of the existing functionality of VST and rewrote the interfaces from scratch. In doing so, we focused a lot on providing clear interfaces and their documentation in order to avoid usage errors from the deepest possible layer. 124 Some more features implemented specifically for developers include: 125 126 - More stable technical host/plug-in environment 127 - Advanced technical definition of the standard 128 - Modular approach 129 - Separation of UI and processing 130 - Advanced Preset System 131 - Multiple plug-ins per Library 132 - Test Host included 133 - Automated Testing Environment 134 - Validator (small command line Test Host) and plug-in examples code included 135 136 --- 137 <div id='500'/> 138 139 ## How to build VST3 140 141 ### Get the source code from GitHub 142 143 ```c 144 git clone --recursive https://github.com/steinbergmedia/vst3sdk.git 145 ``` 146 147 ### Build the examples on Windows 148 149 - Create a folder for the build and move to this folder (using cd): 150 151 ```c 152 mkdir build 153 cd build 154 ``` 155 156 - Generate the Solution/Projects: provide the path of the Project where CMakeLists.txt is located: 157 158 ```c 159 // examples: 160 cmake.exe -G "Visual Studio 17 2022" -A x64 ..\vst3sdk 161 // or without symbolic links 162 cmake.exe -G "Visual Studio 17 2022" -A x64 ..\vst3sdk -DSMTG_CREATE_PLUGIN_LINK=0 163 // or by using the local user program folder (FOLDERID_UserProgramFilesCommon) as VST3 folder 164 cmake.exe -G "Visual Studio 17 2022" -A x64 -DSMTG_PLUGIN_TARGET_USER_PROGRAM_FILES_COMMON=1 165 ``` 166 167 - Now you can build the plug-in (you can use Visual Studio too): 168 169 ```c 170 msbuild.exe vstsdk.sln 171 // (or alternatively for example for release) 172 cmake --build . --config Release 173 ``` 174 Note: If you have any issue with symbolic links, check [Preparation on Windows](https://steinbergmedia.github.io/vst3_dev_portal/pages/Getting+Started/Preparation+on+Windows.html) for potential solutions. 175 176 ### Build the examples on macOS 177 178 - Create a folder for the build and move to this folder (using cd): 179 180 ```c 181 mkdir build 182 cd build 183 ``` 184 185 - Generate the Solution/Projects: provide the path of the Project where CMakeLists.txt is located: 186 187 ```c 188 // For XCode: 189 cmake -GXcode ../vst3sdk 190 // Without XCode (here debug variant): 191 cmake -DCMAKE_BUILD_TYPE=Debug ../ 192 ``` 193 194 - Now you can build the plug-in (you can use XCode too): 195 196 ```c 197 xcodebuild 198 // (or alternatively for example for release) 199 cmake --build . --config Release 200 ``` 201 202 ### Build the examples on Linux 203 204 - Install the required packages [Package Requirements](https://steinbergmedia.github.io/vst3_dev_portal/pages/Getting+Started/How+to+setup+my+system.html#for-linux) 205 - Create a folder for the build and move to this folder (using cd): 206 207 ```c 208 mkdir build 209 cd build 210 ``` 211 212 - Generate the Solution/Projects: provide the path of the Project where CMakeLists.txt is located: 213 214 ```c 215 cmake ../vst3sdk 216 ``` 217 218 - Now you can build the plug-in: 219 220 ```c 221 make 222 // (or alternatively for example for release) 223 cmake --build . --config Release 224 ``` 225 226 ### Build using cmake-gui 227 228 - start the cmake-gui Application 229 - **Browse Source...**: select the folder vst3sdk 230 - **Browse Build...**: select a folder where the outputs (projects/...) will be created. Typically, a folder named "build" 231 - you can check the SMTG Options 232 - Press **Configure** 233 - Press **Generate** and the project will be created 234 235 --- 236 <div id='600'/> 237 238 ## Contributing 239 240 For bug reports and features requests, please visit the [VST Developer Forum](https://sdk.steinberg.net) 241 242 --- 243 <div id='700'/> 244 245 ## License & Usage guidelines 246 247 More details are found at [www.steinberg.net/sdklicenses_vst3](http://www.steinberg.net/sdklicenses_vst3)