Capture image using webcam

I am working on a project with Asp.net MVC4. I need to take pictures using a webcam. This application should be configured using any tablet. The application is currently running on the desktop, there are no labels.

I am using jscam.swf and jscam_canvas_only.swf.

On tablets, I use this Samsung galaxy on these devices to install Adobe Flash Player in the well does not work ... someone knows some other technology for shooting or someone can help me solve this problem, I will be grateful

+4
source share
3 answers

Flash has limited support on Android tablets and without support on iOS devices.

A better solution would be to switch to 100% HTML5. When using HTML5, your browser has access to your webcam. Below are some links showing access to the HTML5 webcam:

+5
source

Have you tried with Silverlight? Since you are using .NET, this can be useful. http://elegantcode.com/2009/11/20/silverlight-4-webcam-a-quick-glance/

SL is a simple plugin that runs in every browser, you just need to embed your Silverlight component in your view code, and the browser will process it as an object tag.

Hope this helps.

0
source

I found a way to enable camera and audio using HTML5 Chrome using Android for tablets. We connect to chrome: // flags / and look for WebRTC. After enabling this flag. Restart your browser or tablet and work correctly.

0
source

Source: https://habr.com/ru/post/1491496/


All Articles