5

I just installed Ubuntu 20.04 and the microphone is not working. It is recording only static noise.

pjsofts
  • 369
  • 2
    Actually the answer here helped me more than the detailed question, so your decision to close this question is wrong. – pjsofts Jun 03 '20 at 02:47

1 Answers1

4
  • Install pavucontrol: sudo apt install pavucontrol
  • Run it: pavucontrol
  • Open Input Devices tab and check if it is not muted

enter image description here

  • Install vokoscreen recorder: sudo apt install vokoscreen
  • Go to Microphone tab, enable Audio, check your recording audio device and try to record something with it

enter image description here

On vokoscreen's tab you have two options: Pulse and Alsa. Try if you could use either of them for audio recording.

To check if your microphone is working, use the next commands:

to enable microphone listening

pactl load-module module-loopback latency_msec=2

to disable microphone listening

pactl unload-module module-loopback

You could also run alsamixer and check if your Mic is not muted and has at least half of its volume. Use F6 keyboard button to switch to other audio adapter if you have more than one.

Gryu
  • 7,559
  • 9
  • 33
  • 52