Replies: 3 comments 1 reply
|
https://chromium.googlesource.com/external/webrtc/+/lkgr/modules/audio_processing/agc/agc.cc#24 If |
0 replies
0 replies
|
The only way to do this is to measure what you have at the output of your pipeline and adjust. |
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Hello! I need help understanding the gain parameters for
autoGainControl(frommediaDevices.getUserMedia) andDynamicsCompressorNode.I have a pipeline of
autoGainControlsets the volume of the source audio to a certain volume range. Then I run several nodes that change this volume range (for example, I make the audio quieter). After that, I useDynamicsCompressorNodeto compress the audio AND to boost the volume of the audio, since auto makeup gain is built intoDynamicsCompressorNode.And with this pipeline I want that at the destination after the full pipeline (
Source -> autoGainControl: True -> some other nodes -> DynamicsCompressorNode) I have the same volume as after autoGain (Source -> autoGainControl: True -> Destination).Can I do this? Can you help me understand what
DynamicsCompressorNodeparameters I should use for this? And with what limitations?All reactions