Until Kubuntu 16.10 I could go to "KDE system settings" -> "Multimedia" -> "Audio and video" -> "Audio recording" -> "Communication" and see a list of available audio inputs (that is, microphones) and pick my preferred recording device. In my case I had to put the built-in microphone of my webcam on top, above the microphone input of my mainboard.
With Kubuntu 17.04 "KDE system settings" -> "Multimedia" -> "Audio and video" -> "Audio recording" -> "Communication" only lists one entry called "PulseAudio Sound Server"; actual hardware devices are not listed anymore.
How can I pick the preferred recording device, that is the microphone which will be used by default, for instance with Skype?
With Kubuntu 17.04 the KDE sound settings for choosing the preferred sound device only list the PulseAudio Sound Server and are useless. Instead the user must configure the default sound source in PulseAudio.
First run
pacmd list-sources | egrep "name:|device.product.name"
to find out which sound sources are available to PulseAudio. The commandpacmd list-sources
outputs one block for each sound sources it finds. The name of the sound source is located at the top the block following the textname:
. A description of the sound source is located further below following the textdevice.product.name
.On my setup I get:
For some reason the microphone input of my mainboard is listed twice. I want to use the webcam microphone by default; I can change this setting using
pacmd set-default-source
followed by the name of the preferred recording device. In my case:The setting should be permanent, that is, PulseAudio will remember it even after a restart.
It is also possible to set the default playback device in a similar way. In PulseAudio a playback device is called a "sink".
pacmd list-sinks
lists the playback devices andpacmd set-default-sink
set the default playback device.