[BACK]Return to sndioctl.1 CVS log [TXT][DIR] Up to [local] / src / usr.bin / sndioctl

Annotation of src/usr.bin/sndioctl/sndioctl.1, Revision 1.7

1.7     ! ratchov     1: .\" $OpenBSD: sndioctl.1,v 1.6 2020/04/16 10:13:12 ratchov Exp $
1.1       ratchov     2: .\"
                      3: .\" Copyright (c) 2014-2020 Alexandre Ratchov <alex@caoua.org>
                      4: .\"
                      5: .\" Permission to use, copy, modify, and distribute this software for any
                      6: .\" purpose with or without fee is hereby granted, provided that the above
                      7: .\" copyright notice and this permission notice appear in all copies.
                      8: .\"
                      9: .\" THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
                     10: .\" WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
                     11: .\" MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
                     12: .\" ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
                     13: .\" WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
                     14: .\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
                     15: .\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
                     16: .\"
1.6       ratchov    17: .Dd $Mdocdate: April 16 2020 $
1.1       ratchov    18: .Dt SNDIOCTL 1
                     19: .Os
                     20: .Sh NAME
                     21: .Nm sndioctl
                     22: .Nd control audio parameters
                     23: .Sh SYNOPSIS
                     24: .Nm
                     25: .Bk -words
1.6       ratchov    26: .Op Fl dimnqv
1.1       ratchov    27: .Op Fl f Ar device
                     28: .Op Ar command ...
                     29: .Ek
                     30: .Sh DESCRIPTION
                     31: The
                     32: .Nm
                     33: utility can display or change parameters of
                     34: .Xr sndio 7
                     35: audio devices.
                     36: The options are as follows:
                     37: .Bl -tag -width Ds
                     38: .It Fl d
                     39: Dump the raw list of available parameters and exit.
                     40: Useful as a debugging tool.
                     41: .It Fl f Ar device
                     42: Use this
                     43: .Xr sndio 7
                     44: audio device.
                     45: .It Fl i
                     46: Display characteristics of requested parameters
                     47: instead of their values.
                     48: .It Fl m
                     49: Monitor and display audio parameter changes.
1.5       ratchov    50: .It Fl n
                     51: Suppress printing of the variable name.
1.6       ratchov    52: .It Fl q
                     53: Suppress all printing when setting a variable.
1.1       ratchov    54: .It Fl v
                     55: Enable verbose mode, a.k.a. multi-channel mode.
                     56: By default parameters affecting different channels
                     57: of the same stream are disguised as a single mono
                     58: parameter to hide details that are not essential.
                     59: .El
                     60: .Pp
                     61: If no commands are specified all valid parameters are displayed on
                     62: .Em stdout .
                     63: Unless
                     64: .Fl d ,
                     65: .Fl m ,
1.5       ratchov    66: .Fl n ,
1.1       ratchov    67: or
                     68: .Fl i
                     69: are used, displayed parameters are valid commands.
                     70: The set of available controls depends on the control device.
                     71: .Pp
                     72: Commands use the following two formats to display and set
                     73: parameters respectively:
                     74: .Pp
                     75: .Dl group/stream[channel].function
                     76: .Dl group/stream[channel].function=value
                     77: .Pp
                     78: On the left-hand side are specified the optional parameter group,
                     79: the affected stream name, and the optional channel number.
                     80: Examples of left-hand side terms:
                     81: .Pp
                     82: .Dl output.level
                     83: .Dl hw/spkr[6].mute
                     84: .Pp
1.4       ratchov    85: Values are numbers between 0 and 1.
1.1       ratchov    86: Two-state controls (switches) take either 0 or 1 as value,
                     87: typically corresponding to the
                     88: .Em off
                     89: and
                     90: .Em on
                     91: states respectively.
                     92: .Pp
                     93: If a decimal is prefixed by the plus (minus) sign then
                     94: the given value is added to (subtracted from) the
                     95: current value of the control.
                     96: If
                     97: .Qq \&!
                     98: is used instead of a number, then the switch is toggled.
                     99: Examples:
                    100: .Pp
1.4       ratchov   101: .Dl hw/spkr.level=0.85
                    102: .Dl hw/spkr.level=+0.1
1.1       ratchov   103: .Dl hw/spkr.mute=0
                    104: .Dl hw/spkr.mute=!
                    105: .Sh EXAMPLES
                    106: The following will set all
                    107: .Ar level
                    108: parameters that control the
                    109: .Ar spkr
1.3       ratchov   110: stream to zero:
1.1       ratchov   111: .Pp
                    112: .Dl $ sndioctl hw/spkr.level=0
                    113: .Pp
                    114: The following commands are equivalent:
                    115: .Pp
                    116: .Dl $ sndioctl hw/record[0].source=mic0 hw/record[1].source=mic1
                    117: .Dl $ sndioctl hw/record.source=mic
                    118: .Sh SEE ALSO
                    119: .Xr sioctl_open 3