我需要一种快速的方法来将 wav 文件的所有样本存储在一个数组中。我目前正在通过播放音乐并存储来自 Sample Provider 的值来解决这个问题,但这不是很优雅。
从 NAudio Demo 我有使用这种方法的 Audioplayer 类:
private ISampleProvider CreateInputStream(string fileName)
{
if (fileName.EndsWith(".wav"))
{
fileStream = OpenWavStream(fileName);
}
throw new InvalidOperationException("Unsupported extension");
}
var inputStream = new SampleChannel(fileStream, true);
var sampleStream = new NotifyingSampleProvider(inputStream);
SampleRate = sampleStream.WaveFormat.SampleRate;
sampleStream.Sample += (s, e) => { aggregator.Add(e.Left); }; // at this point the aggregator gets the current sample value, while playing the wav file
return sampleStream;
}
我想在播放文件时跳过获取样本值的这个过程,而是立即想要这些值而不等到文件末尾。基本上就像matlab中的wavread命令。