mirror of
https://github.com/Stone-Red-Code/BeatDetector.git
synced 2026-09-04 08:56:06 +02:00
Initial commit
This commit is contained in:
@@ -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; }
|
||||
}
|
||||
Reference in New Issue
Block a user