• Kairos
    link
    English
    -1923 days ago

    Let me guess, itll still let websites see a list connected microphones and cameras with zero user interaction?

    • @Blackmist@feddit.uk
      link
      fedilink
      English
      223 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.

      • Kairos
        link
        English
        023 days ago

        So it still ahows the number of devices then?