can JockerSoft.Media read/get video file from remote location?
- by Lynx
here is the code for JockerSoft.Media
// Path of the video and frame storing path
string _videopath = "http://www.test.com/Video/test.avi"; //"C:\\test.avi";
string _imagepath = "C:\\test.jpg"
Bitmap bmp = FrameGrabber.GetFrameFromVideo(_videopath, 0.1d);
bmp.Save(_imagepath, System.Drawing.Imaging.ImageFormat.Gif);
// Save directly frame on…