source: doc/aubiocut.sgml @ beea3cf

feature/autosinkfeature/cnnfeature/cnn_orgfeature/constantqfeature/crepefeature/crepe_orgfeature/pitchshiftfeature/pydocstringsfeature/timestretchfix/ffmpeg5pitchshiftsamplertimestretchyinfft+
Last change on this file since beea3cf was beea3cf, checked in by Paul Brossier <piem@altern.org>, 18 years ago

update the manual pages
update the manual pages

  • Property mode set to 100644
File size: 9.0 KB
RevLine 
[8d0b707]1<!doctype refentry PUBLIC "-//OASIS//DTD DocBook V4.1//EN" [
2
3<!-- Process this file with docbook-to-man to generate an nroff manual
4     page: `docbook-to-man manpage.sgml > manpage.1'.  You may view
5     the manual page with: `docbook-to-man manpage.sgml | nroff -man |
6     less'.  A typical entry in a Makefile or Makefile.am is:
7
8manpage.1: manpage.sgml
9        docbook-to-man $< > $@
10
11   
12        The docbook-to-man binary is found in the docbook-to-man package.
13        Please remember that if you create the nroff version in one of the
14        debian/rules file targets (such as build), you will need to include
15        docbook-to-man in your Build-Depends control field.
16
17  -->
18
19  <!-- Fill in your name for FIRSTNAME and SURNAME. -->
20  <!ENTITY dhfirstname "<firstname>Paul</firstname>">
21  <!ENTITY dhsurname   "<surname>Brossier</surname>">
22  <!-- Please adjust the date whenever revising the manpage. -->
23  <!ENTITY dhdate      "<date>December 1, 2004</date>">
24  <!-- SECTION should be 1-8, maybe w/ subsection other parameters are
25       allowed: see man(7), man(1). -->
26  <!ENTITY dhsection   "<manvolnum>1</manvolnum>">
27  <!ENTITY dhemail     "<email>piem@altern.org</email>">
28  <!ENTITY dhusername  "Paul Brossier">
29  <!ENTITY dhucpackage "<refentrytitle>AUBIOCUT</refentrytitle>">
30  <!ENTITY dhpackage   "aubiocut">
31
32  <!ENTITY debian      "<productname>Debian</productname>">
33  <!ENTITY gnu         "<acronym>GNU</acronym>">
34  <!ENTITY gpl         "&gnu; <acronym>GPL</acronym>">
35]>
36
37<refentry>
38  <refentryinfo>
39    <address>
40      &dhemail;
41    </address>
42    <author>
43      &dhfirstname;
44      &dhsurname;
45    </author>
46    <copyright>
47      <year>2003</year>
48      <holder>&dhusername;</holder>
49    </copyright>
50    &dhdate;
51  </refentryinfo>
52  <refmeta>
53    &dhucpackage;
54
55    &dhsection;
56  </refmeta>
57  <refnamediv>
58    <refname>&dhpackage;</refname>
59
[beea3cf]60    <refpurpose>a command line tool to extract onsets and tempo from sound files.</refpurpose>
[8d0b707]61
62  </refnamediv>
63  <refsynopsisdiv>
64    <cmdsynopsis>
65      <command>&dhpackage; <parameter>[options] -i soundfile</parameter></command>
66    </cmdsynopsis>
67  </refsynopsisdiv>
68  <refsect1>
69    <title>DESCRIPTION</title>
70
[beea3cf]71    <para>This manual page documents briefly the <command>&dhpackage;</command> command.</para>
72
73    <para>The <emphasis>aubio</emphasis> library provides a small set of
74    functions to extract events and objects from audio, from live streams or
75    still files. Onsets are used to label the beginning of notes, pitches to
76    label their height.</para>
77
78    <para><command>&dhpackage;</command> attempts to detect onset times, the
79    beginning of discreted sound events, or beat locations, in audio
80    signals.</para>
81
82    <para>When using the <option>--cut</option> option,
83    <command>&dhpackage;</command> takes an input sound file and produce small
84    files sliced at onset locations (or silences). The slices can then be sent
85    for example to a player, a sequencer, or a sampler.</para>
86
87    <para>A plotting module is available via the Gnuplot Python package.</para>
[8d0b707]88
89  </refsect1>
90  <refsect1>
91    <title>OPTIONS</title>
92
[beea3cf]93    <para>This program follows the usual GNU command line syntax, with long
94    options starting with two dashes (`-').  A summary of options is included
95    below.</para>
[8d0b707]96
97<variablelist>
98  <varlistentry>
99  <term><option>-i</option>
100  <option>--input filein</option></term>
101  <listitem>
102  <para>input sound file</para>
103  </listitem>
104  </varlistentry>
105  <varlistentry>
106  <term><option>-m</option>
107  <option>--mode onset_detection_mode</option></term>
108  <listitem>
109  <para>onset detection mode [default=dual] complexdomain|hfc|phase|specdiff|energy|kl|mkl|dual</para>
110  </listitem>
111  </varlistentry>
112  <varlistentry>
[beea3cf]113  <term><option>-b</option>
114  <option>--beat</option></term>
115  <listitem>
116  <para>detect beats and output beat locations</para>
117  </listitem>
118  </varlistentry>
119  <varlistentry>
[8d0b707]120  <term><option>-B</option>
121  <option>--bufsize=BUFSIZE</option></term>
122  <listitem>
[1281e5c]123  <para>buffer size [default=512]</para>
[8d0b707]124  </listitem>
125  </varlistentry>
126  <varlistentry>
127  <term><option>-H</option>
128  <option>--hopsize=HOPSIZE</option></term>
129  <listitem>
[1281e5c]130  <para>overlap size [default=256]</para>
[8d0b707]131  </listitem>
132  </varlistentry>
133  <varlistentry>
134  <term><option>-t</option>
135  <option>--threshold=THRESHOLD</option></term>
136  <listitem>
[1281e5c]137  <para>onset peak picking threshold [default=0.3]</para>
138  </listitem>
139  </varlistentry>
140  <varlistentry>
141  <term><option>-C</option>
142  <option>--dcthreshold=DCTHRESHOLD</option></term>
143  <listitem>
144  <para>onset peak picking DC component [default=1.]</para>
[8d0b707]145  </listitem>
146  </varlistentry>
147  <varlistentry>
148  <term><option>-s</option>
149  <option>--silence=SILENCE</option></term>
150  <listitem>
151  <para>silence threshold [default=-70]</para>
152  </listitem>
153  </varlistentry>
154  <varlistentry>
[1281e5c]155  <term><option>-M</option>
156  <option>--mintol=MINIOI</option></term>
157  <listitem>
158  <para>minimum inter onset interval [default=0.048s]</para>
159  </listitem>
160  </varlistentry>
161  <varlistentry>
[8d0b707]162  <term><option>-D</option>
163  <option>--delay=DELAY</option></term>
164  <listitem>
165  <para>number of seconds to take back [default=system]
[1281e5c]166  default system delay is 3*hopsize/samplerate</para>
[8d0b707]167  </listitem>
168  </varlistentry>
169  <varlistentry>
170  <term><option>-L</option>
171  <option>--localmin</option></term>
172  <listitem>
173  <para>use local minima after peak detection</para>
174  </listitem>
175  </varlistentry>
176  <varlistentry>
177  <term><option>-c</option>
178  <option>--cut</option></term>
179  <listitem>
180  <para>cut input sound file at detected labels (best used with option -L)</para>
181  </listitem>
182  </varlistentry>
183  <varlistentry>
184  <term><option>-d</option>
185  <option>--derivate</option></term>
186  <listitem>
187  <para>derivate onset detection function</para>
188  </listitem>
189  </varlistentry>
190  <varlistentry>
191  <term><option>-S</option>
192  <option>--silencecut</option></term>
193  <listitem>
194  <para>outputs silence locations instead of onset locations</para>
195  </listitem>
196  </varlistentry>
197  <varlistentry>
198  <term><option>-z</option>
199  <option>--zerocross=ZEROTHRES</option></term>
200  <listitem>
201  <para>zero-crossing threshold for slicing [default=0.00008]</para>
202  </listitem>
203  </varlistentry>
204  <varlistentry>
[beea3cf]205  <term><option>-f</option>
206  <option>--function</option></term>
[8d0b707]207  <listitem>
[beea3cf]208  <para>print detection function</para>
[8d0b707]209  </listitem>
210  </varlistentry>
211  <varlistentry>
[beea3cf]212  <term><option>-q</option>
213  <option>--quiet</option></term>
[1281e5c]214  <listitem>
[beea3cf]215  <para>be quiet</para>
[1281e5c]216  </listitem>
217  </varlistentry>
218  <varlistentry>
[beea3cf]219  <term><option>-h</option>
220  <option>--help</option></term>
[1281e5c]221  <listitem>
[beea3cf]222  <para>Show a summary of options.</para>
[1281e5c]223  </listitem>
224  </varlistentry>
225  <varlistentry>
[beea3cf]226  <term><option>-v</option>
227  <option>--verbose</option></term>
[1281e5c]228  <listitem>
[beea3cf]229  <para>make lots of noise [default]</para>
[1281e5c]230  </listitem>
231  </varlistentry>
[beea3cf]232  </variablelist>
233
234  <refsect2>
235    <title>Plotting options</title>
236
237  <para>When the Python interface to Gnuplot is installed, the following
238  additional options are available.</para>
239
240  <variablelist>
[1281e5c]241  <varlistentry>
[beea3cf]242  <term><option>-p</option>
243  <option>--plot</option></term>
[1281e5c]244  <listitem>
[beea3cf]245  <para>draw plot</para>
[1281e5c]246  </listitem>
247  </varlistentry>
248  <varlistentry>
[beea3cf]249  <term><option>-n</option>
250  <option>--no-onsets</option></term>
[8d0b707]251  <listitem>
[beea3cf]252  <para>do not plot detected onsets, only detection functions</para>
[8d0b707]253  </listitem>
254  </varlistentry>
255  <varlistentry>
[beea3cf]256  <term><option>-x</option>
257  <option>--xsize=SIZE</option></term>
[8d0b707]258  <listitem>
[beea3cf]259  <para>define horizontal plot size [default=1.]</para>
[8d0b707]260  </listitem>
261  </varlistentry>
262  <varlistentry>
[beea3cf]263  <term><option>-y</option>
264  <option>--ysize=SIZE</option></term>
[8d0b707]265  <listitem>
[beea3cf]266  <para>define vertical plot size [default=1.]</para>
[8d0b707]267  </listitem>
268  </varlistentry>
269  <varlistentry>
[beea3cf]270  <term><option>-O</option>
271  <option>--outplot=OUTPLOT</option></term>
[8d0b707]272  <listitem>
[beea3cf]273  <para>save plot to output.{ps,eps,png,svg} instead of displaying it</para>
[8d0b707]274  </listitem>
275  </varlistentry>
[beea3cf]276  </variablelist>
277  </refsect2>
278
279  </refsect1>
280  <refsect1>
281  <title>BUGS</title>
282
283  <para>For now the program has only been tested on audio signals sampled at
284  44.1&nbsp;kHz.</para>
285
286  </refsect1>
[8d0b707]287
288  <refsect1>
289    <title>SEE ALSO</title>
290
291    <para>
292    <command>aubioonset</command>(1)
293    <command>aubiotrack</command>(1)
294    <command>aubionotes</command>(1)
295    <command>aubiopitch</command>(1)
296    </para>
297
298  </refsect1>
299
300  <refsect1>
301    <title>AUTHOR</title>
302
303    <para>This manual page was written by &dhusername; (&dhemail;). Permission
304    is granted to copy, distribute and/or modify this document under the terms
305    of the &gnu; General Public License, Version 2 any later version published
306    by the Free Software Foundation.</para>
307
308    <para>On Debian systems, the complete text of the GNU General Public
309    License can be found in /usr/share/common-licenses/GPL.</para>
310
311  </refsect1>
312</refentry>
313
314<!-- Keep this comment at the end of the file
315Local variables:
316mode: sgml
317sgml-omittag:t
318sgml-shorttag:t
319sgml-minimize-attributes:nil
320sgml-always-quote-attributes:t
321sgml-indent-step:2
322sgml-indent-data:t
323sgml-parent-document:nil
324sgml-default-dtd-file:nil
325sgml-exposed-tags:nil
326sgml-local-catalogs:nil
327sgml-local-ecat-files:nil
328End:
329-->
330
331
Note: See TracBrowser for help on using the repository browser.