我正在尝试从我的 PC 的线路中捕获音频,为此我正在使用AudioSystem类。静态 AudioSystem.write 方法有两种选择之一:写入文件或写入流。我可以让它写入文件就好了,但是每当我尝试写入流时,我都会抛出 java.io.IOException (未指定流长度)。至于我的缓冲区,我使用的是 ByteArrayOutputStream。我应该在其他地方使用或弄乱另一种流吗?
同样在相关主题中,可以通过调用read直接对 ( TargetDataLine ) 中的音频线进行采样。这是进行音频捕获或使用 AudioSystem 的首选方式吗?
更新 请求的源代码:
final private TargetDataLine line;
final private AudioFormat format;
final private AudioFileFormat.Type fileType;
final private AudioInputStream audioInputStream;
final private ByteArrayOutputStream bos;
// Constructor, etc.
public void run()
{
System.out.println("AudioWorker Started");
try
{
line.open(format);
line.start();
// This commented part is regarding the second part
// of my question
// byte[] buff = new byte[512];
// int bytes = line.read(buff, 0, buff.length);
AudioSystem.write(audioInputStream, fileType, bos);
}
catch ( Exception e )
{
e.printStackTrace();
}
System.out.println("AudioWorker Finished");
}
// Stack trace in console
AudioWorker Started
java.io.IOException: stream length not specified
at com.sun.media.sound.WaveFileWriter.write(Unknown Source)
at javax.sound.sampled.AudioSystem.write(Unknown Source)
at AudioWorker.run(AudioWorker.java:41)
AudioWorker Finished