1AMIXER(1) General Commands Manual AMIXER(1)
2
3
4
6 amixer - command-line mixer for ALSA soundcard driver
7
9 amixer [-option] [cmd]
10
12 amixer allows command-line control of the mixer for the ALSA soundcard
13 driver. amixer supports multiple soundcards.
14
15 amixer with no arguments will display the current mixer settings for
16 the default soundcard and device. This is a good way to see a list of
17 the simple mixer controls you can use.
18
19
21 help Shows syntax.
22
23
24 info Shows the information about a mixer device.
25
26
27 scontrols
28 Shows a complete list of simple mixer controls.
29
30
31 scontents
32 Shows a complete list of simple mixer controls with their con‐
33 tents.
34
35
36 set or sset <SCONTROL> <PARAMETER> ...
37 Sets the simple mixer control contents. The parameter can be the
38 volume either as a percentage from 0% to 100% with % suffix, a
39 dB gain with dB suffix (like -12.5dB), or an exact hardware
40 value. The dB gain can be used only for the mixer elements with
41 available dB information. When plus(+) or minus(-) letter is
42 appended after volume value, the volume is incremented or decre‐
43 mented from the current value, respectively.
44
45 The parameters cap, nocap, mute, unmute, toggle are used to
46 change capture (recording) and muting for the group specified.
47
48 The optional modifiers can be put as extra parameters before the
49 value to specify the stream direction or channels to apply. The
50 modifiers playback and capture specify the stream, and the modi‐
51 fiers front, frontleft, frontright, frontcenter, center, rear,
52 rearright, rearleft, woofer are used to specify channels to be
53 changed.
54
55 A simple mixer control must be specified. Only one device can be
56 controlled at a time.
57
58
59 get or sget <SCONTROL>
60 Shows the simple mixer control contents.
61
62 A simple mixer control must be specified. Only one device can be
63 controlled at a time.
64
65
66 controls
67 Shows a complete list of card controls.
68
69
70 contents
71 Shows a complete list of card controls with their contents.
72
73
74 cset <CONTROL> <PARAMETER> ...
75 Sets the card control contents. The identifier has these compo‐
76 nents: iface, name, index, device, subdevice, numid. The next
77 argument specifies the value of control.
78
79
80 cget <CONTROL>
81 Shows the card control contents. The identifier has same syntax
82 as for the cset command.
83
84
86 -c card
87
88 Select the card number to control. The device name created from
89 this parameter has syntax 'hw:N' where N is specified card num‐
90 ber.
91
92
93 -D device
94
95 Select the device name to control. The default control name is
96 'default'.
97
98
99 -s | --stdin
100
101 Read from stdin and execute the command on each line sequen‐
102 tially. When this option is given, the command in command-line
103 arguments is ignored.
104
105 Only sset and cset are accepted. Other commands are ignored.
106 The commands to unmatched ids are ignored without errors too.
107
108
109 -h Help: show syntax.
110
111
112 -q Quiet mode. Do not show results of changes.
113
114
115 -R Use the raw value for evaluating the percentage representation.
116 This is the default mode.
117
118
119 -M Use the mapped volume for evaluating the percentage representa‐
120 tion like alsamixer, to be more natural for human ear.
121
122
124 amixer -c 1 sset Line,0 80%,40% unmute cap
125 will set the second soundcard's left line input volume to 80%
126 and right line input to 40%, unmute it, and select it as a
127 source for capture (recording).
128
129
130 amixer -c 1 -- sset Master playback -20dB
131 will set the master volume of the second card to -20dB. If the
132 master has multiple channels, all channels are set to the same
133 value.
134
135
136 amixer -c 1 set PCM 2dB+
137 will increase the PCM volume of the second card with 2dB. When
138 both playback and capture volumes exist, this is applied to both
139 volumes.
140
141
142 amixer -c 2 cset iface=MIXER,name='Line Playback Volume",index=1 40%
143 will set the third soundcard's second line playback volume(s) to
144 40%
145
146
147 amixer -c 2 cset numid=34 40%
148 will set the 34th soundcard element to 40%
149
150
152 alsamixer(1)
153
154
156 None known.
157
158
160 amixer is by Jaroslav Kysela <perex@perex.cz>. This document is by
161 Paul Winkler <zarmzarm@erols.com> and Jaroslav Kysela <perex@perex.cz>.
162
163
164
165 11 Aug 2000 AMIXER(1)