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 类包含一个非常有用的方法,可以将字节转换为浮点数组(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 回答