Advertisement
gentlemoose

List audio devices in chromium

Sep 22nd, 2019
154
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. navigator.mediaDevices.enumerateDevices().then(devices => {
  2.   devices.forEach(device => console.log(device.label))
  3. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement