所以我试图读取 .wav 文件的幅度数据以便稍后在 DFT 中使用它,我使用此代码在 C# 中获取幅度数据并将其放入 .txt 文件
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using NAudio.Wave;
namespace SoundToAmplitudes
{
class Program
{
private static int Main(string[] args)
{
#if DEBUG
Console.WriteLine(String.Join(", ", args));
args = new[] { @"C:\Users\s550c\Documents\visual studio 2010\Projects\DFT\DFT\newrecord.wav" };
#endif
return Cli(args);
}
static int Cli(string[] args)
{
System.IO.StreamWriter file = new System.IO.StreamWriter("d:\\test6.txt");
string fileName = args[0];
var soundFile = new FileInfo(fileName);
foreach (float s in AmplitudesFromFile(soundFile))
{
Console.WriteLine(s);
file.WriteLine(s);
}
file.Close();
//Console.WriteLine();
#if DEBUG
Console.Read();
#endif
return 0;
}
public static IEnumerable<float> AmplitudesFromFile(FileInfo soundFile)
{
var reader = new AudioFileReader(soundFile.FullName);
int count = 4096; // arbitrary
float[] buffer = new float[count];
int offset = 0;
int numRead = 0;
while ((numRead = reader.Read(buffer, offset, count)) > 0)
{
foreach (float amp in buffer.Take(numRead))
{
yield return amp;
}
}
}
}
}
该程序为我提供了一长串大约 1 秒的声音文件的数据(准确地说是 145920 数据),所以我的问题是:
每个数据之间的时间间隔是多少?(比如 1^-10 秒或 smt?),我怎么知道?
如果我想自己设置每个数据之间的间隔,我应该如何更改代码?