source: doc/aubiotrack.sgml @ df9df98

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

doc/*.sgml: bump to GPLv3, update email

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