https://github.com/ahmed-roshdy-1/face_detection
https://github.com/ahmed-roshdy-1/face_detection
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/ahmed-roshdy-1/face_detection
- Owner: Ahmed-Roshdy-1
- Created: 2022-08-15T17:29:58.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2022-08-15T17:30:59.000Z (almost 4 years ago)
- Last Synced: 2025-03-02T03:17:02.853Z (over 1 year ago)
- Language: JavaScript
- Size: 4.88 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# IMPORTANT: Bug Fixes
## `navigator.getUserMedia`
`navigator.getUserMedia` is now deprecated and is replaced by `navigator.mediaDevices.getUserMedia`. To fix this bug replace all versions of `navigator.getUserMedia` with `navigator.mediaDevices.getUserMedia`
## Low-end Devices Bug
The video eventListener for `play` fires up too early on low-end machines, before the video is fully loaded, which causes errors to pop up from the Face API and terminates the script (tested on Debian [Firefox] and Windows [Chrome, Firefox]). Replaced by `playing` event, which fires up when the media has enough data to start playing.