Simulating screen capture as a webcam?

Do we have a way to simulate a webcam driver that will provide a real-time display of the screen (30 frames per second) when it comes out?

+7
c # screen-capture webcam
source share
3 answers

This is one of the many ManyCam features (free). This is a virtual webcam driver with which you can broadcast real video in webcams (with additional real-time video effects), video or image files, or your full / partial desktop.

+4
source share

Yes, just google video2webcam. It works quite well and will cut the video or image as output.

0
source share

The driver's task is to provide a level of abstraction between software and hardware. The driver should issue commands to the equipment. He is not responsible for shooting and turning it into an animated GIF. He is going to do low-level things, such as turning the device on and off, sending raw data to the socket.

If you need to create a virtual device driver. Here is a review of VDD. Windows Programming / Device Driver Introduction

They are generally not written in higher-level languages ​​such as C #. Rather, they are written in languages ​​such as C / C ++. You will need KMDF, or the kernel driver framework.

If you just need to access your webcam from a .NET application on a webcam system, you just need an API.

Open a browser. Go to google.com and enter the ".NET Webcam API".

You will see something like this:

Webcam in your own application

It looks like it's a wrapper for the DirectShow class.

-one
source share

All Articles