gpt4 book ai didi

javax.sound.sampled.LineUnavailableException : Why am I getting this exception?

转载 作者:搜寻专家 更新时间:2023-11-01 03:25:11 26 4
gpt4 key购买 nike

当执行下面的方法时:

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/

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