vote up 1 vote down star

I'm reading a .wav file into a byte array with the following code.

AudioInputStream inputStream = 
    AudioSystem.getAudioInputStream(/*my .wav file */);
int numBytes = inputStream.available();
byte[] buffer = new byte[numBytes];
inputStream.read(buffer, 0, numBytes);
inputStream.close();

Is there a simple way to remove the .wav headers either before or after reading into the byte array?

flag

3 Answers

vote up 1 vote down check

Here is a good reference on the wave file format.

link|flag
you have to identify the chunks and remove the headers. – Peter Kofler Sep 17 at 20:38
vote up 0 vote down

Is a wav file header a fixed size? If so inputStream.skip?

link|flag
vote up 0 vote down

If correct the .wav header is 44 bytes long, so skip/remove the first 44 and there you have it.

Don't know for sure though.

link|flag

Your Answer

Get an OpenID
or

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