Easy way to capture video

I'm trying to play with DirectShow, but it gets on me and my question has not been answered here, so I think maybe I should go the other way. ( DirectShow VB.net cannot change the recording format ). <- Where, how it works, I can’t get it in the format I need, and I really don’t understand it, so I would like to go down the route from which I can see.

I searched googled until my fingers got rude, trying to come up with a simple way to record video in the vb.net application, this should not be a fantasy, just a preview from the beginning of the recording, stopping the record button that it is.

Any taps in the right direction are welcome.

thank

Tom

+3
source share
2 answers

Take a look at this CodeProject project . Thanks to the CLR, anything in C # is also available in VB.NET.

Winforms webcam

+2
source

Check out this sample project on MSDN to capture video using VB.NET: http://code.msdn.microsoft.com/How-To-Create-Webcam-bbdcc90f

The idea is to use avicap32.dll to retrieve as an external system call.

0
source

All Articles