Community Q&A

Welcome to Audiokinetic’s community-driven Q&A forum. This is the place where Wwise and Strata users help each other out. For direct help from our team, please use the Support Tickets page. To report a bug, use the Bug Report option in the Audiokinetic Launcher. (Note that Bug Reports submitted to the Q&A forum will be rejected. Using our dedicated Bug Report system ensures your report is seen by the right people and has the best chance of being fixed.)

To get the best answers quickly, follow these tips when posting a question:

  • Be Specific: What are you trying to achieve, or what specific issue are you running into?
  • Include Key Details: Include details like your Wwise and game engine versions, operating system, etc.
  • Explain What You've Tried: Let others know what troubleshooting steps you've already taken.
  • Focus on the Facts: Describe the technical facts of your issue. Focusing on the problem helps others find a solution quickly.

0 votes
I have a game mixed in 7.1, 5.1 and Stereo. I like the mix as is, but the two side channels in the 7.1 mix are both too hot (too much gain). Is there a way to attenuate just those two channels? Is there a divergance setting or some other way to accomplish this? If I go back to my panning, it changes the 5.1 balance which I am happy with at the moment.
in General Discussion by Tom T. (340 points)
edited by Tom T.

1 Answer

0 votes
 
Best answer
Unfortunately, there is no easy way to do this from the Authoring tool, you will need a programmer to implement it for you.

The easiest way would be to register the Bus Volume callback (see https://www.audiokinetic.com/library/2015.1.2_5457/?source=SDK&id=namespace_a_k_1_1_sound_engine_a48a069a39cd20d04fbbd8782df3ee386.html#a48a069a39cd20d04fbbd8782df3ee386 ). This will give you access to the matrix of channel volumes for a bus. Inside that callback, you can then modify this matrix to attenuate your side channels, using the AkSpeakerVolumeMatrixCallbackInfo (see https://www.audiokinetic.com/library/2015.1.2_5457/?source=SDK&id=struct_ak_speaker_volume_matrix_callback_info.html)
by Benoit S. (Audiokinetic) (16.0k points)
selected by Bernard R. (Audiokinetic)
Well, that is what my programmer is for! This is awesome, now that I know this I can get it sorted out. Thanks for the info Benoit!
...