0

所以我试图读取 .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. 每个数据之间的时间间隔是多少?(比如 1^-10 秒或 smt?),我怎么知道?

  2. 如果我想自己设置每个数据之间的间隔,我应该如何更改代码?

4

1 回答 1

1

回答问题1:数据的间隔是由采样率决定的。这可以通过reader.WaveFormat.SampleRate. 即每秒的样本数,因此样本之间的时间为 1 / SampleRate。

对于问题 2:我不熟悉 NAudio,所以我不知道它是否有任何功能可以做到这一点,但您可以跳过示例只获取您想要的示例。

于 2014-06-29T14:15:54.980 回答