我正在使用Java Sound API,事实证明,如果我想调整录音量,需要对操作系统向Java公开的硬件进行建模。事实证明,呈现的内容多种多样。
因此,我很谦虚地要求任何能够帮助我在他们的计算机上运行以下命令并将结果发回的人,以便我对那里的情况有所了解。
在此先感谢任何可以提供帮助的人:-)
import javax.sound.sampled.*;
public class SoundAudit {
public static void main(String[] args) { try {
System.out.println("OS: "+System.getProperty("os.name")+" "+
System.getProperty("os.version")+"/"+
System.getProperty("os.arch")+"\nJava: "+
System.getProperty("java.version")+" ("+
System.getProperty("java.vendor")+")\n");
for (Mixer.Info thisMixerInfo : AudioSystem.getMixerInfo()) {
System.out.println("Mixer: "+thisMixerInfo.getDescription()+
" ["+thisMixerInfo.getName()+"]");
Mixer thisMixer = AudioSystem.getMixer(thisMixerInfo);
for (Line.Info thisLineInfo:thisMixer.getSourceLineInfo()) {
if (thisLineInfo.getLineClass().getName().equals(
"javax.sound.sampled.Port")) {
Line thisLine = thisMixer.getLine(thisLineInfo);
thisLine.open();
System.out.println(" Source Port: "
+thisLineInfo.toString());
for (Control thisControl : thisLine.getControls()) {
System.out.println(AnalyzeControl(thisControl));}
thisLine.close();}}
for (Line.Info thisLineInfo:thisMixer.getTargetLineInfo()) {
if (thisLineInfo.getLineClass().getName().equals(
"javax.sound.sampled.Port")) {
Line thisLine = thisMixer.getLine(thisLineInfo);
thisLine.open();
System.out.println(" Target Port: "
+thisLineInfo.toString());
for (Control thisControl : thisLine.getControls()) {
System.out.println(AnalyzeControl(thisControl));}
thisLine.close();}}}
} catch (Exception e) {e.printStackTrace();}}
public static String AnalyzeControl(Control thisControl) {
String type = thisControl.getType().toString();
if (thisControl instanceof BooleanControl) {
return " Control: "+type+" (boolean)"; }
if (thisControl instanceof CompoundControl) {
System.out.println(" Control: "+type+
" (compound - values below)");
String toReturn = "";
for (Control children:
((CompoundControl)thisControl).getMemberControls()) {
toReturn+=" "+AnalyzeControl(children)+"\n";}
return toReturn.substring(0, toReturn.length()-1);}
if (thisControl instanceof EnumControl) {
return " Control:"+type+" (enum: "+thisControl.toString()+")";}
if (thisControl instanceof FloatControl) {
return " Control: "+type+" (float: from "+
((FloatControl) thisControl).getMinimum()+" to "+
((FloatControl) thisControl).getMaximum()+")";}
return " Control: unknown type";}
}
该应用程序所做的全部工作就是打印关于OS的一行,关于JVM的一行以及关于发现的与记录硬件有关的硬件的几行内容。例如,在工作中的PC上,我得到以下信息:
操作系统:Windows XP 5.1 / x86 Java:1.6.0_07(Sun Microsystems Inc.)
调音台:直接音频设备:DirectSound播放[主声音驱动程序]
调音台:直接音频设备:DirectSound播放[SoundMAX HD音频]
调音台:直接音频设备:DirectSound Capture [主声音捕获驱动程序]
调音台:直接音频设备:DirectSound捕获[SoundMAX HD音频]
混音器:软件混音器和合成器[Java声音音频引擎]
调音台:端口调音台[Port SoundMAX HD Audio]
源端口:MICROPHONE源端口
控制:麦克风(化合物-值如下)
控制:选择(布尔值)
控制:麦克风增强(布尔)
控制:前面板麦克风(布尔)
控制:音量(浮动:从0.0到1.0)
源端口:LINE_IN源端口
控制:行输入(化合物-值如下)
控制:选择(布尔值)
控制:音量(浮动:从0.0到1.0)
控制:平衡(浮动:从-1.0到1.0)
我从来没有弄过声音API,这是一件好事。谢谢。
从戴尔笔记本电脑:
Mixer: Direct Audio Device: DirectSound Playback [Primary Sound Driver]
Mixer: Direct Audio Device: DirectSound Playback [SigmaTel Audio]
Mixer: Direct Audio Device: DirectSound Capture [Primary Sound Capture Driver]
Mixer: Direct Audio Device: DirectSound Capture [SigmaTel Audio]
Mixer: Software mixer and synthesizer [Java Sound Audio Engine]
Mixer: Port Mixer [Port SigmaTel Audio]
Source Port: Stereo Mix source port
Control: Stereo Mix (compound - values below)
Control: Select (boolean)
Control: Volume (float: from 0.0 to 1.0)
Control: Balance (float: from -1.0 to 1.0)
Source Port: LINE_IN source port
Control: Line In (compound - values below)
Control: Select (boolean)
Control: Volume (float: from 0.0 to 1.0)
Control: Balance (float: from -1.0 to 1.0)
Source Port: MICROPHONE source port
Control: Microphone (compound - values below)
Control: Select (boolean)
Control: Microphone Boost (boolean)
Control: Volume (float: from 0.0 to 1.0)
Source Port: MICROPHONE source port
Control: Microphone (compound - values below)
Control: Select (boolean)
Control: Microphone Boost (boolean)
Control: Volume (float: from 0.0 to 1.0)
Target Port: SPEAKER target port
Control: Volume (float: from 0.0 to 1.0)
Control: Balance (float: from -1.0 to 1.0)
Control: Mute (boolean)
Control: PC Spk Mute (boolean)
Control: SPDIF Interface (boolean)
Control: Wave (compound - values below)
Control: Volume (float: from 0.0 to 1.0)
Control: Balance (float: from -1.0 to 1.0)
Control: Mute (boolean)
Control: SW Synth (compound - values below)
Control: Volume (float: from 0.0 to 1.0)
Control: Balance (float: from -1.0 to 1.0)
Control: Mute (boolean)
Control: CD Player (compound - values below)
Control: Volume (float: from 0.0 to 1.0)
Control: Balance (float: from -1.0 to 1.0)
Control: Mute (boolean)
Control: PC Speaker (compound - values below)
Control: Volume (float: from 0.0 to 1.0)
Control: Mute (boolean)
当我打开NetBeans时,我得到了以下消息。我已经安装了JDK,并在环境中设置了bin目录。我下一步能做什么来避免这个问题?顺便说一句,我用的是Windows764位。
打开netbean时收到以下消息,这台电脑上找不到jdk。我已经安装了jdk,并在环境中设置了bin目录。顺便说一句,我使用的是Windows 10 pro 64位。 我已经在命令提示符中尝试过了。 但我得到了这个信息。 有人知道我能做些什么吗?谢谢。
问题内容: Go语言中有没有办法记录到不同级别的多个输出? 我希望有一个程序可以同时在Info级别记录到stdout并在带有时间戳的调试级别记录一个文件。 就像我每次编写代码一样: 我可以看到控制台打印: 和一个文件: 我使用logrus和glog,但是找不到此功能。还有其他包装或我可以编码的东西吗? 问题答案: Go-logging支持不同的日志记录后端,例如文件,syslog等。可以设置多个后
本文向大家介绍JavaScript cookie中存在哪些记录?,包括了JavaScript cookie中存在哪些记录?的使用技巧和注意事项,需要的朋友参考一下 您的服务器以cookie的形式向访问者的浏览器发送一些数据。浏览器可以接受cookie。如果是这样,它将以纯文本记录的形式存储在访问者的硬盘上。现在,当访问者到达您网站上的另一个页面时,浏览器会将相同的cookie发送到服务器以进行检索
问题内容: 我的sql查询获取固件的错误修复验证列表,例如def-456是一张票,要求我对产品进行固件测试。def-456有几个子任务,记录结果。结果记录为:id:abc-123,abc-124,abc-125等(如下表所示)。这些对应的ID的结果为“通过”或“失败”。我需要计算两个值----> 1.尝试次数:在以下示例中,尝试次数将为3/5,有3次通过和2次失败(即通过/通过+失败),在这里我可