Chrome issue getting devices

Hi, we are having a problem on Chrome where it comes back with an OverConstrainedError

I’ve attached the console output. Same code works fine on Safari but Chrome on Mac OS doesn’t work. We are using the current production version.

Any ideas?

I have the same issue. did you find any solution?

This is the Web API telling you that the “deviceId” property used in method navigator.mediaDevices.getUserMedia is violating the supported values. That “deviceId” property is finally used by openvidu-browser in the MediaTrackConstraints object to init the audio or video source. And it is doing so with the “exact” option, so if the deviceId is not supported as a valid audio or video input device, it will fail with that error.

To sum it up: you are probably passing as audioSource or videoSource in your PublisherProperties configuration object an invalid deviceId.

Cheers.