我们正在尝试将声音集成到我们的某个项目中,我的团队成员不会收到此错误,我会在两台不同的计算机上获取它。
堆栈跟踪:
Exception in thread "SoundPlayer" java.lang.IllegalArgumentException: No line matching interface Clip supporting format PCM_SIGNED 16000.0 Hz, 16 bit, stereo, 4 bytes/frame, little-endian, and buffers of 11129272 to 11129272 bytes is supported.
at javax.sound.sampled.AudioSystem.getLine(Unknown Source)
at sound.Music.run(Music.java:86)
at java.lang.Thread.run(Unknown Source)
代码:
package sound;
import java.io.File;
import java.io.IOException;
import javax.sound.sampled.AudioFormat;
import javax.sound.sampled.AudioInputStream;
import javax.sound.sampled.AudioSystem;
import javax.sound.sampled.Clip;
import javax.sound.sampled.DataLine;
import javax.sound.sampled.FloatControl;
import javax.sound.sampled.LineEvent;
import javax.sound.sampled.LineListener;
import javax.sound.sampled.LineUnavailableException;
import javax.sound.sampled.UnsupportedAudioFileException;
public class Music implements LineListener, Runnable
{
private File soundFile;
private Thread thread;
private static Music player;
private Music audio;
private Clip clip;
public Music()
{
}
public void playSiren(String musicFileName)
{
Music p = getPlayer();
p.playSirenFile(musicFileName);
}
private void playSirenFile(String musicFileName)
{
this.soundFile = new File("Music/"+musicFileName+".wav");
thread = new Thread(this);
thread.setName("SoundPlayer");
thread.start();
}
public void run()
{
try
{
AudioInputStream stream = AudioSystem.getAudioInputStream(this.soundFile);
AudioFormat format = stream.getFormat();
/**
* we can't yet open the device for ALAW/ULAW playback, convert
* ALAW/ULAW to PCM
*/
if ((format.getEncoding() == AudioFormat.Encoding.ULAW) || (format.getEncoding() == AudioFormat.Encoding.ALAW))
{
AudioFormat tmp = new AudioFormat(
AudioFormat.Encoding.PCM_SIGNED,
format.getSampleRate(),
format.getSampleSizeInBits() * 2, format.getChannels(),
format.getFrameSize() * 2, format.getFrameRate(), true);
stream = AudioSystem.getAudioInputStream(tmp, stream);
format = tmp;
}
DataLine.Info info = new DataLine.Info(Clip.class, stream
.getFormat(), ((int) stream.getFrameLength() * format
.getFrameSize()));
clip = (Clip) AudioSystem.getLine(info);
clip.addLineListener(this);
clip.open(stream);
clip.start();
try
{
thread.sleep(99);
}
catch (Exception e)
{
}
while (clip.isActive() && thread != null)
{
try
{
thread.sleep(99);
}
catch (Exception e)
{
break;
}
}
clip.loop(99999999);
}
catch (UnsupportedAudioFileException e)
{
// TODO Auto-generated catch block
e.printStackTrace();
}
catch (IOException e)
{
// TODO Auto-generated catch block
e.printStackTrace();
}
catch (LineUnavailableException e)
{
// TODO Auto-generated catch block
e.printStackTrace();
}
}
private static Music getPlayer()
{
if (player == null)
{
player = new Music();
}
return player;
}
public void update(LineEvent event)
{
}
public void stopClip()
{
clip.stop();
}
public void closeClip()
{
clip.close();
}
public void startClip()
{
clip.start();
}
public void volume(float volume)
{
/*
FloatControl gainControl = (FloatControl) clip.getControl(FloatControl.Type.MASTER_GAIN);
gainControl.setValue(-50.0f); // Reduce volume IN DECIBELS
clip.start();
*/
}
}
我们使用
从domainController调用此类audio = new Music();
audio.playSiren("stillAliveDecent");
是否有人知道如何解决此异常? 我尝试重新安装我的编辑软件(Eclipse),但无济于事。
提前感谢分配。
修改
我们刚尝试切换声音文件。我们尝试用更小的文件运行它。这现在有效,但是一旦我们切换回更大的.wav文件(10 + MB),我再次得到异常。
只使用较小的文件并不是真正的选择,因为我们想要使用一些非常长的自制歌曲。
编辑2
我很确定它不是一个腐败的wav。我们重新编译它,甚至使用了另一个类似长度和大小的波,我仍然是唯一一个得到这个错误。
一些额外的请求信息:
操作系统:Windows 7 64位旗舰版 JDK:1.6.0_22
编辑3
经过一些创造和播放之后,我们得出的结论是,由于某种原因,我无法播放大于2MB的wave。
为什么我的队友不受此影响呢?
答案 0 :(得分:1)
你实际上可以播放40 mb以上的声音,如果需要的话,那就是我走了多远:p,问题主要是eclipse,更确切地说是你工作区中的.metadata文件夹我认为它就像一个小插件只有一半的时间上传,所以问题在于你的编辑而不是代码,上面的代码工作得很好,因为我可以毫无困难地播放歌曲。确保您的路径正确,并尝试获取正确版本的.metadata,您应该没问题。我的一个朋友有同样的问题,我给了他我的工作区和.metadata的副本,它工作得很好。
答案 1 :(得分:1)
我在覆盆子pi上遇到了同样的问题。它会很好地播放前5个文件,然后我就会收到错误。事实证明,当我需要时,我没有关闭剪辑。
Clip clip = AudioSystem.getClip();
clip.addLineListener(event -> {
if(LineEvent.Type.STOP.equals(event.getType())) {
clip.close();
}
});
ByteArrayInputStream audioBytes = new ByteArrayInputStream(SOUNDS.get(file));
AudioInputStream inputStream = AudioSystem.getAudioInputStream(audioBytes);
clip.open(inputStream);
clip.start();
添加线条侦听器并在剪辑停止后关闭剪辑后,错误就消失了。