作者热门文章
- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
当执行下面的方法时:
private void beep_player_1() {
try {
//clip_Player_2.close();
clip_Player_1 = AudioSystem.getClip();
ais = AudioSystem.getAudioInputStream(new File(Constants.Player1_Default_Tone)); // PATH FOR THE .WAV FILE
clip_Player_1.open(ais);
clip_Player_1.loop(0); // PLAY ONCE
}catch(Exception exc) {
System.out.println(exc);
}
}
LineUnavailableException
被抛出。这可能是什么原因?
javax.sound.sampled.LineUnavailableException: line with format PCM_SIGNED 44100.0 Hz, 24 bit, stereo, 6 bytes/frame, little-endian not supported.
最佳答案
What could be the reason for this ?
javax.sound.sampled.LineUnavailableException: line with format
PCM_SIGNED 44100.0 Hz,
24 bit,
stereo,
6 bytes/frame,
little-endian not supported.
我不知道其余的,但我遇到的大多数 PC 使用 8 或 16 位“位深度”,而使用 24 位。它表示非常精细的录音质量。如果 8 位是“电话质量”,16 位是“CD 质量”,那么 24 位就是“母带录音质量”。
关于javax.sound.sampled.LineUnavailableException : Why am I getting this exception?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15852254/
我是一名优秀的程序员,十分优秀!