addyosmani / getUserMedia.js

Shim for getUserMedia(). Uses native implementation for modern browsers and a Flash fallback for everyone else.
MIT License
903 stars 158 forks source link

Recent Chrome Version 47.0.2526.73 Breaks #51

Closed someyoungideas closed 8 years ago

someyoungideas commented 8 years ago

Recently upgrade to Chrome Version 47.0.2526.73 and this library is no longer asking for permissions to use device, and instead does not recognize camera device. I looked up the change log compared to my previous version if that will help at all.

https://chromium.googlesource.com/chromium/src/+log/46.0.2490.0..47.0.2526.0?pretty=fuller&n=10000

Did some more research in the change log and it looks like they depricated MediaStream stop() method and changed it to use stream.getVideoTracks()[0].stop(). I think this will just need to be a change in the docs for success callback and nothing fixed in the library itself from what I can tell.