source: doc/aubiotrack.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: 6.4 KB
Line 
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>AUBIOTRACK</refentrytitle>">
30  <!ENTITY dhpackage   "aubiotrack">
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
60    <refpurpose>a command line tool for real time beat tracking</refpurpose>
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
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 tap the beat and detect
79    beat locations in musical sounds. When started with an input file argument
80    (<option>-i</option>), aubiotrack print the beat locations in second
81    detected in the file.</para>
82   
83    <para>When started without an input file argument
84    (<option>--input</option>), <command>&dhpackage;</command> creates jack
85    input and output ports. When an input file is given, the results are given
86    on the console.</para>
87
88  </refsect1>
89  <refsect1>
90    <title>OPTIONS</title>
91
92    <para>This program follows the usual GNU command line syntax, with long
93    options starting with two dashes (`-').  A summary of options is included
94    below.</para>
95
96<variablelist>
97  <varlistentry>
98  <term><option>-i</option>
99  <option>--input filein</option></term>
100  <listitem>
101
102  <para>Run analysis on this audio file. Most common uncompressed formats are
103  supported.</para>
104
105  </listitem>
106  </varlistentry>
107  <varlistentry>
108  <term><option>-o</option>
109  <option>--output fileout</option></term>
110  <listitem>
111
112  <para>Save results in this file. The file will be created on the model of the
113  input file. Results are marked by a short wood-block sample.</para>
114
115  </listitem>
116  </varlistentry>
117  <varlistentry>
118  <term><option>-O</option>
119  <option>--onset mode</option></term>
120  <listitem>
121
122  <para>The onset detection function to run. Available functions are
123  <emphasis>complexdomain</emphasis>, <emphasis>hfc</emphasis>,
124  <emphasis>phase</emphasis>, <emphasis>specdiff</emphasis>,
125  <emphasis>energy</emphasis>, <emphasis>kl</emphasis> and
126  <emphasis>mkl</emphasis>. By default, both Kullback Liebler (kl) and complex
127  domain are used in parallel.</para>
128
129  </listitem>
130  </varlistentry>
131  <varlistentry>
132  <term><option>-t</option>
133  <option>--threshold value</option></term>
134  <listitem>
135
136  <para>Set the threshold value for the onset peak picking. Typical values are
137  within <literal>0.001</literal> and <literal>0.900</literal>. Default is
138  <literal>0.1</literal>. <emphasis>Lower</emphasis> threshold values imply
139  <emphasis>more</emphasis> onsets detected. Try <literal>0.3</literal> in
140  case of over-detections.</para>
141
142  </listitem>
143  </varlistentry>
144  <varlistentry>
145  <term><option>-j</option>
146  <option>--jack</option></term>
147  <listitem>
148  <para>Run in jack mode (default when started without input file) and creates a midi output.</para>
149  </listitem>
150  </varlistentry>
151  <varlistentry>
152  <term><option>-v</option>
153  <option>--verbose</option></term>
154  <listitem>
155  <para>Show results on the console (default).</para>
156  </listitem>
157  </varlistentry>
158  <varlistentry>
159  <term><option>-h</option>
160  <option>--help</option></term>
161  <listitem>
162  <para>Show summary of options.</para>
163  </listitem>
164  </varlistentry>
165</variablelist>
166
167  </refsect1>
168  <refsect1>
169  <title>BUGS</title>
170
171  <para>For now the program has only been tested on audio signals sampled at
172  44.1&nbsp;kHz.</para>
173
174  </refsect1>
175
176  <refsect1>
177    <title>SEE ALSO</title>
178
179    <para>
180    <command>aubioonset</command>(1)
181    <command>aubionotes</command>(1)
182    <command>aubiocut</command>(1)
183    <command>aubiopitch</command>(1)
184    </para>
185
186  </refsect1>
187
188  <refsect1>
189    <title>AUTHOR</title>
190
191    <para>This manual page was written by &dhusername; (&dhemail;). Permission
192    is granted to copy, distribute and/or modify this document under the terms
193    of the &gnu; General Public License, Version 2 any later version published
194    by the Free Software Foundation.</para>
195
196    <para>On Debian systems, the complete text of the GNU General Public
197    License can be found in /usr/share/common-licenses/GPL.</para>
198
199  </refsect1>
200</refentry>
201
202<!-- Keep this comment at the end of the file
203Local variables:
204mode: sgml
205sgml-omittag:t
206sgml-shorttag:t
207sgml-minimize-attributes:nil
208sgml-always-quote-attributes:t
209sgml-indent-step:2
210sgml-indent-data:t
211sgml-parent-document:nil
212sgml-default-dtd-file:nil
213sgml-exposed-tags:nil
214sgml-local-catalogs:nil
215sgml-local-ecat-files:nil
216End:
217-->
218
219
Note: See TracBrowser for help on using the repository browser.