jonashartmann/webcam-directive

Firefox 63.0.3 (64 bit) don't work

Closed this issue · 4 comments

It doesn't work, the example page does not work too ( https://jonas.hartmann.site/webcam-directive/#/ ).
There is no error only a warning:
navigator.mozGetUserMedia è stato sostituito da navigator.mediaDevices.getUserMedia

For me worked by

changing this:
videoElem.mozSrcObject = stream;
into:
videoElem.srcObject = stream;

I ran into the same issue
BTW: the englisjh version of the warning is:
navigator.mozGetUserMedia has been replaced by navigator.mediaDevices.getUserMedia

I think there is already a fix for this : #67

The problem is that this hasn't been published in a build. But if you grab the source for yourself from github, I think you might be okay.

I've updated it to 3.2.1 to fix those issues. See #68
I still need to update the demo page #69

Demo page was updated.