我正在使用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";}
}
应用程序所做的只是打印出一行关于操作系统、一行关于 JVM 以及几行关于发现的可能与记录硬件有关的硬件的行。例如,在我工作的 PC 上,我得到以下信息:
操作系统:Windows XP 5.1/x86 Java:1.6.0_07(Sun Microsystems Inc.)
混音器:直接音频设备:DirectSound Playback [Primary Sound Driver] 混音器:直接音频设备:DirectSound Playback [SoundMAX HD Audio] 混音器:直接音频设备:DirectSound Capture [Primary Sound Capture Driver] 混音器:直接音频设备:DirectSound Capture [SoundMAX HD Audio] 混音器:软件混音器和合成器 [Java Sound Audio Engine] 混音器:Port Mixer [Port SoundMAX HD Audio] 源端口:MICROPHONE 源端口 控制:麦克风(复合 - 下面的值) 控制:选择(布尔) 控制:麦克风增强(布尔值) 控制:前面板麦克风(布尔值) 控制:音量(浮点数:从 0.0 到 1.0) 源端口:LINE_IN 源端口 控制:线路输入(复合 - 下面的值) 控制:选择(布尔) 控制:音量(浮点数:从 0.0 到 1.0) 控制:平衡(浮动:从 -1.0 到 1.0)