Hayri Uğur Koltuk
Hayri Uğur Koltuk

Reputation: 3020

What is up-to-date way of grabbing frames from video file in c#?

As far as I know one way of grabbning frames from video files in C# is using MediaDet. However MSDN says that Media Detector(MediaDet) is deprecated: http://msdn.microsoft.com/en-us/library/windows/desktop/dd390664(v=vs.85).aspx

What is the 'modern' way of getting frames from a video file using c#?

Upvotes: 0

Views: 344

Answers (1)

Shyju
Shyju

Reputation: 218882

If you are looking for a thumbnail image from the video, take a look at FFMPEG.

there is a c# wrapper available . http://code.google.com/p/ffmpeg-sharp/

Checkout this link for a sample http://ramcrishna.blogspot.com/2008/09/playing-videos-like-youtube-and.html

Upvotes: 1

Related Questions