Sunday, April 28, 2024
 Popular · Latest · Hot · Upcoming
7
rated 0 times [  7] [ 0]  / answers: 1 / hits: 9162  / 2 Years ago, sat, october 15, 2022, 8:15:50

This is very odd, i have one default microphone and i have another second microphone. When i use this command it always shows not muted but the microphone volume is 0%. How or what is a way i can find those value accurately.



$ pactl list | sed -n '/^Source/,/^$/p' | grep Mute
Mute: no
Mute: no
Mute: no

More From » 11.10

 Answers
2

By using the Pulseaudio Command Line Interface we will obtain a lot of information on available sources



pacmd list-sources


will display a rather lengthy list. The current active input is marked with an asterisk. We could combine this with grep but will then lose information for which source the outputs are valid



pacmd list-sources | grep volume


To set an output to a defined value we need to know it's index which is also given by list-sources to issue



pacmd set-source-volume <index> <value> # value: 0 = mute 65536 = 100%


We may also need to unmute the sink source with



pacmd set-source-mute <index> 0

[#41012] Sunday, October 16, 2022, 2 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
issfullus

Total Points: 264
Total Questions: 126
Total Answers: 107

Location: Comoros
Member since Mon, Dec 19, 2022
1 Year ago
;