0


Im building an asp.net webcam website and I need help. (using DirectShowLib)
In order to show the webcam stream I need a controller handle to pass.
In asp.net there is no handle property for any controller.
I know I can create a windows form controller and import it to my website but that requires the clients approval and I want to avoid it.
Any ideas what can I use instead?

Yinon Eliraz
  • 317
  • 1
  • 6
  • 22
  • You know you can use DirectShow just on your local computer, right?! To stream your webcam, you need a streaming server and a video-client like VLC or Silverlight. If you have a IP-Camera you can include the MJPEG stream of this camera, most browser can playback this (except IE). – CPlusSharp Aug 20 '13 at 10:15
  • I want to be able to do this from any computer. not just my own. – Yinon Eliraz Aug 20 '13 at 12:22
  • What should the user see on your website, his local webcam or a webcam in the network? – CPlusSharp Aug 20 '13 at 20:55

1 Answers1

0

Make a class library project and add a user control form to display your webcam . then make it as a activex control and use it in your asp.net project.

Check here for more information.

Mark as answer if this helps..!!!

csLijo
  • 481
  • 2
  • 8
  • 26