我想使用JavaFX媒体播放器实时播放麦克风输入(以分析其频率)。问题是,MediaPlayer仅接受字符串作为源。我知道如何将麦克风输入写入字节数组和文件中。
对我而言,无法将字节数组用作MediaPlayer的源。我尝试使用一个临时文件,但这会导致以下错误:
Exception in thread "JavaFX Application Thread" MediaException: MEDIA_UNSUPPORTED : Empty signature!
我认为是这样,因为我在仍在向其中写入新数据时使用文件作为输入。直到现在我的完整代码:
public class Music {
static AudioFormat format;
static DataLine.Info info;
public static void input(int i, int j, int pinState) {
format = new AudioFormat(AudioFormat.Encoding.PCM_SIGNED, 44100, 16, 2, 4, 44100, false);
try {
info = new DataLine.Info(TargetDataLine.class, format);
final TargetDataLine targetLine = (TargetDataLine) AudioSystem.getLine(info);
targetLine.open();
AudioInputStream audioStream = new AudioInputStream(targetLine);
File temp = File.createTempFile("Input", ".wav");
temp.deleteOnExit();
Thread targetThread = new Thread() {
public void run() {
targetLine.start();
try {
AudioSystem.write(audioStream, AudioFileFormat.Type.WAVE, temp);
} catch (IOException e) {
e.printStackTrace();
}
}
};
targetThread.start();
Media media = new Media(temp.toURI().toURL().toString());
MediaPlayer player = new MediaPlayer(media);
player.setAudioSpectrumThreshold(-100);
player.setMute(false);
player.setAudioSpectrumListener(new AudioSpectrumListener() {
@Override
public void spectrumDataUpdate(double timestamp, double duration, float[] magnitudes, float[] phases) {
if(Var.nodeController[i] == 3) { //testing if the targetLine should keep on capturing sound
} else {
targetLine.stop();
targetLine.close();
player.stop();
}
}
});
player.play();
} catch (LineUnavailableException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
} catch (InterruptedException e) {
e.printStackTrace();
}
}
}
我需要找到一种将麦克风输入用作MediaPlayer输入的解决方案,或者使用文件或字节数组,或者使用其他任何可能的解决方案。
答案 0 :(得分:1)
我将推测以下库可能会有所帮助。 https://github.com/SzymonKatra/AudioAnalyzer
请注意,它使用了FFmpeg,它声称是:
一个完整的跨平台解决方案,用于记录,转换和流式传输 音频和视频。
关键组成部分(基于我的粗略查找)似乎是类FFTAnalyzer.java,该文档称其基于Princeton的FFT代码/算法。
因此,我认为基本计划如下:
我不清楚到底需要多少库。可能是因为您没有处理视频或跨平台问题,所以只需要该库中的一两个类即可。