Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

always accept webRTC webcam request

I'm building a web application that uses the computer's webcam via webRTC. The site is only running on one specific machine which will shut down and reboot once a day.

My problem is: how do I get the machine to automatically confirm the webcam dialogue once the site has loaded?

The system is OSX Leopard with the latest Chrome. Thanks already, I'm open for anything.

like image 593
broen Avatar asked Aug 28 '12 13:08

broen


3 Answers

Firefox : (You have to tell users like..)

  • Go in url about:config

  • Search media.navigator.permission.disabled

  • dbClick or set value to true

Tested version : 23.0 + (and 43.0.4 still working)


Chrome : https://stackoverflow.com/a/16929608/622813 or use HTTPS

like image 153
l2aelba Avatar answered Nov 14 '22 19:11

l2aelba


Based on what the Chromium developers are saying, there is currently no option to configure your browser to allow camera usage, unless you utilize the "Always allow" dialog - which will only be shown if the site is served using HTTPS. That means, if you serve the HTML page using HTTPS, and once confirm the "Always allow" option, it should work from there on. Here is a collection of links where you'll find answers to the same or similar questions:

  1. Chromium issue 143372: allow "always allow" for http://localhost
  2. WebRTC: allow Chrome to access microphone via Chrome Extension
  3. http://www.chromium.org/developers/web-platform-status (see section on WebRTC): "For the permission dialog: Chrome only show the "Always allow" for sites using https for increased security."
  4. Discuss WebRTC Google Group: Automatically allow Camera Access Request in webrtc enabled Chrome
like image 45
raju-bitter Avatar answered Nov 14 '22 21:11

raju-bitter


There is a Chrome option for that: (This works in both http and https)

--use-fake-ui-for-media-stream

- Windows :

start chrome --use-fake-ui-for-media-stream

- GNU/Linux :

google-chrome --use-fake-ui-for-media-stream

Maybe this is just a matter of time, but it didn't work on my chromium on Ubuntu. I had to get the .deb from the google chrome website.

- Mac :

Applications/Google\ Chrome.app/Contents/MacOS/Google\ Chrome --use-fake-ui-for-media-stream

This could be useful in a development/testing environment.

like image 16
nha Avatar answered Nov 14 '22 19:11

nha