source: doc/aubioonset.txt @ 403e9dd

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

doc/: rewrite manpages, use txt2man, add aubioquiet.txt, change rule in wscript

  • Property mode set to 100644
File size: 5.3 KB
Line 
1NAME
2  aubioonset - a command line tool to extract musical onset times
3
4SYNOPSIS
5
6  aubioonset source
7  aubioonset [[-i] source] [-o sink]
8             [-r rate] [-B win] [-H hop]
9             [-O method] [-t thres]
10             [-s sil] [-m]
11             [-j] [-v] [-h]
12
13DESCRIPTION
14
15  aubioonset attempts to detect onset times, the beginning of discrete sound
16  events, in audio signals.
17
18  When started with an input source (-i/--input), the detected onset times are
19  given on the console, in seconds.
20
21  When started without an input source, or with the jack option (-j/--jack),
22  aubioonset starts in jack mode.
23
24OPTIONS
25
26  This program follows the usual GNU command line syntax, with long options
27  starting with two dashes (--). A summary of options is included below.
28
29  -i, --input source  Run analysis on this audio file. Most uncompressed and
30  compressed are supported, depending on how aubio was built.
31
32  -o, --output sink  Save results in this file. The file will be created on
33  the model of the input file. Onset times are marked by a short wood-block
34  like sound.
35
36  -r, --samplerate rate  Fetch the input source, resampled at the given
37  sampling rate. The rate should be specified in Hertz as an integer. If 0,
38  the sampling rate of the original source will be used. Defaults to 0.
39
40  -B, --bufsize win  The size of the buffer to analyze, that is the length
41  of the window used for spectral and temporal computations. Defaults to 512.
42
43  -H, --hopsize hop  The number of samples between two consecutive analysis.
44  Defaults to 256.
45
46  -O, --onset method  The onset detection method to use. See ONSET METHODS
47  below. Defaults to 'default'.
48
49  -t, --onset-threshold thres  Set the threshold value for the onset peak
50  picking. Typical values are typically within 0.001 and 0.900. Defaults to
51  0.1. Lower threshold values imply more onsets detected. Try 0.5 in case of
52  over-detections. Defaults to 0.3.
53
54  -s, --silence sil  Set the silence threshold, in dB, under which the pitch
55  will not be detected. A value of -20.0 would eliminate most onsets but the
56  loudest ones. A value of -90.0 would select all onsets. Defaults to -90.0.
57
58  -m, --mix-input  Mix source signal to the output signal before writing to
59  sink.
60
61  -j, --jack  Use Jack input/output. You will need a Jack connection
62  controller to feed aubio some signal and listen to its output.
63
64  -h, --help  Print a short help message and exit.
65
66  -v, --verbose  Be verbose.
67
68ONSET METHODS
69
70  Available methods are:
71
72  default  Default distance, currently hfc
73
74  Default: 'default' (currently set to hfc)
75
76  energy  Energy based distance
77
78  This function calculates the local energy of the input spectral frame.
79
80  hfc  High-Frequency content
81
82  This method computes the High Frequency Content (HFC) of the input
83  spectral frame. The resulting function is efficient at detecting
84  percussive onsets.
85
86  Paul Masri. Computer modeling of Sound for Transformation and Synthesis of
87  Musical Signal. PhD dissertation, University of Bristol, UK, 1996.
88
89  complex  Complex domain onset detection function
90
91  This function uses information both in frequency and in phase to determine
92  changes in the spectral content that might correspond to musical onsets.
93  It is best suited for complex signals such as polyphonic recordings.
94
95  Christopher Duxbury, Mike E. Davies, and Mark B. Sandler.  Complex domain
96  onset detection for musical signals. In Proceedings of the Digital Audio
97  Effects Conference, DAFx-03, pages 90-93, London, UK, 2003.
98
99  phase  Phase based onset detection function
100
101  This function uses information both in frequency and in phase to determine
102  changes in the spectral content that might correspond to musical onsets. It
103  is best suited for complex signals such as polyphonic recordings.
104
105  Juan-Pablo Bello, Mike P. Davies, and Mark B. Sandler.  Phase-based note
106  onset detection for music signals. In Proceedings of the IEEE International
107  Conference on Acoustics Speech and Signal Processing, pages 441­444,
108  Hong-Kong, 2003.
109
110  specdiff  Spectral difference onset detection function
111
112  Jonhatan Foote and Shingo Uchihashi. The beat spectrum: a new approach to
113  rhythm analysis. In IEEE International Conference on Multimedia and Expo
114  (ICME 2001), pages 881­884, Tokyo, Japan, August 2001.
115
116  kl  Kulback-Liebler onset detection function
117
118  Stephen Hainsworth and Malcom Macleod. Onset detection in music audio
119  signals. In Proceedings of the International Computer Music Conference
120  (ICMC), Singapore, 2003.
121
122  mkl  Modified Kulback-Liebler onset detection function
123
124  Paul Brossier, ``Automatic annotation of musical audio for interactive
125  systems'', Chapter 2, Temporal segmentation, PhD thesis, Centre for
126  Digital music, Queen Mary University of London, London, UK, 2006.
127
128  specflux  Spectral flux
129
130  Simon Dixon, Onset Detection Revisited, in ``Proceedings of the 9th
131  International Conference on Digital Audio Effects'' (DAFx-06), Montreal,
132  Canada, 2006.
133
134SEE ALSO
135
136  aubiopitch(1),
137  aubiotrack(1),
138  aubionotes(1),
139  aubioquiet(1),
140  aubiomfcc(1),
141  and
142  aubiocut(1).
143
144AUTHOR
145
146  This manual page was written by Paul Brossier <piem@aubio.org>. Permission is
147  granted to copy, distribute and/or modify this document under the terms of
148  the GNU General Public License as published by the Free Software Foundation,
149  either version 3 of the License, or (at your option) any later version.
Note: See TracBrowser for help on using the repository browser.