HI,
I am using following code to play video file using axvlc lib in C#
OpenFileDialog ofd = new OpenFileDialog();
ofd.Filter = ".flv (*.flv) | *.flv*";
if (ofd.ShowDialog() == DialogResult.OK)
{
axVLCPlugin21.playlist.add(ofd.FileName, ofd.SafeFileName, null);
axVLCPlugin21.playlist.play();
}
Here video is being played successfully.
Now I want to get image for each frame in the above video file.
How Can I get it?
I tried to used axVLCPlugin21.takesnapshot(), but I couldn't succedded.
Thanks,
Srikanth