angular-qr-scanner icon indicating copy to clipboard operation
angular-qr-scanner copied to clipboard

$window.localMediaStream.stop(); not available on Chrome

Open dev-mansonthomas opened this issue 8 years ago • 2 comments

This don't work anymore in Google Chrome https://developers.google.com/web/updates/2015/07/mediastream-deprecations?hl=en#stop-ended-and-active $window.localMediaStream.stop(); and needs to be replaced by this : (which works one Firefox & Chrome) $window.localMediaStream.getTracks()[0].stop();

dev-mansonthomas avatar Apr 28 '16 06:04 dev-mansonthomas

:+1:

diegobill avatar May 21 '16 16:05 diegobill

I also replaced localMediaStream with MediaStreamTrack.

phzietsman avatar Jan 23 '17 19:01 phzietsman