create thumbnail from video in asp.net
问题 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