How to listen to microphone output on Linux?

3

1

I would like to hear the microphone output during Skype calls. I have tried fiddling with alsamixer settings and made sure that the mike is unmuted but still cannot get to hear the mike in either headphones or speakers.

Is this achievable with alsa?

ccpizza

Posted 2012-08-12T17:08:27.353

Reputation: 5 372

just to clarify, is it recording at an acceptable volume ? (i.e: can skype loop back pick it up correctly?) – Sirex – 2012-08-12T22:47:42.873

@Sirex: The microphone appears to work ok, at least people at the other end can hear me without problems. On a windows system I managed to force the mike input to serve as a source for the output device (i.e. headphones) by simply ticking the 'Listen to this device' checkbox in device properties. There probably should be something similar with alsa but so far reading the man-pages for alsamixer and amixer did not reveal a solution. The linux sound volume gui's don't seem to contain anything in this regard. – ccpizza – 2012-08-12T22:54:56.517

ok, I was wondernig if the mic boost was off or similar. If the playback is up, and the recording is up, and it's not muted. I'm out of ideas ! – Sirex – 2012-08-12T23:05:20.650

Answers

1

Look for Microphone in the playback controls, it may be muted by default. Set it's lever to high, and if your microphone configured properly you will hear sound from it in your speakers.

Nikita Krupenko

Posted 2012-08-12T17:08:27.353

Reputation: 424

Thank you! All I had to do (in xfce4-mixer) was to (1) select the USB Headset in the Sound Card combo-box, (2) click Select Controls and check the Microphone and Microphone Capture checkboxes, and, the part that I missed initially, (3) in the Capture > Microphone Capture tab click the small red dot. – ccpizza – 2012-08-13T20:58:03.953

0

You can redirect your audio input to the output using the PulseAudio loopback module:

pactl load-module module-loopback

(https://wiki.debian.org/PulseAudio)

Damien Hulmann

Posted 2012-08-12T17:08:27.353

Reputation: 1