mirror of
https://github.com/Stone-Red-Code/BeatDetector.git
synced 2026-09-04 17:06:06 +02:00
11 lines
311 B
C#
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; }
|
|
} |