Last active
October 31, 2017 22:04
-
-
Save matudelatower/b23b590a80c203eed92ca4ec299e0343 to your computer and use it in GitHub Desktop.
enable webcam raspberry pi3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Chrome has a bug and the rpi needs a few extra flags set. This solved it for me: | |
Add Drivers: | |
```sudo nano /etc/modules``` | |
```i2c-dev``` | |
```snd-bcm2835``` | |
```bcm2835-v4l2``` | |
Add extra V4l2 video driver flag (for Chromium to pick up the camera): | |
```sudo nano /etc/modprobe.d/bcm2835-v4l2.conf``` | |
```options bcm2835-v4l2 gst_v4l2src_is_broken=1``` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment