【发布时间】:2010-07-16 10:00:02
【问题描述】:
在我的网络应用程序中,我正在使用视频转换,我收到类似的错误
System.ComponentModel.Win32Exception:访问被拒绝
本地服务器中的视频转换工作正常。当我在线上传时,它会出现这样的错误,你能帮帮我吗?
错误之类..
访问被拒绝 说明:执行当前 Web 请求期间发生未处理的异常。请查看堆栈跟踪以获取有关错误及其源自代码的位置的更多信息。
异常详细信息:System.ComponentModel.Win32Exception:访问被拒绝
来源错误:
第 76 行: ffmpeg.StartInfo.Arguments = " -i \"" + video + "\" -vframes 1 -ss 00:00:10 -s 150x150 -f image2 -vcodec mjpeg \"" + thumb + "\"" ; // 参数! 第 77 行:ffmpeg.StartInfo.FileName = Page.MapPath("FFMPEG\\ffmpeg.exe"); //Page.MapPath("\\User\\Trailorvideos\\ffmpeg.exe"); //Page.MapPath(".") + "/ffmpeg.exe"; 第 78 行:ffmpeg.Start(); // 开始 !【问题讨论】:
标签: asp.net