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.

My project is 'Speech Recognition of Azeri speech'. I have to write a program that converts wav files to byte array.

How to convert audio file to byte[]?

share|improve this question

2 Answers

Write this file into ByteArrayOutputStream

ByteArrayOutputStream out = new ByteArrayOutputStream();
BufferedInputStream in = new BufferedInputStream(new FileInputStream(WAV_FILE));

int read;
byte[] buff = new byte[1024];
while ((read = in.read(buff)) > 0)
{
    out.write(buff, 0, read);
}
out.flush();
byte[] audioBytes = out.toByteArray();
share|improve this answer
This is true because a WAV file is essentially an array of bytes. Not all audio formats are simple byte streams. You couldn't do this with an MP3 file, for example. – David May 1 '12 at 12:37
Well, wav has segments and headers and the like interspersed with the audio data, so David gets a slight technical disagreement from me on this statement. Perhaps it would be more accurate to point out that any format supported by Java (or by a decent library for a given format, including mp3) will convert the given file to a stream of bytes of raw PCM data. – Phil Freihofner May 2 '12 at 20:13

Basically as described by the snippet in the first answer, but instead of the BufferedInputStream use AudioSystem.getAudioInputStream(File) to get the InputStream.

Using the audio stream as obtained from AudioSystem will ensure that the headers are stripped, and the input file decode to a byte[] that represents the actual sound frames/samples - which can then be used for FFT etc.

share|improve this answer
1  
Or perhaps .getAudioInputStream(URL) if the InputStream raises the notorious mark/reset exception. – Phil Freihofner May 2 '12 at 20:16

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.