I want to create thumbnail of an uploaded video file in my application for this I have used ffmpeg. The code is as follows:
string thumbpath, thumbname;
string thumbargs;
string thumbre;
thumbpath = Server.MapPath("~/thumbnails/");
thumbname = thumbpath + "Test" + ".png";
string f = Server.MapPath("~/testvideo.wmv");
thumbargs = "-i " + f + " -vcodec png -vframes 1 -ss 00:00:07 -s 150x150 " + thumbname;
Process thumbproc = new Process();
thumbproc = new Process();
thumbproc.StartInfo.FileName = Server.MapPath("~\\ffmpeg\\ffmpeg.exe");
thumbproc.StartInfo.Arguments = thumbargs;
thumbproc.StartInfo.UseShellExecute = false;
thumbproc.StartInfo.CreateNoWindow = false;
thumbproc.StartInfo.RedirectStandardOutput = false;
try
{
thumbproc.Start();
}
catch (Exception ex)
{
Response.Write(ex.Message);
}
thumbproc.WaitForExit();
thumbproc.Close();
but it's throwing an exception :
MainModule = 'thumbproc.MainModule'
threw an exception of type 'System.ComponentModel.Win32Exception'
If some one has an idea then please let know.