1

現在、マイクからの音波を録音し、振幅値を Java でリアルタイムに表示しようとしています。Targetdataline に出会いましたが、そこからデータを取得するのを理解するのに少し苦労しています。

Oracle のサンプル コードは次のように述べています。

line = (TargetDataLine) AudioSystem.getLine(info);
line.open(format, line.getBufferSize());
ByteArrayOutputStream out  = new ByteArrayOutputStream();
int numBytesRead;
byte[] data = new byte[line.getBufferSize() / 5];

// Begin audio capture.
line.start();

// Here, stopped is a global boolean set by another thread.
while (!stopped) {
// Read the next chunk of data from the TargetDataLine.
numBytesRead =  line.read(data, 0, data.length);

****ADDED CODE HERE*****

// Save this chunk of data.
out.write(data, 0, numBytesRead);
}    

そのため、現在、振幅値の入力ストリームを取得するコードを追加しようとしていますが、追加されたコード行に変数データが​​何であるかを出力すると、大量のバイトが得られます。

for (int j=0; j<data.length; j++) {
   System.out.format("%02X ", data[j]);
}

以前に TargetDataLine を使用したことがある人は、私がそれをどのように利用できるか知っていますか?

4

1 に答える 1

0

将来、サウンド抽出に TargetDataLine を使用する際に問題が発生する場合は、Ganesh Tiwari による WaveData クラスに、バイトを float 配列に変換する非常に役立つメソッドが含まれています ( http://code.google.com/p/speech-recognition-java -hidden-markov-model-vq-mfcc/source/browse/trunk/SpeechRecognitionHMM/src/org/ioe/tprsa/audio/WaveData.java ):

public float[] extractFloatDataFromAudioInputStream(AudioInputStream audioInputStream) {
    format = audioInputStream.getFormat();
    audioBytes = new byte[(int) (audioInputStream.getFrameLength() * format.getFrameSize())];
    // calculate durationSec
    float milliseconds = (long) ((audioInputStream.getFrameLength() * 1000) / audioInputStream.getFormat().getFrameRate());
    durationSec = milliseconds / 1000.0;
    // System.out.println("The current signal has duration "+durationSec+" Sec");
    try {
        audioInputStream.read(audioBytes);
    } catch (IOException e) {
        System.out.println("IOException during reading audioBytes");
        e.printStackTrace();
    }
    return extractFloatDataFromAmplitudeByteArray(format, audioBytes);
}

これを使用して、音の振幅データを取得できます。

于 2013-01-27T20:56:23.373 に答える