8

我正在使用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)
4

19 回答 19

6
OS: Mac OS X 10.5.6/i386
Java: 1.5.0_16 (Apple Inc.)

Mixer: Software mixer and synthesizer [Java Sound Audio Engine]
Mixer: No details available [Built-in Microphone]
Mixer: No details available [Built-in Input]
于 2009-03-29T22:58:46.143 回答
5
OS: Windows XP 5.1/x86
Java: 1.6.0_12 (Sun Microsystems Inc.)

Mixer: Direct Audio Device: DirectSound Playback [Primary Sound Driver]
Mixer: Direct Audio Device: DirectSound Playback [SoundMAX Digital Audio]
Mixer: Direct Audio Device: DirectSound Capture [Primary Sound Capture Driver]
Mixer: Direct Audio Device: DirectSound Capture [SoundMAX Digital Audio]
Mixer: Software mixer and synthesizer [Java Sound Audio Engine]
Mixer: Port Mixer [Port SoundMAX Digital Audio]
  Source Port: COMPACT_DISC source port
    Control: CD Player (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: MIC Boost (boolean)
      Control: Mic2 Select (boolean)
      Control: Volume (float: from 0.0 to 1.0)
  Source Port: Aux source port
    Control: Aux (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: Phone source port
    Control: Phone (compound - values below)
      Control: Select (boolean)
      Control: Volume (float: from 0.0 to 1.0)
  Source Port: Mono Out source port
    Control: Mono Out (compound - values below)
      Control: Select (boolean)
      Control: Volume (float: from 0.0 to 1.0)
  Source Port: Wave Out Mix source port
    Control: Wave Out 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)
  Target Port: SPEAKER target port
    Control: Volume (float: from 0.0 to 1.0)
    Control: Balance (float: from -1.0 to 1.0)
    Control: AC3 SPDIF (boolean)
    Control: PCM SPDIF (boolean)
    Control: Mute (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: BassBoost (compound - values below)
      Control: Volume (float: from 0.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: Microphone (compound - values below)
      Control: Mic2 Select (boolean)
      Control: MIC Boost (boolean)
      Control: Volume (float: from 0.0 to 1.0)
      Control: Mute (boolean)
    Control: Aux (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: Line In (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: Phone (compound - values below)
      Control: Volume (float: from 0.0 to 1.0)
      Control: Mute (boolean)
    Control: Mono Out (compound - values below)
      Control: Volume (float: from 0.0 to 1.0)
      Control: Mute (boolean)

注意:复制自http://fnord.pastebin.ca/1341281

于 2009-02-18T19:06:09.830 回答
5

正如 Uri 所指出的,Java Sound API 在 Mac OS X 上肯定不会产生任何有趣的结果:

OS: Darwin 9.6.0/i386
Java: 1.6.0_03-p3 (Sun Microsystems Inc.)

Mixer: software mixer and synthesizer [Java Sound Audio Engine]

另外,我应该注意,我使用的是 soylatte-1.0.3,而不是随 Apple 开发人员工具一起分发的相当老的 JDK。

于 2009-02-18T19:16:18.387 回答
5
asus p5gc-mx/1333

Name    Realtek High Definition Audio
Manufacturer    Realtek
Status  OK
PNP Device ID   HDAUDIO\FUNC_01&VEN_10EC&DEV_0662&SUBSYS_10438290&REV_1001\4&18A64267&0&0001
Driver  c:\windows\system32\drivers\rtkhdaud.sys (5.10.0.5506 built by: WinDDK, 4.41 MB (4,620,288 bytes), 12/23/2008 5:14 PM)


OS: Windows XP 5.1/x86
Java: 1.6.0_11 (Sun Microsystems Inc.)

Mixer: Direct Audio Device: DirectSound Playback [Primary Sound Driver]
Mixer: Direct Audio Device: DirectSound Playback [Realtek HD Audio output]
Mixer: Direct Audio Device: DirectSound Capture [Primary Sound Capture Driver]
Mixer: Direct Audio Device: DirectSound Capture [Realtek HD Audio Input]
Mixer: Software mixer and synthesizer [Java Sound Audio Engine]
Mixer: Port Mixer [Port Realtek HD Audio output]
  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: 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: Front (compound - values below)
      Control: Volume (float: from 0.0 to 1.0)
      Control: Balance (float: from -1.0 to 1.0)
    Control: Rear (compound - values below)
      Control: Volume (float: from 0.0 to 1.0)
      Control: Balance (float: from -1.0 to 1.0)
    Control: Subwoofer (compound - values below)
      Control: Volume (float: from 0.0 to 1.0)
    Control: Center (compound - values below)
      Control: Volume (float: from 0.0 to 1.0)
    Control: SPDIF (compound - values below)
      Control: Mute (boolean)
    Control: Line Volume (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: Mic Volume (compound - values below)
      Control: Volume (float: from 0.0 to 1.0)
      Control: Balance (float: from -1.0 to 1.0)
      Control: Microphone Boost (boolean)
      Control: Mute (boolean)
    Control: CD Volume (compound - values below)
      Control: Volume (float: from 0.0 to 1.0)
      Control: Balance (float: from -1.0 to 1.0)
      Control: Mute (boolean)
Mixer: Port Mixer [Port Realtek HD Audio Input]
  Source Port: COMPACT_DISC source port
    Control: CD Volume (compound - values below)
      Control: Mute (boolean)
  Source Port: LINE_IN source port
    Control: Line Volume (compound - values below)
      Control: Mute (boolean)
  Source Port: MICROPHONE source port
    Control: Mic Volume (compound - values below)
      Control: Mute (boolean)
  Source Port: Stereo Mix source port
    Control: Stereo Mix (compound - values below)
      Control: Mute (boolean)
  Target Port: Recording Control target port
    Control: Volume (float: from 0.0 to 1.0)
    Control: Balance (float: from -1.0 to 1.0)
    Control: Mute (boolean)
    Control: CD Volume (compound - values below)
      Control: Mute (boolean)
    Control: Line Volume (compound - values below)
      Control: Mute (boolean)
    Control: Mic Volume (compound - values below)
      Control: Mute (boolean)
    Control: Stereo Mix (compound - values below)
      Control: Mute (boolean)
于 2009-02-18T19:17:40.007 回答
4

我从来没有弄乱过声音 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)
于 2009-02-18T19:02:21.993 回答
4
OS: Linux 2.6.24-23-generic/amd64
Java: 1.6.0_05 (Sun Microsystems Inc.)

Mixer: Direct Audio Device: NVidia CK804, Intel ICH, NVidia CK804 [CK804 [plughw:0,0]]
Mixer: Direct Audio Device: NVidia CK804, Intel ICH - MIC ADC, NVidia CK804 - MIC ADC [CK804 [plughw:0,1]]
Mixer: Direct Audio Device: NVidia CK804, Intel ICH - IEC958, NVidia CK804 - IEC958 [CK804 [plughw:0,2]]
Mixer: Software mixer and synthesizer [Java Sound Audio Engine]
Mixer: NVidia CK804, Realtek ALC850 rev 0 [Port CK804 [hw:0]]
  Source Port: IEC958 Playback AC97-SPSA source port
    Control: IEC958 Playback AC97-SPSA (compound - values below)
      Control: Volume (float: from 0.0 to 1.0)
  Source Port: Capture source port
    Control: Capture (compound - values below)
      Control: Volume (float: from 0.0 to 1.0)
      Control: Balance (float: from -1.0 to 1.0)
      Control: Select (boolean)
  Target Port: Master target port
    Control: Master (compound - values below)
      Control: Volume (float: from 0.0 to 1.0)
      Control: Balance (float: from -1.0 to 1.0)
      Control: Mute (boolean)
  Target Port: Master Mono target port
    Control: Master Mono (compound - values below)
      Control: Volume (float: from 0.0 to 1.0)
      Control: Mute (boolean)
  Target Port: PCM target port
    Control: PCM (compound - values below)
      Control: Volume (float: from 0.0 to 1.0)
      Control: Balance (float: from -1.0 to 1.0)
      Control: Mute (boolean)
  Target Port: Surround target port
    Control: Surround (compound - values below)
      Control: Volume (float: from 0.0 to 1.0)
      Control: Balance (float: from -1.0 to 1.0)
      Control: Mute (boolean)
  Target Port: Center target port
    Control: Center (compound - values below)
      Control: Volume (float: from 0.0 to 1.0)
      Control: Mute (boolean)
  Target Port: LFE target port
    Control: LFE (compound - values below)
      Control: Volume (float: from 0.0 to 1.0)
      Control: Mute (boolean)
  Target Port: Line target port
    Control: Line (compound - values below)
      Control: Volume (float: from 0.0 to 1.0)
      Control: Balance (float: from -1.0 to 1.0)
      Control: Mute (boolean)
  Target Port: CD target port
    Control: CD (compound - values below)
      Control: Volume (float: from 0.0 to 1.0)
      Control: Balance (float: from -1.0 to 1.0)
      Control: Mute (boolean)
  Target Port: Mic target port
    Control: Mic (compound - values below)
      Control: Volume (float: from 0.0 to 1.0)
      Control: Mute (boolean)
  Target Port: Phone target port
    Control: Phone (compound - values below)
      Control: Volume (float: from 0.0 to 1.0)
      Control: Mute (boolean)
  Target Port: IEC958 Playback AC97-SPSA target port
    Control: IEC958 Playback AC97-SPSA (compound - values below)
      Control: Volume (float: from 0.0 to 1.0)
  Target Port: PC Speaker target port
    Control: PC Speaker (compound - values below)
      Control: Volume (float: from 0.0 to 1.0)
      Control: Mute (boolean)
  Target Port: Aux target port
    Control: Aux (compound - values below)
      Control: Volume (float: from 0.0 to 1.0)
      Control: Balance (float: from -1.0 to 1.0)
      Control: Mute (boolean)
于 2009-02-18T23:25:01.783 回答
4
OS: Windows XP 5.1/x86  
Java: 1.6.0_06 (Sun Microsystems Inc.)  

Mixer: Direct Audio Device: DirectSound Playback [Primary Sound Driver]  
Mixer: Direct Audio Device: DirectSound Playback [SoundMAX HD Audio]  
Mixer: Direct Audio Device: DirectSound Capture [Primary Sound Capture Driver]  
Mixer: Direct Audio Device: DirectSound Capture [SoundMAX HD Audio]  
Mixer: Software mixer and synthesizer [Java Sound Audio Engine]  
Mixer: Port Mixer [Port SoundMAX HD 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: MICROPHONE source port  
    Control: Microphone (compound - values below)  
      Control: Select (boolean)  
      Control: Microphone Boost (boolean)  
      Control: Volume (float: from 0.0 to 1.0)  
      Control: Balance (float: from -1.0 to 1.0)  
  Source Port: COMPACT_DISC source port  
    Control: CD Player (compound - values below)  
      Control: Select (boolean)  
      Control: Volume (float: from 0.0 to 1.0)  
      Control: Balance (float: from -1.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: Disable Digital Output (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: Microphone (compound - values below)  
      Control: Microphone Boost (boolean)  
      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)  
于 2009-02-18T23:30:13.050 回答
4
操作系统:Windows XP 5.1/x86
Java:1.6.0_12(Sun Microsystems Inc.)

混音器:直接音频设备:DirectSound Playback [Primary Sound Driver]
混音器:直接音频设备:DirectSound Playback [VIA AC'97 Audio (WAVE)]
混音器:直接音频设备:DirectSound Capture [Primary Sound Capture Driver]
混音器:直接音频设备:DirectSound Capture [VIA AC'97 Audio (WAVE)]
混音器:软件混音器和合成器 [Java Sound Audio Engine]
混音器:端口混音器 [Port VIA AC'97 Audio (WAVE)]
  端口:立体声混音器源端口
    控制:立体声混音器(复合 - 下面的值)
      控制:选择(布尔)
      控制:音量(浮点数:从 0.0 到 1.0)
      控制:平衡(浮动:从 -1.0 到 1.0)
  端口:MICROPHONE 源端口
    控制:麦克风(复合 - 值如下)
      控制:选择(布尔)
      控制:Mic2 Select(布尔值)
      控制:20dB 提升(布尔值)
      控制:音量(浮点数:从 0.0 到 1.0)
  端口:LINE\_IN 源端口
    控制:线路输入(复合 - 下面的值)
      控制:选择(布尔)
      控制:音量(浮点数:从 0.0 到 1.0)
      控制:平衡(浮动:从 -1.0 到 1.0)
  端口:COMPACT\_DISC 源端口
    控制:CD 播放器(复合 - 值如下)
      控制:选择(布尔)
      控制:音量(浮点数:从 0.0 到 1.0)
      控制:平衡(浮动:从 -1.0 到 1.0)
  端口:视频源端口
    控制:视频(复合 - 下面的值)
      控制:选择(布尔)
      控制:音量(浮点数:从 0.0 到 1.0)
      控制:平衡(浮动:从 -1.0 到 1.0)
  端口:辅助源端口
    控制:辅助(复合 - 下面的值)
      控制:选择(布尔)
      控制:音量(浮点数:从 0.0 到 1.0)
      控制:平衡(浮动:从 -1.0 到 1.0)
于 2009-02-19T02:37:23.927 回答
4
OS: Windows XP 5.1/x86
Java: 1.6.0_03 (Sun Microsystems Inc.)

Mixer: Direct Audio Device: DirectSound Playback [Primary Sound Driver]
Mixer: Direct Audio Device: DirectSound Playback [SoundMAX HD Audio]
Mixer: Direct Audio Device: DirectSound Capture [Primary Sound Capture Driver]
Mixer: Direct Audio Device: DirectSound Capture [SoundMAX HD Audio]
Mixer: Software mixer and synthesizer [Java Sound Audio Engine]
Mixer: Port Mixer [Port SoundMAX HD Audio]
  Source Port: MICROPHONE source port
    Control: Microphone (compound - values below)
      Control: Select (boolean)
      Control: Microphone Boost (boolean)
      Control: Front panel microphone (boolean)
      Control: Volume (float: from 0.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)
  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: 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: Input Monitor (compound - values below)
      Control: Mute (boolean)
于 2009-02-19T02:43:51.807 回答
3
OS: Linux 2.6.28-15-generic/amd64
Java: 1.6.0_14 (Sun Microsystems Inc.)

Mixer: Direct Audio Device: HDA Intel, AD198x Analog, AD198x Analog [Intel [plughw:0,0]]
Mixer: Direct Audio Device: HDA Intel, AD198x Digital, AD198x Digital [Intel [plughw:0,1]]
Mixer: Direct Audio Device: USB Device 0x46d:0x8d7, USB Audio, USB Audio [U0x46d0x8d7 [plughw:1,0]]
Mixer: Software mixer and synthesizer [Java Sound Audio Engine]
Mixer: HDA Intel, Analog Devices AD1988 [Port Intel [hw:0]]
  Source Port: Front Mic Boost source port
    Control: Front Mic Boost (compound - values below)
      Control: Volume (float: from 0.0 to 1.0)
      Control: Balance (float: from -1.0 to 1.0)
  Source Port: Mic Boost source port
    Control: Mic Boost (compound - values below)
      Control: Volume (float: from 0.0 to 1.0)
      Control: Balance (float: from -1.0 to 1.0)
  Source Port: IEC958 source port
    Control: IEC958 (compound - values below)
      Control: Volume (float: from 0.0 to 1.0)
      Control: Balance (float: from -1.0 to 1.0)
      Control: Select (boolean)
  Source Port: Capture source port
    Control: Capture (compound - values below)
      Control: Volume (float: from 0.0 to 1.0)
      Control: Balance (float: from -1.0 to 1.0)
      Control: Select (boolean)
  Source Port: Capture source port
    Control: Capture (compound - values below)
      Control: Volume (float: from 0.0 to 1.0)
      Control: Balance (float: from -1.0 to 1.0)
      Control: Select (boolean)
  Source Port: Capture source port
    Control: Capture (compound - values below)
      Control: Volume (float: from 0.0 to 1.0)
      Control: Balance (float: from -1.0 to 1.0)
      Control: Select (boolean)
  Source Port: Digital source port
    Control: Digital (compound - values below)
      Control: Volume (float: from 0.0 to 1.0)
      Control: Balance (float: from -1.0 to 1.0)
  Target Port: Master target port
    Control: Master (compound - values below)
      Control: Volume (float: from 0.0 to 1.0)
      Control: Mute (boolean)
  Target Port: PCM target port
    Control: PCM (compound - values below)
      Control: Volume (float: from 0.0 to 1.0)
      Control: Balance (float: from -1.0 to 1.0)
  Target Port: Front target port
    Control: Front (compound - values below)
      Control: Volume (float: from 0.0 to 1.0)
      Control: Balance (float: from -1.0 to 1.0)
      Control: Mute (boolean)
  Target Port: Front Mic target port
    Control: Front Mic (compound - values below)
      Control: Volume (float: from 0.0 to 1.0)
      Control: Balance (float: from -1.0 to 1.0)
      Control: Mute (boolean)
  Target Port: Front Mic Boost target port
    Control: Front Mic Boost (compound - values below)
      Control: Volume (float: from 0.0 to 1.0)
      Control: Balance (float: from -1.0 to 1.0)
  Target Port: Surround target port
    Control: Surround (compound - values below)
      Control: Volume (float: from 0.0 to 1.0)
      Control: Balance (float: from -1.0 to 1.0)
      Control: Mute (boolean)
  Target Port: Center target port
    Control: Center (compound - values below)
      Control: Volume (float: from 0.0 to 1.0)
      Control: Mute (boolean)
  Target Port: LFE target port
    Control: LFE (compound - values below)
      Control: Volume (float: from 0.0 to 1.0)
      Control: Mute (boolean)
  Target Port: Side target port
    Control: Side (compound - values below)
      Control: Volume (float: from 0.0 to 1.0)
      Control: Balance (float: from -1.0 to 1.0)
      Control: Mute (boolean)
  Target Port: Line target port
    Control: Line (compound - values below)
      Control: Volume (float: from 0.0 to 1.0)
      Control: Balance (float: from -1.0 to 1.0)
      Control: Mute (boolean)
  Target Port: CD target port
    Control: CD (compound - values below)
      Control: Volume (float: from 0.0 to 1.0)
      Control: Balance (float: from -1.0 to 1.0)
      Control: Mute (boolean)
  Target Port: Mic target port
    Control: Mic (compound - values below)
      Control: Volume (float: from 0.0 to 1.0)
      Control: Balance (float: from -1.0 to 1.0)
      Control: Mute (boolean)
  Target Port: Mic Boost target port
    Control: Mic Boost (compound - values below)
      Control: Volume (float: from 0.0 to 1.0)
      Control: Balance (float: from -1.0 to 1.0)
  Target Port: IEC958 target port
    Control: IEC958 (compound - values below)
      Control: Volume (float: from 0.0 to 1.0)
      Control: Balance (float: from -1.0 to 1.0)
      Control: Mute (boolean)
  Target Port: Analog Mix target port
    Control: Analog Mix (compound - values below)
      Control: Volume (float: from 0.0 to 1.0)
      Control: Balance (float: from -1.0 to 1.0)
      Control: Mute (boolean)
  Target Port: Beep target port
    Control: Beep (compound - values below)
      Control: Volume (float: from 0.0 to 1.0)
      Control: Balance (float: from -1.0 to 1.0)
      Control: Mute (boolean)
Mixer: USB Device 0x46d:0x8d7, USB Mixer [Port U0x46d0x8d7 [hw:1]]
  Source Port: Mic source port
    Control: Mic (compound - values below)
      Control: Volume (float: from 0.0 to 1.0)
      Control: Select (boolean)
于 2009-08-26T19:43:54.677 回答
3

带有 Windows 7 的戴尔 9150:

OS: Windows 7 6.1/x86
Java: 1.6.0_16 (Sun Microsystems Inc.)

Mixer: Direct Audio Device: DirectSound Playback [Primary Sound Driver]
Mixer: Direct Audio Device: DirectSound Playback [Speakers (High Definition Audio Device)]
Mixer: Software mixer and synthesizer [Java Sound Audio Engine]
Mixer: Port Mixer [Port Speakers (High Definition Audio]
  Target Port: SPEAKER target port
    Control: Mute (boolean)
    Control: Volume (float: from 0.0 to 1.0)
    Control: CD Audio (compound - values below)
      Control: Mute (boolean)
      Control: Volume (float: from 0.0 to 1.0)
    Control: Master Volume (compound - values below)
      Control: Mute (boolean)
      Control: Volume (float: from 0.0 to 1.0)
于 2009-12-11T20:49:48.597 回答
3

这个来自在 Virtual Box 上运行 Windows (pt-BR) 的 MacBook Pro MB990BZ:

OS: Windows XP 5.1/x86
Java: 1.6.0_22 (Sun Microsystems Inc.)

Mixer: Direct Audio Device: DirectSound Playback [Driver de som primário]
Mixer: Direct Audio Device: DirectSound Playback [Intel(r) Integrated Audio]
Mixer: Direct Audio Device: DirectSound Capture [Driver de captura de som primár
io]
Mixer: Direct Audio Device: DirectSound Capture [Intel(r) Integrated Audio]
Mixer: Software mixer and synthesizer [Java Sound Audio Engine]
Mixer: Port Mixer [Port Intel(r) Integrated Audio]
  Source Port: Mixagem estéreo source port
    Control: Mixagem estéreo (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: Mixagem mono source port
    Control: Mixagem mono (compound - values below)
      Control: Select (boolean)
      Control: Volume (float: from 0.0 to 1.0)
  Source Port: Auxiliar source port
    Control: Auxiliar (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: Vídeo source port
    Control: Vídeo (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: COMPACT_DISC source port
    Control: Áudio CD (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: Entrada (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: Microfone (compound - values below)
      Control: Select (boolean)
      Control: Aumento de sensibilidade do microfone (boolean)
      Control: Microfone alternativo (boolean)
      Control: Volume (float: from 0.0 to 1.0)
  Source Port: Linha de telefone source port
    Control: Linha de telefone (compound - values below)
      Control: Select (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: Som 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: Sint. de SW (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: Auxiliar (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: Vídeo (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: Áudio CD (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: Entrada (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: Microfone (compound - values below)
      Control: Microfone alternativo (boolean)
      Control: Aumento de sensibilidade do microfone (boolean)
      Control: Volume (float: from 0.0 to 1.0)
      Control: Mute (boolean)
    Control: Linha de telefone (compound - values below)
      Control: Volume (float: from 0.0 to 1.0)
      Control: Mute (boolean)
    Control: Alto-falante (compound - values below)
      Control: Volume (float: from 0.0 to 1.0)
      Control: Mute (boolean)
  Target Port: Saída mono target port
    Control: Mixagem mono (compound - values below)
      Control: Volume (float: from 0.0 to 1.0)
    Control: Microfone (compound - values below)
      Control: Aumento de sensibilidade do microfone (boolean)
      Control: Microfone alternativo (boolean)
      Control: Volume (float: from 0.0 to 1.0)
于 2010-11-16T18:56:57.690 回答
2

请注意,Java Sound API 在 Mac OS X 上没有正确实现。

于 2009-02-18T19:05:24.793 回答
2

GrowlSafari 似乎有问题 - 不知道为什么这会被注册为输入服务器......

OS: Mac OS X 10.6.1/x86_64
Java: 1.6.0_15 (Apple Inc.)

2009-10-07 15:53:56.203 java[5008:1707] Can't open input server /Library/InputManagers/GrowlSafari
Mixer: Software mixer and synthesizer [Java Sound Audio Engine]
Mixer: No details available [Built-in Microphone]
Mixer: No details available [Built-in Input]
于 2009-10-07T14:57:06.677 回答
2

将 HP 笔记本电脑放入带有独立音频输出坞站的坞站中:

OS: Windows XP 5.1 build 2600 Service Pack 2/x86
Java: 1.5.0 (IBM Corporation)

Mixer: Direct Audio Device: DirectSound Playback [Primary Sound Driver]
Mixer: Direct Audio Device: DirectSound Playback [SoundMAX HD Audio]
Mixer: Direct Audio Device: DirectSound Playback [ATI HD Audio rear output]
Mixer: Direct Audio Device: DirectSound Capture [Primary Sound Capture Driver]
Mixer: Direct Audio Device: DirectSound Capture [SoundMAX HD Audio]
Mixer: Software mixer and synthesizer [Java Sound Audio Engine]
Mixer: Port Mixer [Port SoundMAX HD 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: MICROPHONE source port
    Control: Microphone (compound - values below)
      Control: Select (boolean)
      Control: Microphone Boost (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)
  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: Disable digital output (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 Beep (compound - values below)
      Control: Volume (float: from 0.0 to 1.0)
      Control: Mute (boolean)
    Control: Line In (compound - values below)
      Control: Volume (float: from 0.0 to 1.0)
      Control: Balance (float: from -1.0 to 1.0)
      Control: Mute (boolean)
Mixer: Port Mixer [Port ATI HD Audio rear output]
  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: 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)
于 2009-12-10T15:45:15.303 回答
2

我为你插入了一些额外的 USB 声卡:

    OS: Windows XP 5.1/x86
    Java: 1.6.0_13 (Sun Microsystems Inc.)

    Mixer: Direct Audio Device: DirectSound Playback [Primary Sound Driver]
    Mixer: Direct Audio Device: DirectSound Playback [C-Media USB Audio Device   ]
    Mixer: Direct Audio Device: DirectSound Playback [SigmaTel Audio]
    Mixer: Direct Audio Device: DirectSound Playback [Virtual Cable 1]
    Mixer: Direct Audio Device: DirectSound Playback [SpeechMikeII]
    Mixer: Direct Audio Device: DirectSound Playback [PowerMicII-NS]
    Mixer: Direct Audio Device: DirectSound Capture [Primary Sound Capture Driver]
    Mixer: Direct Audio Device: DirectSound Capture [C-Media USB Audio Device   ]
    Mixer: Direct Audio Device: DirectSound Capture [SigmaTel Audio]
    Mixer: Direct Audio Device: DirectSound Capture [Virtual Cable 1]
    Mixer: Direct Audio Device: DirectSound Capture [SpeechMikeII]
    Mixer: Direct Audio Device: DirectSound Capture [Buddy DesktopMic PTT]
    Mixer: Direct Audio Device: DirectSound Capture [PowerMicII-NS]
    Mixer: Software mixer and synthesizer [Java Sound Audio Engine]
    Mixer: Port Mixer [Port C-Media USB Audio Device   ]
      Source Port: MICROPHONE source port
      Target Port: SPEAKER target port
        Control: Mute (boolean)
        Control: Volume (float: from 0.0 to 1.0)
        Control: Balance (float: from -1.0 to 1.0)
        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)
      Target Port: Wave In target port
        Control: Mute (boolean)
        Control: Volume (float: from 0.0 to 1.0)
        Control: AGC (boolean)
    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: External Mic (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: External Mic (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)
    Mixer: Port Mixer [Port Virtual Cable 1]
      Source Port: SPDIF Interface source port
        Control: SPDIF Interface (compound - values below)
          Control: Volume (float: from 0.0 to 1.0)
          Control: Balance (float: from -1.0 to 1.0)
          Control: Mute (boolean)
      Source Port: LINE_IN source port
        Control: Line (compound - values below)
          Control: Volume (float: from 0.0 to 1.0)
          Control: Balance (float: from -1.0 to 1.0)
          Control: Mute (boolean)
      Source Port: MICROPHONE source port
        Control: Microphone (compound - values below)
          Control: Volume (float: from 0.0 to 1.0)
          Control: Balance (float: from -1.0 to 1.0)
          Control: Mute (boolean)
      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: 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)
    Mixer: Port Mixer [Port SpeechMikeII]
      Source Port: MICROPHONE source port
      Target Port: SPEAKER target port
        Control: Mute (boolean)
        Control: Volume (float: from 0.0 to 1.0)
        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)
      Target Port: Wave In target port
        Control: Mute (boolean)
        Control: Volume (float: from 0.0 to 1.0)
    Mixer: Port Mixer [Port Buddy DesktopMic PTT]
      Source Port: MICROPHONE source port
        Control: Microphone (compound - values below)
          Control: Mute (boolean)
          Control: Volume (float: from 0.0 to 1.0)
    Mixer: Port Mixer [Port PowerMicII-NS]
      Source Port: MICROPHONE source port
        Control: Microphone (compound - values below)
          Control: Mute (boolean)
          Control: Volume (float: from 0.0 to 1.0)
      Target Port: SPEAKER target port
        Control: Mute (boolean)
        Control: Volume (float: from 0.0 to 1.0)
        Control: Balance (float: from -1.0 to 1.0)
        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)
于 2010-04-09T00:19:57.750 回答
2
OS: Mac OS X 10.6.7/x86_64
Java: 1.6.0_26 (Apple Inc.)

Mixer: Software mixer and synthesizer [Java Sound Audio Engine]
Mixer: No details available [Microphone (Pink Front)]
于 2011-11-02T01:43:53.980 回答
1
操作系统:Linux 2.6.32-26-generic/i386
Java:1.6.0_22(Sun Microsystems Inc.)

混音器:直接音频设备:HDA Intel、ALC262 Analog、ALC262 Analog [Intel [plughw:0,0]]
混音器:软件混音器和合成器 [Java Sound Audio Engine]
混音器:HDA Intel、Realtek ALC262 [Port Intel [hw:0]]
  源端口:捕获源端口
    控制:捕获(复合 - 下面的值)
      控制:音量(浮点数:从 0.0 到 1.0)
      控制:平衡(浮动:从 -1.0 到 1.0)
      控制:选择(布尔)
  源端口:捕获源端口
    控制:捕获(复合 - 下面的值)
      控制:音量(浮点数:从 0.0 到 1.0)
      控制:平衡(浮动:从 -1.0 到 1.0)
      控制:选择(布尔)
  源端口:捕获源端口
    控制:捕获(复合 - 下面的值)
      控制:音量(浮点数:从 0.0 到 1.0)
      控制:平衡(浮动:从 -1.0 到 1.0)
      控制:选择(布尔)
  源端口:数字源端口
    控制:数字(复合 - 值如下)
      控制:音量(浮点数:从 0.0 到 1.0)
      控制:平衡(浮动:从 -1.0 到 1.0)
  目标端口:主目标端口
    控制:主(复合 - 下面的值)
      控制:音量(浮点数:从 0.0 到 1.0)
      控制:平衡(浮动:从 -1.0 到 1.0)
      控制:静音(布尔值)
  目标端口:PCM目标端口
    控制:PCM(复合 - 值如下)
      控制:音量(浮点数:从 0.0 到 1.0)
      控制:平衡(浮动:从 -1.0 到 1.0)
  目标端口:麦克风目标端口
    控制:麦克风(复合 - 值如下)
      控制:音量(浮点数:从 0.0 到 1.0)
      控制:平衡(浮动:从 -1.0 到 1.0)
      控制:静音(布尔值)
  目标端口:哔目标端口
    控制:哔哔声(复合 - 下面的值)
      控制:音量(浮点数:从 0.0 到 1.0)
      控制:平衡(浮动:从 -1.0 到 1.0)
      控制:静音(布尔值)
  目标端口:ATAPI 麦克风目标端口
    控制:ATAPI 麦克风(复合 - 值如下)
      控制:音量(浮点数:从 0.0 到 1.0)
      控制:平衡(浮动:从 -1.0 到 1.0)
      控制:静音(布尔值)
于 2010-12-01T23:21:17.593 回答
1
OS: Windows 7 6.1/amd64
Java: 1.6.0_21 (Sun Microsystems Inc.)

Mixer: Software mixer and synthesizer [Java Sound Audio Engine]
Mixer: No details available [Microsoft Sound Mapper]
Mixer: No details available [Microphone (Logitech Mic (Orbit]
Mixer: Port Mixer [Port Speakers (High Definition Audio]
  Target Port: SPEAKER target port
    Control: Mute (boolean)
    Control: Volume (float: from 0.0 to 1.0)
    Control: CD Audio (compound - values below)
      Control: Mute (boolean)
      Control: Volume (float: from 0.0 to 1.0)
    Control: Master Volume (compound - values below)
      Control: Mute (boolean)
      Control: Volume (float: from 0.0 to 1.0)
Mixer: Port Mixer [Port Digital Audio (S/PDIF) (High De]
  Target Port: Master Volume target port
    Control: Mute (boolean)
    Control: Volume (float: from 0.0 to 1.0)
    Control: CD Audio (compound - values below)
      Control: Mute (boolean)
      Control: Volume (float: from 0.0 to 1.0)
    Control: Master Volume (compound - values below)
      Control: Mute (boolean)
      Control: Volume (float: from 0.0 to 1.0)
Mixer: Port Mixer [Port Digital Audio (S/PDIF) (High De]
  Target Port: Master Volume target port
    Control: Mute (boolean)
    Control: Volume (float: from 0.0 to 1.0)
    Control: CD Audio (compound - values below)
      Control: Mute (boolean)
      Control: Volume (float: from 0.0 to 1.0)
    Control: Master Volume (compound - values below)
      Control: Mute (boolean)
      Control: Volume (float: from 0.0 to 1.0)
Mixer: Port Mixer [Port Microphone (Logitech Mic (Orbit]
  Source Port: MICROPHONE source port
    Control: Master Volume (compound - values below)
      Control: Mute (boolean)
      Control: Volume (float: from 0.0 to 1.0)
  Target Port: Master Volume target port
    Control: Mute (boolean)
    Control: Volume (float: from 0.0 to 1.0)
    Control: Master Volume (compound - values below)
      Control: Mute (boolean)
      Control: Volume (float: from 0.0 to 1.0)
于 2010-12-07T12:12:11.067 回答