Files
BeatDetector/AudioProcessing/BeatChunk.cs
T
2022-02-19 18:57:52 +01:00

11 lines
311 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; }
}