chiark / gitweb /
playrtp: --api option instead of a new option for every audio API
[disorder] / doc / disorder-playrtp.1.in
CommitLineData
9086a105 1.\"
ba32e50c 2.\" Copyright (C) 2007-2009, 2013 Richard Kettlewell
9086a105 3.\"
e7eb3a27 4.\" This program is free software: you can redistribute it and/or modify
9086a105 5.\" it under the terms of the GNU General Public License as published by
e7eb3a27 6.\" the Free Software Foundation, either version 3 of the License, or
9086a105 7.\" (at your option) any later version.
e7eb3a27
RK
8.\"
9.\" This program is distributed in the hope that it will be useful,
10.\" but WITHOUT ANY WARRANTY; without even the implied warranty of
11.\" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12.\" GNU General Public License for more details.
13.\"
9086a105 14.\" You should have received a copy of the GNU General Public License
e7eb3a27 15.\" along with this program. If not, see <http://www.gnu.org/licenses/>.
9086a105
RK
16.\"
17.TH disorder-playrtp 1
18.SH NAME
19disorder-playrtp \- play DisOrder network broadcasts
20.SH SYNOPSIS
0d350ff0 21.B disorder\-playrtp
9086a105 22.RI [ OPTIONS ]
0d350ff0 23.RB [ \-\- ]
c897bb65 24.RI [[ ADDRESS ]
18e5cbdc 25.IR PORT ]
9086a105 26.SH DESCRIPTION
0d350ff0 27\fBdisorder\-playrtp\fR plays a network broadcast sent from the specified
9086a105 28address.
f2a6202f 29.PP
c897bb65 30If neither an address nor port are specified then the local DisOrder
6fba990c
RK
31configuration is consulted to find the server and the server is asked where the
32RTP stream is.
33.PP
34If just a port is specified then the RTP stream is assumed to be unicast or
35broadcast to that port.
36.PP
c897bb65
RK
37If an address and a port are specified then the RTP stream is assumed to be
38multicast to that group address and port.
9086a105 39.SH OPTIONS
b6579a61 40.TP
ba32e50c
RK
41.B \-\-api\fR, -\fB-A\fR \fIAPI\fR
42Select the playback API.
43The possibilities are, depending on platform and compilation options:
44.RS 8
b6579a61 45.TP
ba32e50c
RK
46.B alsa
47ALSA.
48Linux only.
b6579a61 49.TP
ba32e50c
RK
50.B oss
51OSS.
52.TP
53.B coreaudio
54Core Audio.
55OS X only.
56.TP
57.B command
58Pipe audio to a command.
59.RE
60.IP
61The default is the first of the possibilities above that is supported.
9086a105 62.TP
0d350ff0 63.B \-\-device \fIDEVICE\fR, \fB\-D \fIDEVICE\fR
c0c23a60 64Specifies the audio device to use.
f5fd9a6b
RK
65See
66.B "DEVICE NAMES"
67below for more information.
9086a105 68.TP
e979b844
RK
69.B \-\-command \fICOMMAND\fR, \fB-e \fICOMMAND\fR
70Instead of sending to a physical audio device, invoke \fICOMMAND\fR using the
71shell and write audio samples to its standard input.
72Currently the input will be 44100KHz 16-bit signed stereo samples.
73If \fICOMMAND\fR exits it is re-executed; any samples that had been written to
74the pipe but not processed by the previous instance will be lost.
75.IP
76.B \-\-device
c4e0bd8e 77is redundant with this option, but you might want to set
287ad384 78.BR \-\-pause\-mode .
e979b844
RK
79.IP
80As an example,
81.B "-e \(aqcat > dump\(aq"
82would log audio data to a file for later processing.
83You could convert it to another format with, for instance:
84.IP
85.B "sox -c2 -traw -r44100 -s -w dump dump.wav"
86.TP
287ad384
RK
87.B \-\-pause\-mode \fIMODE\fR, \fB-P \fIMODE
88Set the pause mode for \fB\-\-command\fR to either \fBsilence\fR (the default), in
89which pauses are represented by sending silent samples, or \fBsuspend\fR, in which
90writes to the subprocess are suspended, requiring it to infer a pause from flow
91control.
92.TP
0d350ff0 93.B \-\-config \fIPATH\fR, \fB\-C \fIPATH
c0c23a60
RK
94Set the configuration file.
95The default is
b6579a61
RK
96.IR pkgconfdir/config .
97.TP
0d350ff0 98.B \-\-socket \fIPATH\fR, \fB\-s \fIPATH
c0c23a60
RK
99Set the control socket.
100Normally this would not be used manually.
b6579a61 101.TP
0d350ff0 102.B \-\-help\fR, \fB\-h
f2a6202f
RK
103Display a usage message.
104.TP
0d350ff0 105.B \-\-version\fR, \fB\-V
f2a6202f
RK
106Display version number.
107.SS "Buffer Control Options"
108You shouldn't need to use these options.
7edc7e42 109Their effects are subject to change between version without warning.
0e72bf84 110You should consult the source code for details of their effects.
f2a6202f 111.TP
0d350ff0 112.B \-\-min \fIFRAMES\fR, \fB\-m \fIFRAMES\fR
c0c23a60 113Specifies the buffer low watermark in frames.
7edc7e42 114This also acts as the target buffer occupancy.
9086a105 115.TP
0d350ff0 116.B \-\-max \fIFRAMES\fR, \fB\-x \fIFRAMES\fR
c0c23a60
RK
117Specifies the maximum buffer size in frames.
118If there are this many frames in the buffer then reading from the
119network socket will be suspended.
0e72bf84 120The default is twice the \fB\-\-min\fR value.
9086a105 121.TP
0d350ff0 122.B \-\-rcvbuf \fIBYTES\fR, \fB\-R \fIBYTES\fR
c0c23a60 123Specifies socket receive buffer size.
0e72bf84
RK
124The default is not to change the buffer size, i.e. you get whatever the
125local operating system chooses.
c0c23a60 126The buffer size will not be reduced below the operating system's default.
7edc7e42
RK
127.TP
128.B \-\-monitor\fR, \fB\-M
129Periodically report how close to the buffer low watermark the buffer is.
130If you have trouble with poor playback quality, enable this option to see if
131the buffer is emptying out (or overfilling, though there are measures to
132prevent that from happening).
ba32e50c
RK
133.SS "Deprecated Options"
134These options may be removed in a future version.
135Use \fB\-\-api\fR instead.
136.TP
137.B \-\-alsa\fR, \fB\-a
138Use ALSA to play sound.
139Only available on Linux.
140.TP
141.B \-\-oss\fR, \fB\-o
142Use OSS to play sound.
143Only available on Linux and FreeBSD.
144.TP
145.B \-\-core\-audio\fR, \fB\-c
146Use Core Audio to play sound.
147Only available on Macs.
b6579a61
RK
148.SH "REMOTE CONTROL"
149The
0d350ff0 150.B \-\-socket
b6579a61 151option is used by Disobedience to control a background
0d350ff0 152.B disorder\-playrtp
c0c23a60
RK
153daemon.
154The socket will be created as a UNIX domain stream socket.
155When a connection is received a single line is read from it.
156The following commands are known:
b6579a61
RK
157.TP
158.B stop
159Causes
0d350ff0 160.B disorder\-playrtp
b6579a61
RK
161to terminate.
162.TP
163.B query
164Causes the string "running" to be sent back.
165.PP
c0c23a60
RK
166Other commands are ignored.
167After the first command the connection is closed.
b6579a61
RK
168Only one connection at a time will be serviced.
169.PP
170This protocol is not guaranteed to be stable.
f5fd9a6b
RK
171.SH "DEVICE NAMES"
172.SS "Core Audio"
173On a Mac, the device name can either be the human-readable name of the desired
174output or its UID.
175To get a list of the human-readable names, visit System Preferences -> Sound;
176the Type column has the name you want.
177.PP
178For example, you might use "Built-in Output" for the built-in speaker
179or "Built-in Line Output" if you have connected external speakers.
180Remember to quote the name.
9086a105 181.SH "SEE ALSO"
b6579a61 182.BR disobedience (1),
9086a105
RK
183.BR disorder_config (5),
184.BR disorderd (8)
185.\" Local Variables:
186.\" mode:nroff
187.\" fill-column:79
188.\" End: