• Blackmist
    link
    fedilink
    English
    arrow-up
    2
    ·
    16 days ago

    Trying

    navigator.mediaDevices.enumerateDevices()
    .then(function(devices) {
      devices.forEach(function(device) {
        console.log(device.kind + ": " + device.label +
                " id = " + device.deviceId);
      });
    })
    

    it appears to have no label and the ids are randomly generated per site.