Changes between Version 1 and Version 2 of Capture/PulseAudio


Ignore:
Timestamp:
Nov 27, 2020, 7:51:35 PM (6 years ago)
Author:
cri
Comment:

Add note about unmuting the source device

Legend:

Unmodified
Added
Removed
Modified
  • Capture/PulseAudio

    v1 v2  
    3434=== pavucontrol ===
    3535
    36 The easiest way is to use the `pavucontrol` GUI: go to the `Input Devices` tab, filter the list of source devices using the `Show` menu, select a device (and possibly its `Port`, for example to choose between a built-in microphone or a pluggable one), set the recording volume level, using the VU meter. You can set this device as the default source by checking the `Set as fallback` icon.
     36The easiest way is to use the `pavucontrol` GUI: go to the `Input Devices` tab, filter the list of source devices using the `Show` menu, select a device (and possibly its `Port`, for example to choose between a built-in microphone or a pluggable one), make sure the device in unmuted, set the recording volume level, using the VU meter. You can set this device as the default source by checking the `Set as fallback` icon.
    3737
    3838=== pactl ===
     
    4242{{{
    4343pactl set-source-port alsa_input.pci-0000_00_1b.0.analog-stereo analog-input-internal-mic
     44pactl set-source-mute alsa_input.pci-0000_00_1b.0.analog-stereo 0
    4445pactl set-source-volume alsa_input.pci-0000_00_1b.0.analog-stereo 60%
    4546}}}
    4647
    47 will set the internal microphone as source, and a recording volume level of 60%.
     48will select the internal microphone as source, unmute it (this is the equivalent of turning on the "Capture" feature in ALSA parlance), and set a recording volume level of 60%.
    4849
    4950