How to Map Audio Input to Output Devices in Java -
when have audio devices have microphone , speaker integrated in 1 device (such e.g. headsets) how can detect 2 respective devices belong together?
e.g. following code lists audio devices connected computer:
for(info info : audiosystem.getmixerinfo()){ system.out.println(info); }
but detected individual devices , not seem have properties allow mapping ones belong together...
edit: might worth noting audio devices working usb devices. if somehow map input / output devices usb devices not solve problem more useful mapping them each other.
Comments
Post a Comment