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 specified location
FrameGrabber.SaveFrameFromVideo(_videopath, 0.1d, _imagepath);
it work perfectly is the video file is from my own computer, but when i try to get video file from remote location it not getting the frame. well, all the example is for windwos form app and i trying to use this for web-application.
is there maybe an additional coding that enable me to use jockersoft to grab a video frame from remote location?
here is the error that i got:
Attempted to access an unloaded appdomain. (Exception from HRESULT: 0x80131014)
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
Exception Details: System.AppDomainUnloadedException: Attempted to access an unloaded appdomain. (Exception from HRESULT: 0x80131014)
New Learner,
please guide me..