Ios chrome getting error getUserMedia is not implemented in this browser?

434 Views Asked by At
window.navigator.mediaDevices.getUserMedia({ audio: true }).then(function (stream) {
  console.log(stream)
}).catch(function (err) {
    console.error(err);
});

It's working fine in the latest ios 15 OS but it's not working old ios 12,13,14 os. Also working safari in every ios os.

0

There are 0 best solutions below