You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi Doug! This project was written for an older version of Angular and isn't something we actively maintain anymore. While you can probably fork a version with updates, I'd bet there's something more modern out there for React or newer versions of Angular.
After a update on firefox that recently was applied in chrome too, the camera doest not work anymore.
Probably because of this:
https://www.fxsitecompat.com/en-CA/docs/2018/url-createobjecturl-no-longer-accepts-mediastream-as-argument/
Can someone help-me ?
On the line 41 the method deprecated is being used:
`scope.enableCamera = function () {
return navigator.getUserMedia({
audio: false,
video: true
}, function (stream) {
return scope.$apply(function () {
scope.stream = stream;
scope.isLoaded = true;
41 return scope.videoStream = $sce.trustAsResourceUrl(window.URL.createObjectURL(stream));
});
}, function (error) {
return scope.$apply(function () {
scope.isLoaded = true;
return scope.noCamera = true;
});
});
The text was updated successfully, but these errors were encountered: