Which McDSP plugins work with FMOD Studio

Hello there,

I’m trying to find out if there is any way to use third party plugins in FMOD. What I got so far is that you can’t just use any vst plugin. There is an FMOD version of an McDSP plugin called M1 Limiter. But are there any other McDSP plugins for example that can be used in FMOD or have a special FMOD version?

Thanks for your help

Currently the M1 Limiter is the only official FMOD McDSP plugin.

You can load VSTs (not VSTi) into game code by using System::loadPlugin and then System::createDSPByPlugin. You will need the 32 bit and 64 bit versions if you are building different versions of your game.

Please note that there are a lot of limitations when using VSTs. Firstly, only .dll files can be loaded, not .vst3. Second, you may not be able to get the VSTs running on different systems. Third, there is likely going to be a performance hit outside of FMOD’s control when using third party VSTs.

https://www.fmod.com/resources/documentation-api?page=content/generated/FMOD_System_LoadPlugin.html

https://www.fmod.com/resources/documentation-api?page=content/generated/FMOD_System_CreateDSPByPlugin.html#/

If you wish to be able to use a VST within FMOD Studio application it will need to be built it in a specific way to work with FMOD Studio and to expose its properties.

https://www.fmod.com/resources/documentation-api?page=content/generated/FMOD_System_CreateDSPByPlugin.html#/

https://www.fmod.com/resources/documentation-studio?page=plugin-reference.html