Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

The wav file has a header (44 bytes). In this header is specified the sample rate of the signal, number of channels and so on, number of samples from the audio file. I need to know where can I find the number of samples information in the header.

What would be the formula.

share|improve this question

1 Answer

up vote 0 down vote accepted

Starting at the 40th byte for the next 4 bytes (little endian) is the Subchunk2 size. This can also be deduced from the formula:

Subchunk2size = NumSamples * NumChannels * BitsPerSample/8

NumChannels start at byte 22 and 2 bytes (little endian) in length. BitsPerSample start at 34th byte and is 2 bytes (little endian) in length. Replacing all these you can get the NumSamples which is the number of samples.

For example: if Subchunksize2=2048, NumChannels=2 and BitsPerSample=16, you get 2048 = NumSamples * 2 * 2 so NumSamples=512

A good read is here.

share|improve this answer
Thanks this helped alot. – james Apr 30 '11 at 0:26
1  
To clarify: this approach will not work for all WAV files. Most WAV files are well-behaved liked this (a 44-byte header followed by the sample data), but many are not, and the WAV file format does not demand that WAV files be structured in this way. – MusiGenesis May 2 '11 at 20:08

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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