src/onset/onset.c: also disable adaptive_whitening when using default = hfc
[aubio.git] / doc / aubiomfcc.txt
1 NAME
2   aubiomfcc - a command line tool to compute Mel-Frequency Cepstrum Coefficients
3
4 SYNOPSIS
5
6   aubiomfcc source
7   aubiomfcc [[-i] source]
8             [-r rate] [-B win] [-H hop]
9             [-v] [-h]
10
11 DESCRIPTION
12
13   aubiomfcc compute the Mel-Frequency Cepstrum Coefficients (MFCC).
14
15   MFCCs are coefficients that make up for the mel-frequency spectrum, a
16   representation of the short-term power spectrum of a sound. By default, 13
17   coefficents are computed using 40 filters.
18
19   When started with an input source (-i/--input), the coefficients are given on
20   the console, prefixed by their timestamps in seconds.
21
22 OPTIONS
23
24   This program follows the usual GNU command line syntax, with long options
25   starting with two dashes (--). A summary of options is included below.
26
27   -i, --input source  Run analysis on this audio file. Most uncompressed and
28   compressed are supported, depending on how aubio was built.
29
30   -r, --samplerate rate  Fetch the input source, resampled at the given
31   sampling rate. The rate should be specified in Hertz as an integer. If 0,
32   the sampling rate of the original source will be used. Defaults to 0.
33
34   -B, --bufsize win  The size of the buffer to analyze, that is the length
35   of the window used for spectral and temporal computations. Defaults to 512.
36
37   -H, --hopsize hop  The number of samples between two consecutive analysis.
38   Defaults to 256.
39
40   -h, --help  Print a short help message and exit.
41
42   -v, --verbose  Be verbose.
43
44 REFERENCES
45
46   Using the default parameters, the filter coefficients will be computed
47   according to Malcolm Slaney's Auditory Toolbox, available at the following
48   url:
49
50   http://cobweb.ecn.purdue.edu/~malcolm/interval/1998-010/ (see file mfcc.m)
51
52 SEE ALSO
53
54   aubioonset(1),
55   aubiopitch(1),
56   aubiotrack(1),
57   aubionotes(1),
58   aubioquiet(1),
59   and
60   aubiocut(1).
61
62 AUTHOR
63
64   This manual page was written by Paul Brossier <piem@aubio.org>. Permission is
65   granted to copy, distribute and/or modify this document under the terms of
66   the GNU General Public License as published by the Free Software Foundation,
67   either version 3 of the License, or (at your option) any later version.