Merge branch 't/audioc_cleanups'
[paraslash.git] / ggo / audiod.m4
1 include(header.m4)
2 define(CURRENT_PROGRAM,para_audiod)
3 define(DEFAULT_CONFIG_FILE,~/.paraslash/audiod.conf)
4
5 <qu>
6 #########################
7 section "General options"
8 #########################
9 </qu>
10
11 include(loglevel.m4)
12 include(color.m4)
13 include(config_file.m4)
14 include(logfile.m4)
15 include(log_timing.m4)
16 include(daemon.m4)
17 include(user.m4)
18 include(group.m4)
19
20 <qu>
21 ########################
22 section "Audiod options"
23 ########################
24
25 option "force" F
26 #~~~~~~~~~~~~~~~
27 "force startup"
28 flag off
29 details="
30         If this flag is not given, para_audiod refuses to start if the
31         well-known socket file (see the --socket option) already exists
32         because this usually means that para_audiod is already running
33         and listening on that socket. After a crash or if para_audiod
34         received a SIGKILL signal, a stale socket file might remain and
35         you have to use --force once to force startup of para_audiod.
36 "
37
38 option "mode" m
39 #~~~~~~~~~~~~~~
40 "startup mode"
41 string typestr="mode"
42 default="on"
43 optional
44 details="
45         Para_audiod supports three modes of operation: On, off and
46         standby (sb).  This option selects the mode that should be
47         used on startup. If para_audiod operates in \"on\" mode, it
48         will connect to para_server in order to receive its status
49         information. If para_server announces the availability of an
50         audio stream, para_audiod will automatically download, decode
51         and play the audio stream according to the given stream I/O
52         options, see below.
53
54         In \"standby\" mode, para_audiod will only receive the
55         status information from para_server but will not download
56         the audio stream.
57
58         In \"off\" mode, para_audiod does not connect para_server at
59         all, but still listens on the local socket for connections.
60 "
61
62 option "socket" s
63 #~~~~~~~~~~~~~~~~
64 "well-known socket"
65 string typestr="filename"
66 optional
67 details="
68         Para_audiod uses a \"well-known\" socket to listen
69         on for connections from para_audioc. This socket is a
70         special file in the file system; its location defaults to
71         /var/paraslash/audiod_sock.<host_name>.
72
73         para_audioc, the client program used to connect to para_audiod,
74         opens this socket in order to talk to para_audiod.  If the
75         default value for para_audiod is changed, para_audioc must be
76         instructed to use also \"filename\" for connecting para_audiod.
77 "
78
79 option "user_allow" -
80 #~~~~~~~~~~~~~~~~~~~~
81 "allow this uid"
82 int typestr="uid"
83 default="-1"
84 optional
85 multiple
86 details="
87         Allow the user identified by \"uid\" to connect to para_audiod.
88         May be specified multiple times. If not specified at all,
89         all users are allowed to connect.
90
91         This feature requires unix socket credentials and is currently
92         only supported on Linux systems. On other operating systems,
93         the option is silently ignored and all local users are allowed
94         to connect to para_audiod.
95 "
96
97 option "clock_diff_count" -
98 #~~~~~~~~~~~~~~~~~~~~~~~~~~
99 "sync clock on startup"
100 int typestr="count"
101 default="0"
102 optional
103 details="
104         Check the clock difference between the host running para_server
105         and the local host running para_audiod that many times before
106         starting any stream I/0. Set this to non-zero for non-local
107         setups if the clocks of these two hosts are not synchronized
108         by ntp or similar.
109 "
110
111 #############################
112 section "Stream I/O options"
113 #############################
114
115 option "receiver" r
116 #~~~~~~~~~~~~~~~~~~
117 "select receiver"
118 string typestr="receiver_spec"
119 default="http"
120 optional
121 multiple
122 details="
123         This option may be given multiple times, for each audio format
124         separately. If multiple definitions for an audio format are
125         given, the first one is selected.
126
127         The \"receiver_spec\" consists of an audio format specifier
128         and one or more receiver arguments, separated by a colon.
129
130         The audio format specifier is a regular expression which
131         specifies the set of audio formats for which this option
132         should apply.
133
134         If any receiver options are present, the whole receiver
135         argument must be quoted:
136
137                 -r 'mp3:http -i my.host.org -p 8009'
138
139         Since a single dot '.' matches the name of any audio format,
140         specifying '.' instead of 'mp3' above activates the http
141         receiver for all audio formats.
142
143 "
144
145 option "no_default_filters" D
146 #~~~~~~~~~~~~~~~~~~~~~~~~~~~~
147 "deprecated"
148 flag off
149 details = "
150         This option is was deprecated in paraslash-0.4.10 and has no
151         effect any more. It will be removed in the next version.
152 "
153
154 option "filter" f
155 #~~~~~~~~~~~~~~~~
156 "Specify the filter configuration."
157 string typestr = "filter_spec"
158 optional
159 multiple
160 details = "
161         This option may be given multiple times. The \"filter_spec\"
162         consists of an audio format specifier (see above), the name
163         of the filter, and any options for that filter. Note that
164         order matters.
165
166         The compiled-in defaults apply to all audio formats for which
167         no --filter option was given. These defaults depend on the
168         receiver being used.
169
170         For HTTP streams, only the decoder for the current audio
171         format is activated. UDP and DCCP streams, on the other
172         hand, are sent FEC-encoded by para_server. In order to play
173         such streams, the receiver output must be FEC-decoded first,
174         i.e. fed to the fecdec filter. Therefore the default for UDP
175         and DCCP streams is to activate the fecdec filter, followed
176         by the decoding filter for the audio format.
177
178         Examples:
179
180                 --filter 'mp3:mp3dec'
181
182                 --filter 'mp3|aac:compress --inertia 5 --damp 2'
183
184                 --filter '.:fecdec'
185
186 "
187
188 option "writer" w
189 #~~~~~~~~~~~~~~~~
190 "Specify stream writer."
191 string typestr="writer_spec"
192 optional
193 multiple
194 details="
195         May be given multiple times, even multiple times for the same
196         audio format.  Default value is \"alsa\" for all supported
197         audio formats. Example:
198
199                 --writer 'aac|wma:oss'
200
201 "
202
203 option "stream_delay" -
204 #~~~~~~~~~~~~~~~~~~~~~~
205 "time for client sync"
206 int typestr="milliseconds"
207 default="200"
208 optional
209 details="
210         Add the given amount of milliseconds to the stream start time
211         announced by para_server and do not send data to the writer
212         before that time (modulo clock difference).
213
214         This is useful mainly for synchronizing the audio output of
215         different clients.
216 "
217 </qu>