Ryan Smith
Ryan Smith

Reputation: 485

ASP.NET C# Webcam Integration

I'm curious, how do you integrate a webcam with an ASP.NET C# application in a 'live broadcast' type scenario? I have no idea where to start with this but really interested to learn how it works in terms of detection and live streaming. A point in the right direction would be great, thanks.

Upvotes: 1

Views: 4292

Answers (1)

Darin Dimitrov
Darin Dimitrov

Reputation: 1038710

Nothing to do with ASP.NET MVC really. The camera's on the client, so you need to use client scripting such as Flash or Silverlight to access it. Here's for example a jquery plugin (based on Flash) which allows you to control the camera (once the client authorizes the site to do so).

HTML5 might also be an option one day.

Upvotes: 4

Related Questions