gpt4 book ai didi

java - 来自 TargetDataLine 的声波

转载 作者:行者123 更新时间:2023-12-01 04:53:33 25 4
gpt4 key购买 nike

目前我正在尝试用 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 的人知道我如何使用它吗?

最佳答案

对于将来使用 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);
}

使用它我可以获得声音幅度数据。

关于java - 来自 TargetDataLine 的声波,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14542514/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com