How can I delay sound in each single speaker with FMOD?

So I've got an answer to my question by myself and fmod.org. I have to use the FMOD_DSP_TYPE_DELAY With this type I can set the delay for each channel up to 10 seconds. More informations could be found in the documentation from fmod.

So I've got an answer to my question by myself and fmod.org. I have to use the FMOD_DSP_TYPE_DELAY. With this type I can set the delay for each channel up to 10 seconds.

More informations could be found in the documentation from fmod. ~Update~ Some code for interested fmod users: FMOD_System_CreateDSPByType(system, FMOD_DSP_TYPE_DELAY, &dspDelay); FMOD_Channel_AddDSP(channel, dspDelay, 0); FMOD_DSP_SetActive(dspDelay, true); while(true) { FMOD_DSP_SetParameter(dspDelay, FMOD_DSP_DELAY_CH0, delayLeft); FMOD_DSP_SetParameter(dspDelay, FMOD_DSP_DELAY_CH1, delayRight); Sleep(10); FMOD_System_Update(system); }.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions