BeatTrack2:
Filter:
Classes | UGens > Analysis | UGens > FFT

BeatTrack2 : MultiOutUGen : UGen : AbstractFunction : Object

Template matching beat tracker

Description

This beat tracker1 is based on exhaustively testing particular template patterns against feature streams; the testing takes place every 0.5 seconds. The two basic templates are a straight (groove=0) and a swung triplet (groove=1) pattern of 16th notes; this pattern is tried out at scalings corresponding to the tempi from 60 to 180 bpm. This is the cross-correlation method of beat tracking. A majority vote is taken on the best tempo detected, but this must be confirmed by a consistency check after a phase estimate. Such a consistency check helps to avoid wild fluctuating estimates, but is at the expense of an additional half second delay. The latency of the beat tracker with default settings is thus at least 2.5 seconds; because of block-based amortisation of calculation, it is actually around 2.8 seconds latency for a 2.0 second temporal window.

This beat tracker is designed to be flexible for user needs; you can try out different window sizes, tempo weights and combinations of features. However, there are no guarantees on stability and effectiveness, and you will need to explore such parameters for a particular situation.

Class Methods

BeatTrack2.kr(busindex, numfeatures, windowsize: 2.0, phaseaccuracy: 0.02, lock: 0, weightingscheme)

Arguments:

busindex

[sk] Audio input to track, already analysed into N features, passed in via a control bus number from which to retrieve consecutive streams.

numfeatures

[s] How many features (ie how many control buses) are provided

windowsize

[s] Size of the temporal window desired (2.0 to 3.0 seconds models the human temporal window). You might use longer values for stability of estimate at the expense of reactiveness.

phaseaccuracy

[s] Relates to how many different phases to test. At the default, 50 different phases spaced by phaseaccuracy seconds would be tried out for 60bpm; 16 would be tried for 180 bpm. Larger phaseaccuracy means more tests and more CPU cost.

lock

[sk] If this argument is greater than 0.5, the tracker will lock at its current periodicity and continue from the current phase. Whilst it updates the model's phase and period, this is not reflected in the output until lock goes back below 0.5.

weightingscheme

[s] Use (-2.5) for flat weighting of tempi, (-1.5) for compensation weighting based on the number of events tested (because different periods allow different numbers of events within the temporal window) or otherwise a bufnum from 0 upwards for passing an array of 120 individual tempo weights; tempi go from 60 to 179 bpm in steps of one bpm, so you must have a buffer of 120 values.

Returns:

Six k-rate outputs:

Inherited class methods

Instance Methods

Inherited instance methods

Examples

[1] - Research note: Designed by Nick Collins following work by Jean Laroche