namespace DeepDrftContent.Processors; /// /// Configuration for waveform loudness profiling. is the stored /// resolution — the number of loudness buckets computed and persisted per track, which is also /// the bar count the frontend WaveformSeeker renders. /// public class WaveformProfileOptions { public int BucketCount { get; set; } = 512; }