GithubHelp home page GithubHelp logo

Comments (2)

basst314 avatar basst314 commented on July 27, 2024

Hi @peddikishore,

sorry it took a while to get back to you.

Unfortunately there's currently no 'flag' that you could just query to get this info, but if you add the webcam-component to your page and webcam initialization was not successful (i.e. due to blocked access), then an error will be emitted through the initError EventEmitter of the component.

Capture that error object and check for an error message like 'Permission denied'.
Example object: { "message": "Permission denied" ... }

The demo page will show these messages when they occur, so best try for yourself - visit the page and block webcam access.

Hope that helps.

I will still try to find out more whether checking for blocked access is possible through the browser API.

from ngx-webcam.

basst314 avatar basst314 commented on July 27, 2024

Hi @peddikishore,

I found a better way to check for blocked camera access:

When the camera was blocked, the webcam component publishes a WebcamInitError through the initError EventEmitter. While checking for the message is probably not a good practice (message might change), according to Mozilla Docs, the name attribute of the wrapped MediaStreamError has the value NotAllowedError in case webcam access was blocked / not allowed by the user:

If the user denies permission, or matching media is not available, then the promise is rejected with NotAllowedError or NotFoundError respectively.

I verified this with some example code like this:

  <webcam (initError)="handleInitError($event)"></webcam>

---

  public handleInitError(error: WebcamInitError): void {
    if (error.mediaStreamError && error.mediaStreamError.name === "NotAllowedError") {
      console.warn("Camera access was not allowed by user!");
    }
  }

I also updated the readme file with this information.

Hope this is helpful!

Cheers!

from ngx-webcam.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.