Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I make Chrome allow access to a webcam over http (not https)?

Tags:

I am building a kiosk application using webrtc video. It is only served on the internal network and I would like to be able to always allow the webcam for my site over http. Using ssl isn't that important and is just an extra expense for a cert.

Is there any way to do this or am I stuck?

like image 231
Dave_750 Avatar asked Jun 12 '13 15:06

Dave_750


People also ask

Why is my webcam not working on Chrome?

Check your browser permissions On Chrome or Microsoft Edge: Open the menu (the three dots ⋮) in the top, right-hand corner of your browser. Select Settings > Privacy & Security > Site Settings. Ensure that your Camera and Microphone both have Ask before accessing set to ON.


2 Answers

Yes, an admin can override the prompts with a policy.

VideoCaptureAllowedUrls

Patterns in this list will be matched against the security origin of the requesting URL. If a match is found, access to audio capture devices will be granted without prompt. NOTE: This policy is currently only supported when running in Kiosk mode.

On Windows, you create registry entries using regedit.

Software\Policies\Chromium\VideoCaptureAllowedUrls\1 = "http://www.example.com/" Software\Policies\Chromium\VideoCaptureAllowedUrls\2 = "http://[*.]example.edu/" 

On Linux you write the policies in a file:

mkdir -p /etc/opt/chrome/policies/managed touch /etc/opt/chrome/policies/managed/test_policy.json 

In test_policy.json:

{   "VideoCaptureAllowedUrls": ["http://www.example.com/", "http://[*.]example.edu/"] } 
like image 97
Vilsepi Avatar answered Sep 29 '22 22:09

Vilsepi


Use command-line flag

use --use-fake-ui-for-media-stream command-line flag

example (OS X) : /Applications/Google\ Chrome.app/Contents/MacOS/Google\ Chrome http://html5-demos.appspot.com/static/getusermedia/record-user-webm.html --use-fake-ui-for-media-stream

More info here http://creativcoders.wordpress.com/2014/08/18/chrome-always-allow-access-to-webcam-and-microphone-over-http-webrtc/

like image 29
Ka. Avatar answered Sep 29 '22 21:09

Ka.