在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
1//截图
2 string kk = "ffmpeg -i \"" + avsPath + "\" -vframes 1 -r 1 -ac 1 -ab 2 -f image2 -t 0.001 \"" + fileout + "\\" + filename + ".jpg\"\n"; 3 System.Diagnostics.Process myProc1 = new System.Diagnostics.Process(); 4 myProc1.StartInfo.FileName = "cmd.exe"; 5 myProc1.StartInfo.Arguments = @" /c " + kk; 6 myProc1.StartInfo.WindowStyle = System.Diagnostics.ProcessWindowStyle.Hidden; 7 myProc1.Start();
|
请发表评论