Files
2024-01-02 14:11:31 +01:00

13 lines
353 B
C#

using System.Collections.Generic;
using System.Diagnostics;
namespace BeatDetector.AudioProcessing;
internal class BeatChunk
{
public Stopwatch StopWatch { get; } = new Stopwatch();
public List<double> EnergyHistory { get; } = new List<double>();
public double AverageDifference { get; set; }
public int NoBeatCount { get; set; }
}