protected void Page_Load(object sender, EventArgs e)
3 {
4 string ffmpeg = Server.MapPath("~/ffmpeg/ffmpeg.exe");
5 Process p = new Process();
6 p.StartInfo.FileName = ffmpeg;
7 p.StartInfo.Arguments =
8 " -i F:\\1.avi -y -f image2 -ss 2 -vframes 1 320×240 -s F:\\1.jpg";
9 try
10 {
11 p.Start();
12 }
13 catch (Exception ex)
14 {
15 throw ex;
16 }
17 finally
18 {
19 p.Close();
20 }
21 }
我已经用过ffmpeg转换转换电影,,可是这ffmpeg怎么也截不出图来。。。。。。。。。
我把代码拿出来像上面那样试试。 也是不行.... 为什么呢。。Agument出错在哪里?
有哪位兄台做过的。参考一下
肥皂起泡泡