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

Popular posts from this blog

powershell Start-Process exit code -1073741502 when used with Credential from a windows service environment -

twig - Using Twigbridge in a Laravel 5.1 Package -

c# - LINQ join Entities from HashSet's, Join vs Dictionary vs HashSet performance -