The desktop app uses Chromium's WebRTC stack, which can apply automatic gain control (AGC) to the microphone input. In some environments this feature can lower the mic level inappropriately (e.g., quiet or inconsistent volume). Administrators can disable this behavior so that the app does not automatically adjust input volume.
Windows
Use the same key as other desktop app settings:
-
-
- HKEY_LOCAL_MACHINE or HKEY_CURRENT_USER
Software\Interactive Intelligence\Purecloud\Directory
Add a DWORD value named DisableInputVolumeAdjustment:
-
-
DisableInputVolumeAdjustment = 0: Automatic input volume adjustment is enabled (normal WebRTC AGC behavior). This value is the default if the value is missing.
DisableInputVolumeAdjustment = 1: Automatic input volume adjustment is disabled. The app passes Chromium the flag to disable the WebRtcAllowInputVolumeAdjustment feature so that the mic level is not automatically lowered.
If the value exists in both HKLM and HKCU, the app follows the same precedence as other settings, typically HKLM over HKCU for machine-wide policy.
Example (disable automatic mic gain control):
"DisableInputVolumeAdjustment"=dword:00000001
Example (re-enable, use default behavior):
"DisableInputVolumeAdjustment"=dword:00000000
For changes to take effect, restart the desktop app.