Hello DSPC Team,
I would like to create an active equalizer (dynamic equalizer).
During playback, I want to change the eq[n]
values (in dB) of GraphicEQ
from a custom module, just like adjusting them in the GraphicEQ
inspector.
Could you please tell me how to access and modify eq[n]
from a custom module or via the AWE Core API?
If this topic belongs to the AWE Core category, I will submit it under AWE Core.
8:51pm
Hi,
It seems there’s no clear answer from AWE for this. I’ll try a different approach. Thank you for your time.
5:15pm
Sone-san,
Apologies for the delayed response.
You can adjust any modules variables, and therefore the gains or center frequencies of the GraphicEQ module, with a custom inspector or ParamSet/ArraySet modules by setting their respective modVar argument. For example, if you wanted to set the value of GraphicEQ1's 1st band gain you would address GraphicEQ1.eq1.gain.
If you wanted to have this functionality from a custom module, I would recommend having an output(s) from your custom module that outputs the value of whatever variable you want to set into ParamSetV2 module (or ArraySet for setting an array of values) and using the above method to interface with another modules parameters. You could also implement some sort of trigger within your module to specify when the values should be given to the ParamSetV2 to set the desired variable.
8:32pm
Hello ajbdspc,
Thank you for your response. I will try it.
I look forward to your support again.