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
파일 보기 프로젝트 열기: accord-net/framework 1 사용 예제들

공개 메소드들

메소드 설명
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