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.

Given an InputStream called in which contains audio data in a compressed format (such as MP3 or OGG), I wish to create a byte array containing a WAV conversion of the input data. Unfortunately, if you try to do this, JavaSound hands you the following error:

java.io.IOException: stream length not specified

I managed to get it to work by writing the wav to a temporary file, then reading it back in, as shown below:

AudioInputStream source = AudioSystem.getAudioInputStream(new BufferedInputStream(in, 1024));
AudioInputStream pcm = AudioSystem.getAudioInputStream(AudioFormat.Encoding.PCM_SIGNED, source);
AudioInputStream ulaw = AudioSystem.getAudioInputStream(AudioFormat.Encoding.ULAW, pcm);
File tempFile = File.createTempFile("wav", "tmp");
AudioSystem.write(ulaw, AudioFileFormat.Type.WAVE, tempFile);
// The fileToByteArray() method reads the file
// into a byte array; omitted for brevity
byte[] bytes = fileToByteArray(tempFile);
tempFile.delete();
return bytes;

This is obviously less desirable. Is there a better way?

share|improve this question

3 Answers

up vote 5 down vote accepted

The problem is that the most AudioFileWriters need to know the file size in advance if writing to an OutputStream. Because you can't provide this, it always fails. Unfortunatly, the default Java sound API implementation doesn't have any alternatives.

But you can try using the AudioOutputStream architecture from the Tritonus plugins (Tritonus is an open source implementation of the Java sound API): http://tritonus.org/plugins.html

share|improve this answer
   
I'll have to give that a try. It might be a little bit before I can try it, so I can't accept the answer at the moment. I'll upvote it, though. – Robert J. Walker Oct 21 '08 at 22:43

I can't make comments in SO yet sorry, but here's a related question I've just asked: Trouble with header-declared wave file length from tritonus java sound library

share|improve this answer

This is very simple...

    File f = new File(exportFileName+".tmp");
    File f2 = new File(exportFileName);
    long l = f.length();
    FileInputStream fi = new FileInputStream(f);
    AudioInputStream ai = new AudioInputStream(fi,mainFormat,l/4);
    AudioSystem.write(ai, Type.WAVE, f2);
    fi.close();
    f.delete();

The .tmp file is a RAW audio file, the result is a WAV file with header.

share|improve this answer
1  
The question asks whether it can be done without a temp file. – Robert J. Walker Jul 2 '12 at 15:21

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.