Initial commit

This commit is contained in:
Stone_Red
2022-02-19 18:57:52 +01:00
commit 75d5c4ffe4
13 changed files with 749 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
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; }
}