さまざまなデジタル信号処理アルゴリズムを使用して Java で処理したい短い WAV ファイルのコレクションがあります。この目的のために、11025 Hz のフレーム レートでエンコードされた int 値のサンプルの配列を取得する必要があります。
ソース ファイルには、11025 Hz や 44100 Hz など、いくつかの異なるサンプル レートがあります。それらを読むために使用しようとしているコードは次のとおりです。
// read the WAV file
FileInputStream fileInputStream = new FileInputStream(new File("test.wav"));
AudioInputStream audioInputStream = AudioSystem.getAudioInputStream(fileInputStream );
// copy the AudioInputStream to a byte array called buffer
ByteArrayOutputStream bos = new ByteArrayOutputStream();
byte[] data = new byte[4096];
int tempBytesRead = 0;
int byteCounter = 0;
while ((tempBytesRead = audioInputStream.read(data, 0, data.length)) != -1) {
bos.write(data, 0, tempBytesRead);
byteCounter += tempBytesRead;
}
bos.close();
byte[] buffer = bos.toByteArray();
AudioFileFormat audioFileFormat = new AudioFileFormat(AudioFileFormat.Type.WAVE, audioInputStream.getFormat(), (int)audioInputStream.getFrameLength());
// get the resulting sample array
int[] samples = new int[audioFileFormat.getFrameLength()];
for (int i = 0; i < samples.length; i++) {
samples[i] = getSampleValue(i); // the getSampleValue method reads the sample values from the "buffer" array, handling different encoding types like PCM unsigned/signed, mono/stereo, 8 bit/16 bit
}
// RESULT: the "samples" array
問題は、コードが異なるサンプル レートを適切に処理しないことです。したがって、44100 Hz のフレーム レートでは、11025 Hz のフレーム レートの 4 倍のサンプルを取得します。ソース ファイルのフレーム レートに関係なく、結果のサンプル配列で 11025 Hz のフレーム レートを使用したいと考えています。AudioInputStream を読み取るときに、Java にフレーム レートを強制的に変換させようとしましたが、次のような例外が発生します。
java.lang.IllegalArgumentException: Unsupported conversion: PCM_SIGNED 11025.0 Hz, 16 bit, mono, 2 bytes/frame, 44100.0 frames/second, little-endian from PCM_SIGNED 44100.0 Hz, 16 bit, mono, 2 bytes/frame, little-endian
at javax.sound.sampled.AudioSystem.getAudioInputStream(AudioSystem.java:955)
Java Sound API チュートリアルを読みました: http://java.sun.com/docs/books/tutorial/sound/converters.html。Java Sound API は、私のオペレーティング システム (Windows 7) のこの種の変換をサポートしていないようです。そして、外部ライブラリへの依存を避けたいと思います。自分でサンプリングレート変換を行う方法はありますか?