views:

92

answers:

1

Is there a library written in .NET that allows me to read a video frame by frame?

Sample usage could be as follows:

Video vid = Video.Open("test.avi");
foreach (Bitmap bmp in vid.Frames)
      PictureBox1.Picture = bmp;
+3  A: 

You might want to take a look at Microsoft's IMediaDet interface, specifically the GetBitmapBits and WriteBitmapBits methods.

This article on CodeProject deomonstrates:
Extract Frames from Video Files

Jay Riggs