从原始文件中获取一些x字节的AudioInputStream(剪切音频文件)

时间:2011-09-25 14:06:14

标签: java audio javasound

如何读取AudioInputStream达到特定数量的字节/微秒位置? 例如:

AudioInputStream ais = AudioSystem.getAudioInputStream( new File("file.wav") );
// let the file.wav be of y bytes

现在我想获得一个AudioInputStream,其数据最多为x个字节,其中x < y个字节。

我该怎么做?

我一直在努力思考但没有办法做到这一点?

2 个答案:

答案 0 :(得分:9)

下面的代码向您展示了如何复制音频流的一部分,从一个文件中读取以及写入另一个文件。

import java.io.*;
import javax.sound.sampled.*;

class AudioFileProcessor {

  public static void main(String[] args) {
    copyAudio("/tmp/uke.wav", "/tmp/uke-shortened.wav", 2, 1);
  }

  public static void copyAudio(String sourceFileName, String destinationFileName, int startSecond, int secondsToCopy) {
    AudioInputStream inputStream = null;
    AudioInputStream shortenedStream = null;
    try {
      File file = new File(sourceFileName);
      AudioFileFormat fileFormat = AudioSystem.getAudioFileFormat(file);
      AudioFormat format = fileFormat.getFormat();
      inputStream = AudioSystem.getAudioInputStream(file);
      int bytesPerSecond = format.getFrameSize() * (int)format.getFrameRate();
      inputStream.skip(startSecond * bytesPerSecond);
      long framesOfAudioToCopy = secondsToCopy * (int)format.getFrameRate();
      shortenedStream = new AudioInputStream(inputStream, format, framesOfAudioToCopy);
      File destinationFile = new File(destinationFileName);
      AudioSystem.write(shortenedStream, fileFormat.getType(), destinationFile);
    } catch (Exception e) {
      println(e);
    } finally {
      if (inputStream != null) try { inputStream.close(); } catch (Exception e) { println(e); }
      if (shortenedStream != null) try { shortenedStream.close(); } catch (Exception e) { println(e); }
    }
  }

  public static void println(Object o) {
    System.out.println(o);
  }

  public static void print(Object o) {
    System.out.print(o);
  }

}

答案 1 :(得分:0)

现在您拥有了流,您可以一次读取一个字节,最多可以使用read()读取所需的最大数量ob字节,或者使用read(byte[] b)读取固定数量的字节。