I need to get all the samples of a wav file into an array (or two if you need to do that to keep the stereo) so that I can apply some modifications to them. I was wondering if this is easily done (preferably without external libraries). I have no experience with reading in sound files, so I don't know much about the subject.

link|improve this question

58% accept rate
feedback

4 Answers

up vote 2 down vote accepted

WAV files (at least, uncompressed ones) are fairly straightforward. There's a header, then the data follows it.

Here's a great reference: https://ccrma.stanford.edu/courses/422/projects/WaveFormat/

link|improve this answer
So I can get the data in, then isolate the bytes after offset 44 and then reuse the same header to save the file, right? – annonymously Jan 6 at 6:30
not always, WAV files can contain other chunks as well after the fmt chunk and before the data chunk. It is best to properly parse the RIFF chunks – Mark Heath Jan 6 at 16:08
feedback

To get the wav file into an array you can just do this:

byte[] data = File.ReadAllBytes("FilePath");

but like Fletch said you need to isolate the data from the headers. It should be just a simple offset.

link|improve this answer
feedback

http://hourlyapps.blogspot.com/2008/07/open-source-wave-graph-c-net-control.html
Here is a Control which Display's the Spectrum of a Wav file ,which also Serves a Byte[] of Decoded Wav File where you can play and/or Change their Values .

Just download the Control and it's pretty good for WAV File manipulation.

link|improve this answer
feedback

Assuming your WAV file contains 16 bit PCM (which is the most common), you can use NAudio to read it out into a byte array, and then copy that into an array of 16 bit integers for convenience. If it is stereo, the samples will be interleaved left, right.

using (WaveFileReader reader = new WaveFileReader("myfile.wav"))
{
    Assert.AreEqual(16, reader.WaveFormat.BitsPerSample, "Only works with 16 bit audio");
    byte[] buffer = new byte[reader.Length];
    int read = reader.Read(buffer, 0, buffer.Length);
    short[] sampleBuffer = new short[read / 2];
    Buffer.BlockCopy(buffer, 0, sampleBuffer, 0, read);
}

I know you wanted to avoid third party libraries, but if you want to be sure to cope with WAV files with extra chunks, I suggest avoiding approaches like just seeking 44 bytes into the file.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.