gest.js icon indicating copy to clipboard operation
gest.js copied to clipboard

Not working in Firefox

Open romin4you opened this issue 9 years ago • 3 comments

Hello, With recently Deprecatiion of getUserMedia from chrome, i tried to test it with firefox and it is not working.

romin4you avatar Dec 14 '15 12:12 romin4you

Same here!

ecfaria avatar Dec 15 '15 01:12 ecfaria

I had many problems with all browsers until I realized I had to use HTTPS. If that isn't the problem, pasting some error messages would be good.

cchan avatar Mar 04 '16 03:03 cchan

This could be the because of navigator.getUserMedia() being depreciated. I changed the initialization line from

navigator.getUserMedia = navigator.getUserMedia || navigator.webkitGetUserMedia || navigator.mozGetUserMedia; //|| navigator.msGetUserMedia;

to

navigator.getUserMedia = mediaDevices.getUserMedia || navigator.getUserMedia || navigator.webkitGetUserMedia || navigator.mozGetUserMedia; //|| navigator.msGetUserMedia;

and it's working in Chrome v49

b-zaar avatar Apr 29 '16 17:04 b-zaar