views:

41

answers:

1

I'm using Microsoft.DirectX.AudioVideoPlayback.Video class to play a video file and I would like to capture some frame to a bitmap.

The only export feature of this class is the RenderToTexture method and it accepts a Direct3D device as a parameter.

Someone know a simple way to obtain a System.Drawing.Bitmap from this method?

A: 

There is no way to capture a video frame using this API. I use DirectShow instead.

tinmaru