Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Webcam / Microphone Detection

I would like to build a page that detects whether a user's camera / microphone is working similar to this: http://www.tokbox.com/user-diagnostic/

I just need guidance on where to start.

Thanks!

like image 836
OneSneakyMofo Avatar asked Oct 14 '12 20:10

OneSneakyMofo


1 Answers

This jQuery plugin can give you a list of available webcams the user has:

http://www.xarg.org/project/jquery-webcam-plugin/

If webcam.getCameraList().length == 0 then you'll know they don't have a webcam.

like image 103
Curtis Avatar answered Sep 21 '22 00:09

Curtis