Skip to content

Instantly share code, notes, and snippets.

@semihkeskindev
Last active April 18, 2024 15:01
Show Gist options
  • Star 16 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save semihkeskindev/a1d5dc7be08449666102e154e2842f33 to your computer and use it in GitHub Desktop.
Save semihkeskindev/a1d5dc7be08449666102e154e2842f33 to your computer and use it in GitHub Desktop.
Pulseaudio disable auto gain boost in Ubuntu/Kubuntu
  • Edit as root: sudo editor /usr/share/pulseaudio/alsa-mixer/paths/analog-input-internal-mic.conf
  • Edit as root: sudo editor /usr/share/pulseaudio/alsa-mixer/paths/analog-input-mic.conf
  • Under "[Element Internal Mic Boost]" set "volume" to "zero".
  • Under "[Element Int Mic Boost]" set "volume" to "zero".
  • Under "[Element Mic Boost]" set "volume" to "zero".

If It's still same, then you can next other steps.

  • edit the file below:

sudo nano /etc/pulse/default.pa

  • at first, search the "load-module module-echo-cancel" and remove it if there is a result and then paste the text below to that line you removed or end of the line

load-module module-echo-cancel aec_args="analog_gain_control=0 digital_gain_control=0"

  • restart the pulseaudio

pulseaudio -k

References

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment