casey_sunako 0 Newbie Poster

Hi everyone.


I am currently trying to save a snapshot of the video file using vb.net so that i can save each a frame or part of the file as image. The .dll of VLC player which is axVLCPlugin21 has a sub function called takeSnapShot. However, the file is being saved in a temp folder and when you browse the folder, there are no files found.

This is the code that i used:

Private Sub Button1_Click_2(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
       
    AxVLCPlugin21.video.takeSnapshot
     
    End Sub

I would like to be able to take a snapshot of a video file as an image(.png or .jpg) and be able to save it to a different location like the desktop.

I hope someone can help..


Thank You.