我正在做一个关于和弦识别的项目。我正在使用某人的期刊作为参考,但我对 DSP 领域的了解仍然很少。在她的参考资料中,第一件事是我需要将 wav 文件中的信号拆分为帧数。就我而言,我需要将每帧分割成 65 毫秒,每帧有 2866 个样本。
我已经搜索了如何将信号拆分为帧,但我发现它们不够清晰,我无法理解。到目前为止,这些是我在 WavProcessing 类中的一些代码:
public void SetFileName(String fileNameWithPath) //called first in the form, to get the FileStream
{
_fileNameWithPath = fileNameWithPath;
strm = File.OpenRead(_fileNameWithPath);
}
public double getLengthTime(uint wavSize, uint sampleRate, int bitRate, int channels)
{
wavTimeLength = ((strm.Length - 44) / (sampleRate * (bitRate / 8))) / channels;
return wavTimeLength;
}
public int getNumberOfFrames() //return number of frames, I just divided total length time with interval time between frames. (in my case, 3000ms / 65 ms = 46 frames)
{
numOfFrames = (int) (wavTimeLength * 1000 / _sampleFrameTime);
return numOfFrames;
}
public int getSamplePerFrame(UInt32 sampleRate, int sampleFrameTime) // return the sample per frame value (in my case, it's 2866)
{
_sampleRate = sampleRate;
_sampleFrameTime = sampleFrameTime;
sFr = (int)(sampleRate * (sampleFrameTime / 1000.0 ));
return sFr;
}
我只是仍然不知道如何在 C# 中将信号拆分为每帧 65 毫秒。我是否需要拆分 FileStream 并将它们分成帧并将它们保存到数组中?还是别的什么?