Replies: 3 comments 1 reply
-
https://chromium.googlesource.com/external/webrtc/+/lkgr/modules/audio_processing/agc/agc.cc#24 If |
Beta Was this translation helpful? Give feedback.
0 replies
-
The only way to do this is to measure what you have at the output of your pipeline and adjust. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello! I need help understanding the gain parameters for
autoGainControl
(frommediaDevices.getUserMedia
) andDynamicsCompressorNode
.I have a pipeline of
autoGainControl
sets 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 useDynamicsCompressorNode
to 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
DynamicsCompressorNode
parameters I should use for this? And with what limitations?Beta Was this translation helpful? Give feedback.
All reactions