decode Wav File - Java javax.sound.sampled

Java examples for javax.sound.sampled:Wav File

Description

decode Wav File

Demo Code

/**/* ww  w .j  av  a2  s  .  c o  m*/
 * Copyright 2002 by the authors. All rights reserved.
 *
 * Author: Cristina V Lopes (crista at tagide dot com)

  Permission is hereby granted, free of charge, to any person obtaining a copy
  of this software and associated documentation files (the "Software"), to deal
  in the Software without restriction, including without limitation the rights
  to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  copies of the Software, and to permit persons to whom the Software is
  furnished to do so, subject to the following conditions:

  The above copyright notice and this permission notice shall be included in
  all copies or substantial portions of the Software.

  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  THE SOFTWARE.

 */
import javax.sound.sampled.*;
import java.io.*;
import java.util.Date;

public class Main{
    public static AudioFormat kDefaultFormat = new AudioFormat(
            (float) Encoder.kSamplingFrequency, (int) 8, (int) 1, true,
            false);
    public static void decodeWavFile(File inputFile, OutputStream out)
            throws UnsupportedAudioFileException, IOException {
        StreamDecoder sDecoder = new StreamDecoder(out);
        AudioBuffer aBuffer = sDecoder.getAudioBuffer();

        AudioInputStream audioInputStream = AudioSystem
                .getAudioInputStream(kDefaultFormat,
                        AudioSystem.getAudioInputStream(inputFile));
        int bytesPerFrame = audioInputStream.getFormat().getFrameSize();
        // Set an arbitrary buffer size of 1024 frames.
        int numBytes = 1024 * bytesPerFrame;
        byte[] audioBytes = new byte[numBytes];
        int numBytesRead = 0;
        // Try to read numBytes bytes from the file and write it to the buffer
        ByteArrayOutputStream baos = new ByteArrayOutputStream();
        while ((numBytesRead = audioInputStream.read(audioBytes)) != -1) {
            /*
              for(int i=0; i < numBytesRead; i++){
             float val = audioBytes[i] / (float)Constants.kFloatToByteShift;
             //System.out.println("" + val);
              }
             */
            aBuffer.write(audioBytes, 0, numBytesRead);
        }
    }
}

Related Tutorials