Re: video Thumbnails Maker
you'd have to somehow 'play' the video to be able to make thumbnails from it. Do you have that part taken care of?
Re: video Thumbnails Maker
no, i only have the parts you see on the first post
Re: video Thumbnails Maker
Re: video Thumbnails Maker
vb Code:
Dim p As Process
Dim pInfo As New ProcessStartInfo()
pInfo.FileName = "\bin\ffmpeg.exe"
pInfo.WindowStyle = ProcessWindowStyle.Hidden
pInfo.Arguments = String.Format("-y -i ""{0}"" -f mjpeg -ss 5 -vframes 1 ""{1}""", , )
p = Process.Start(pInfo)
While (Not p.HasExited)
System.Threading.Thread.Sleep(10)
End While
i dont understand have to add that part where and have to my project ?