1.\"- 2.\" Copyright (c) 2021 Christos Margiolis <christos@FreeBSD.org> 3.\" 4.\" Permission is hereby granted, free of charge, to any person obtaining a copy 5.\" of this software and associated documentation files (the "Software"), to deal 6.\" in the Software without restriction, including without limitation the rights 7.\" to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 8.\" copies of the Software, and to permit persons to whom the Software is 9.\" furnished to do so, subject to the following conditions: 10.\" 11.\" The above copyright notice and this permission notice shall be included in 12.\" all copies or substantial portions of the Software. 13.\" 14.\" THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 15.\" IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 16.\" FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 17.\" AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 18.\" LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 19.\" OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 20.\" THE SOFTWARE. 21.\" 22.\" $FreeBSD$ 23.\" 24.Dd March 18, 2022 25.Dt MIXER 8 26.Os 27.Sh NAME 28.Nm mixer 29.Nd manipulate soundcard mixer controls 30.Sh SYNOPSIS 31.Nm 32.Op Fl f Ar device 33.Op Fl d Ar unit 34.Op Fl os 35.Op Ar dev Ns Op Cm \&. Ns Ar control Ns Op Cm \&= Ns Ar value 36.Ar ... 37.Nm 38.Op Fl d Ar unit 39.Op Fl os 40.Fl a 41.Nm 42.Fl h 43.Sh DESCRIPTION 44The 45.Nm 46utility is used to set and display soundcard mixer device controls. 47.Pp 48The options are as follows: 49.Bl -tag -width "-f device" 50.It Fl a 51Print the values for all mixer devices available in the system 52.Pq see Sx FILES . 53.It Fl d Ar unit 54Change the default audio card to 55.Ar unit . 56The unit has to be an integer value. 57To see what unit values are available, look at the number each mixer device has by running 58.Nm . 59.It Fl f Ar device 60Open 61.Ar device 62as the mixer device 63.Pq see Sx FILES . 64.It Fl h 65Print a help message. 66.It Fl o 67Print mixer values in a format suitable for use inside scripts. 68The mixer's header (name, audio card name, ...) will not be printed. 69.It Fl s 70Print only the recording source(s) of the mixer device. 71.El 72.Pp 73The list of mixer devices that may be modified are: 74.Bd -ragged -offset indent 75.Cm vol , bass , treble , synth , pcm , speaker , line , mic , cd , mix , 76.Cm pcm2 , rec , 77.Cm igain , ogain , 78.Cm line1 , line2 , line3 , 79.Cm dig1 , dig2 , dig3 , 80.Cm phin , phout , video , radio , 81and 82.Cm monitor . 83.Ed 84.Pp 85Not all mixer devices are available. 86.Pp 87Without any arguments, 88.Nm 89displays all information for each one of the mixer's supported devices to 90.Ar stdout . 91If the 92.Ar dev 93argument is specified, 94.Nm 95displays only the values for 96.Ar dev . 97More than one device may be specified. 98.Pp 99Commands use the following format: 100.Bl -column xxxxxxxxxxxxxxxxxxxxxxxx -offset indent 101.It Sy Name Ta Sy Action 102.It Ar dev Ta Display all controls 103.It Ar dev Ns Cm \&. Ns Ar control Ta Display only the specified control 104.It Ar dev Ns Cm \&. Ns Ar control Ns Cm \&= Ns Ar value Ta Set control value 105.El 106.Pp 107The available controls are as follows (replace 108.Ar dev 109with one of the available devices): 110.Sm off 111.Bl -column xxxxxxxxxxxxxxxxxxxxxxxx -offset indent 112.It Sy Name Ta Sy Value 113.It Ar dev Cm .volume Ta Xo 114.Ar vol | 115.Oo Cm \&+ | Cm \&- Oc Ar lvol 116.Oo Cm \&: Oo Cm \&+ | Cm \&- Oc Ar rvol Oc 117.Xc 118.It Ar dev Cm .mute Ta Cm 0 | 1 | ^ 119.It Ar dev Cm .recsrc Ta Cm ^ | + | - | = 120.El 121.Sm on 122.Pp 123The 124.Ar dev Ns Cm .volume 125control modifies a device's volume. 126The optional 127.Ar lvol 128and/or 129.Ar rvol 130values have to be specified. 131The values have to be normalized 32-bit floats, from 0.0 to 1.0 inclusively. 132If no 133.Ql \&. 134character is present, the value is treated like a percentage, for backwards compatibility. 135If the left or right volume values are prefixed with 136.Cm + 137or 138.Cm - , 139the value following will be used as a relative adjustment, modifying the 140current settings by the amount specified. 141.Pp 142The 143.Ar dev Ns Cm .mute 144control (un)mutes a device. 145The following values are available: 146.Bl -tag -width = -offset indent 147.It Cm 0 148unmutes 149.Ar dev 150.It Cm 1 151mutes 152.Ar dev 153.It Cm ^ 154toggles the mute of 155.Ar dev 156.El 157.Pp 158The 159.Ar dev Ns Cm .recsrc 160control modifies the recording sources of a mixer. 161.Nm 162marks devices which can be used as a recording source with 163.Sy rec . 164Recording sources are marked with 165.Sy src . 166To modify the recording source you can use one of the following modifiers 167on a 168.Sy rec 169device: 170.Bl -tag -width = -offset indent 171.It Cm ^ 172toggles 173.Ar dev 174of possible recording devices 175.It Cm + 176adds 177.Ar dev 178to possible recording devices 179.It Cm - 180removes 181.Ar dev 182from possible recording devices 183.It Cm = 184sets the recording device to 185.Ar dev 186.El 187.Sh FILES 188.Bl -tag -width /dev/mixerN -compact 189.It Pa /dev/mixerN 190The mixer device, where 191.Ar N 192is the number of that device, for example 193.Ar /dev/mixer0 . 194PCM cards and mixers have a 1:1 relationship, which means that 195.Pa /dev/mixer0 196is the mixer for 197.Pa /dev/pcm0 198and so on. 199By default, 200.Nm 201prints both the audio card's number and the mixer associated with it 202in the form of 203.Ar pcmN:mixer . 204The 205.Pa /dev/mixer 206file, although it does not exist in the filesystem, points to the default 207mixer device and is the file 208.Nm 209opens when the 210.Fl f Ar device 211option has not been specified. 212.El 213.Sh EXAMPLES 214Change the volume for the 215.Cm vol 216device of the 217.Pa /dev/mixer0 218mixer device to 0.65: 219.Bd -literal -offset indent 220$ mixer -f /dev/mixer0 vol.volume=0.65 221.Ed 222.Pp 223Increase the 224.Cm mic 225device's left volume by 0.10 and decrease the right 226volume by 0.05: 227.Bd -literal -offset indent 228$ mixer mic.volume=+0.10:-0.05 229.Ed 230.Pp 231Toggle the mute for 232.Cm vol : 233.Bd -literal -offset indent 234$ mixer vol.mute=^ 235.Ed 236.Pp 237Set 238.Cm mic 239and toggle 240.Cm line 241recording sources: 242.Bd -literal -offset indent 243$ mixer mic.recsrc=+ line.recsrc=^ 244.Ed 245.Pp 246Dump 247.Pa /dev/mixer0 248information to a file and retrieve back later: 249.Bd -literal -offset indent 250$ mixer -f /dev/mixer0 -o > info 251\&... 252$ mixer -f /dev/mixer0 `cat info` 253.Ed 254.Sh SEE ALSO 255.Xr mixer 3 , 256.Xr sound 4 , 257.Xr sysctl 8 258.Sh HISTORY 259The 260.Nm 261utility first appeared in 262.Fx 2.0.5 263and was rewritten completely in 264.Fx 14.0 . 265.Sh AUTHORS 266.An Christos Margiolis Aq Mt christos@FreeBSD.org 267