-
Notifications
You must be signed in to change notification settings - Fork 105
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Expose <video> element #44
Comments
Hi @franz1023dfjr, thank you for using this library! The idea of exposing the video element sounds interesting. I will take a look at it and the face-api lib that you mentioned. Am I correct in the assumption that you're currently able to use a workaround by querying the element through Cheers |
Hi @basst314 , Yes. That's the lib I'm talking about and your library makes my work faster since i don't have to code setting up the camera. I greatly appreciate it. Your assumption is correct. What I'm doing right now is: Not much of a hassle but I rather use Thanks. |
Hi @franz1023dfjr, I released a new version (0.2.4) which has a new method to access the native video element. Checkout the Cheers! |
Hi! This library is great.
I was wondering if the
video
element could be made public. In that way i can pass it to other libraries like face-api.js// access video element
const video = this.webcam.video;
// pass it as input to face-api.js
from(faceapi.detectSingleFace(video)).subscribe((result) => { })
It would be great rather querying the element through
document
.Thanks.
The text was updated successfully, but these errors were encountered: