Unity to fmod PS5 Programmer instrument

Hello,
We’re currently porting a game to PS5, that uses unity to fmod audio (with Monobehaviour.OnAudioFilterRead). This is currently not working, i.e. the output sound is not understandable at all, it mostly sounds like noise.
We’re currently using these sound settings:

uint lenBytes = (uint)(10000 * sizeof(float));
soundInfo = new CREATESOUNDEXINFO();
soundInfo.length = lenBytes;
soundInfo.format = SOUND_FORMAT.PCMFLOAT;
soundInfo.numchannels = 1;
soundInfo.defaultfrequency = 48000;
soundInfo.cbsize = Marshal.SizeOf(typeof(FMOD.CREATESOUNDEXINFO));

Hi,

Thank you for sharing the information.

Could I please grab the versions number of FMOD and the PS5 SDK you’re currently using?

This sounds like an issue when combining Unity’s audio system with FMOD, especially on consoles like the PS5.

There have been some good discussions on this topic previously, I recommend you look through thess threads:

Hope this helps, feel free to follow up if the issue persists or if you have more details to share.