C# Класс Accord.Audio.Metronome

Virtual Metronome.
Objects from this class acts as virtual metronomes. If connected to a beat detector, it can be used to determine the tempo (in beats per minute) of a signal. It can also be used in manual mode by calling Tap method. For more details, see the Beat detection sample application which comes together with the framework.
Наследование: IDisposable
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
Dispose ( ) : void

Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.

Metronome ( ) : System

Constructs a new Metronome.

Start ( ) : void

Starts the metronome.

Stop ( ) : void

Stops the metronome.

Tap ( ) : void

Taps the metronome (for tempo detection)

Защищенные методы

Метод Описание
Dispose ( bool disposing ) : void

Releases unmanaged and - optionally - managed resources

Приватные методы

Метод Описание
timeUp_Elapsed ( object sender, System.Timers.ElapsedEventArgs e ) : void

Описание методов

Dispose() публичный метод

Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
public Dispose ( ) : void
Результат void

Dispose() защищенный метод

Releases unmanaged and - optionally - managed resources
protected Dispose ( bool disposing ) : void
disposing bool true to release both managed /// and unmanaged resources; false to release only unmanaged /// resources.
Результат void

Metronome() публичный метод

Constructs a new Metronome.
public Metronome ( ) : System
Результат System

Start() публичный метод

Starts the metronome.
public Start ( ) : void
Результат void

Stop() публичный метод

Stops the metronome.
public Stop ( ) : void
Результат void

Tap() публичный метод

Taps the metronome (for tempo detection)
public Tap ( ) : void
Результат void