Java Code Examples for javax.sound.sampled.Mixer#getMixerInfo()
The following examples show how to use
javax.sound.sampled.Mixer#getMixerInfo() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: SinkAudio.java From FoxTelem with GNU General Public License v3.0 | 4 votes |
private static String getMixerIdString(Mixer appMixer) { Mixer.Info info = appMixer.getMixerInfo(); return info.getName() + info.getDescription() + info.getVendor() + info.getVersion(); }
Example 2
Source File: SourceSoundCardAudio.java From FoxTelem with GNU General Public License v3.0 | 4 votes |
private static String getMixerIdString(Mixer appMixer) { Mixer.Info info = appMixer.getMixerInfo(); return info.getName() + info.getDescription() + info.getVendor() + info.getVersion(); }
Example 3
Source File: JavaMixer.java From Spark with Apache License 2.0 | 4 votes |
public MixerNode(Mixer mixer) { super(mixer.getMixerInfo(), true); this.mixer = mixer; }