Chrome / Chromium cannot see the camera #3
Unanswered
copyleftdev
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Problem
Chrome, Brave, Electron apps (Slack, Discord desktop, Teams) don't list the Facecam in their camera selection.
Answer
Chromium-based browsers reject V4L2 devices that report both
CAPTUREandOUTPUTcapabilities. The Facecam also lacks MJPEG on older firmware, which Chromium requires for format negotiation.Fix: Use the normalization daemon
The daemon captures from the physical camera and outputs to a v4l2loopback virtual camera with
exclusive_caps=1— which makes Chrome see it as a normal webcam.Now select "Facecam Normalized" in Chrome's camera settings (
chrome://settings/content/camera).Important
exclusive_caps=1is mandatory — without it Chrome still won't see the device.deb, the systemd service handles this automatically when the camera is plugged inSee App Compatibility for the full matrix.
Beta Was this translation helpful? Give feedback.
All reactions