gpt4 book ai didi

java - 在特定的声音设备java上播放声音

转载 作者:行者123 更新时间:2023-11-29 04:44:52 27 4
gpt4 key购买 nike

我正在尝试做一些简单的事情。我想在给定的声音媒体上播放声音,而不是在默认媒体上播放。

这是我的最后一次尝试,遍历所有媒体并播放声音。只有默认设备上的媒体才能播放内容。直接播放连默认设备都不行。

public void testSoundPLayer() throws Exception {
AudioInputStream inputStream = AudioSystem.getAudioInputStream(Main.class.getResourceAsStream(Constants.SOUND_ALERT));

Mixer.Info[] mixerInfo = AudioSystem.getMixerInfo();
for(int i = 0; i < mixerInfo.length; i++)
{
Mixer.Info info = mixerInfo[i];

System.out.println(String.format("Name [%s] \n Description [%s]\n\n", info.getName(), info.getDescription()));
System.out.println(info.getDescription());

try
{
Clip clip = AudioSystem.getClip(info);
clip.open(inputStream);
clip.start();
}
catch (Throwable t)
{
System.out.println(t.toString());
}
Thread.sleep(2000L);
}
}

我愿意使用外部库,甚至更改默认声卡。我只想要一个“不错”的方法来在给定的声卡上播放声音(wav),而不需要依赖于操作系统的方法。

最佳答案

真可惜,我犯了一个大错,我没有重新加载流。这意味着秒播放不起作用。

有一个工作示例。

public void testSoundPLayer() throws Exception {

Mixer.Info[] mixerInfo = AudioSystem.getMixerInfo();
for(int i = 0; i < mixerInfo.length; i++)
{
AudioInputStream inputStream = AudioSystem.getAudioInputStream(Main.class.getResourceAsStream(Constants.SOUND_ALERT));

Mixer.Info info = mixerInfo[i];

System.out.println(String.format("Name [%s] \n Description [%s]\n\n", info.getName(), info.getDescription()));
System.out.println(info.getDescription());

try
{
Clip clip = AudioSystem.getClip(info);
clip.open(inputStream);
clip.start();
}
catch (Throwable t)
{
System.out.println(t.toString());
}
Thread.sleep(2000L);
}

要检查设备是输入还是输出,请使用以下方法:

// Param for playback (input) device.
Line.Info playbackLine = new Line.Info(SourceDataLine.class);
// Param for capture (output) device.
Line.Info captureLine = new Line.Info(TargetDataLine.class);


private List<Mixer.Info> filterDevices(final Line.Info supportedLine) {
List<Mixer.Info> result = Lists.newArrayList();

ArrayList<Mixer.Info> infos = Lists.newArrayList(AudioSystem.getMixerInfo());
for (Mixer.Info info : infos) {
Mixer mixer = AudioSystem.getMixer(info);
if (mixer.isLineSupported(supportedLine)) {
result.add(info);
}
}
return result;
}

关于java - 在特定的声音设备java上播放声音,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37609430/

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