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.
|
feedback
|
|
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/ | |||||
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. | |||
|
feedback
|
|
http://hourlyapps.blogspot.com/2008/07/open-source-wave-graph-c-net-control.html Just download the Control and it's pretty good for WAV File manipulation. | |||
|
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.
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. | |||
|
feedback
|