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.
Inheritance: IDisposable
Esempio n. 1
0
        public MainForm()
        {
            InitializeComponent();

            metronome = new Metronome();
            metronome.SynchronizingObject = lbManualTempo;
            metronome.TempoDetected += metronome_TempoDetected;
        }