Sync usage with man page.
[netbsd-mini2440.git] / usr.bin / audio / ctl / audioctl.1
blob3e529df21b44ecee44d9d57365feefa82809ca2f
1 .\" $NetBSD: audioctl.1,v 1.17 2003/02/25 10:35:36 wiz Exp $
2 .\"
3 .\" Copyright (c) 1997, 1999 The NetBSD Foundation, Inc.
4 .\" All rights reserved.
5 .\"
6 .\" Author: Lennart Augustsson and Charles M. Hannum
7 .\"
8 .\" Redistribution and use in source and binary forms, with or without
9 .\" modification, are permitted provided that the following conditions
10 .\" are met:
11 .\" 1. Redistributions of source code must retain the above copyright
12 .\"    notice, this list of conditions and the following disclaimer.
13 .\" 2. Redistributions in binary form must reproduce the above copyright
14 .\"    notice, this list of conditions and the following disclaimer in the
15 .\"    documentation and/or other materials provided with the distribution.
16 .\"
17 .\" THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
18 .\" ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
19 .\" TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
20 .\" PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
21 .\" BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
22 .\" CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
23 .\" SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
24 .\" INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
25 .\" CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
26 .\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
27 .\" POSSIBILITY OF SUCH DAMAGE.
28 .\"
29 .Dd January 27, 2002
30 .Dt AUDIOCTL 1
31 .Os
32 .Sh NAME
33 .Nm audioctl
34 .Nd control audio device
35 .Sh SYNOPSIS
36 .Nm
37 .Op Fl d Ar device
38 .Op Fl n
39 .Fl a
40 .Nm
41 .Op Fl d Ar device
42 .Op Fl n
43 .Ar name ...
44 .Nm
45 .Op Fl d Ar device
46 .Op Fl n
47 .Fl w
48 .Ar name=value ...
49 .Sh DESCRIPTION
50 The
51 .Nm
52 command displays or sets various audio system driver variables.
53 If a list of variables is present on the command line, then
54 .Nm
55 prints the current value of those variables for the specified device.
56 If the
57 .Fl a
58 flag is specified, all variables for the device are printed.
59 If the
60 .Fl w
61 flag is specified
62 .Nm
63 attempts to set the specified variables to the given values.
64 .Pp
65 The
66 .Fl d
67 flag can be used to give an alternative audio control device, the default is
68 .Pa /dev/audioctl0 .
69 .Pp
70 The
71 .Fl n
72 flag suppresses printing of the variable name.
73 .Sh ENVIRONMENT
74 .Bl -tag -width AUDIOCTLDEVICE
75 .It Pa AUDIOCTLDEVICE
76 the audio control device to use.
77 .El
78 .Sh FILES
79 .Bl -tag -width /dev/audioctl0 -compact
80 .It Pa /dev/audio0
81 audio I/O device (resets on open)
82 .It Pa /dev/audioctl0
83 audio control device
84 .It Pa /dev/sound0
85 audio I/O device (does not reset on open)
86 .El
87 .Sh EXAMPLES
88 To set the playing sampling rate to 11025, you can use
89 .Dl audioctl -w play.sample_rate=11025
90 To set all of the play parameters for CD-quality audio, you can use
91 .Dl audioctl -w play=44100,2,16,slinear_le
92 Note that many of the variables that can be inspected and changed with
93 .Nm
94 are reset when
95 .Pa /dev/audio0
96 is opened.
97 This can be circumvented by using
98 .Pa /dev/sound0
99 instead.
100 .Sh SEE ALSO
101 .Xr audioplay 1 ,
102 .Xr audiorecord 1 ,
103 .Xr mixerctl 1 ,
104 .Xr audio 4 ,
105 .Xr sysctl 8
106 .Sh HISTORY
109 command first appeared in
110 .Nx 1.3 .
111 .Sh COMPATIBILITY
112 The old
113 .Fl f
114 flag is still supported.
115 This support will be removed eventually.