Reputation: 14833
for my upcoming project i would like to know if there is solution to access the webcam without good old flash. Is it possible to do that in javascript, jquery or any other framework. Maybe you've an approach for a workaround or something!
any help is much appreciated, thanks!
Upvotes: 0
Views: 2254
Reputation: 339985
It's possible in HTML5 with the getUserMedia()
API, but as yet browser support is very limited.
See http://www.html5rocks.com/en/tutorials/getusermedia/intro/ for more info.
Note that the user MUST explicitly permit access to the camera and microphone, to prevent illicit snooping.
Upvotes: 2