Save output to disk using FMOD

I use FMOD to play some sounds, and I would like to save the resulting mix to disk.

I tried the path system-> recordStart (0, sound, true), but this saves the mic input of the device.

In a way, I would like to redirect the output of the speakers to disk

thank

Mark

+3
source share
1 answer

To redirect everything that goes to the columns to disk, simply use the System :: setOutput function and pass the value FMOD_OUTPUTTYPE_WAVWRITER. Make sure you call this function before calling System :: init, when you finish calling System :: release, and a wav file appears next to your executable.

wav , System:: init extradriverdata.

+2

All Articles