asp.net 中上视频并获取缩略图(可以设置获取某时刻的画面)

  public string ChangeFileVir(string fileName,String imgFile,string Timespan)

        {

 

            string ffmpeg = Server.MapPath("~/Test/ffmpeg.exe");

            if ((!System.IO.File.Exists(ffmpeg)) || (!System.IO.File.Exists(fileName)))

            {

                return "";

            }

 

            string flv_img = System.IO.Path.ChangeExtension(Server.MapPath(imgFile), ".jpg");

 

            string FlvImgSize = "240*180";

 

            System.Diagnostics.ProcessStartInfo ImgstartInfo = new System.Diagnostics.ProcessStartInfo(ffmpeg);

 

            ImgstartInfo.WindowStyle = System.Diagnostics.ProcessWindowStyle.Hidden;

 

 

            ImgstartInfo.Arguments = "  -i  " + fileName + "  -y  -f  image2  -ss "+Timespan+" -t  0.999  -s  " + FlvImgSize + " " + flv_img;

 

            try

            {

                System.Diagnostics.Process.Start(ImgstartInfo);

            }

            catch

            {

                return "";

            }

 

            System.Threading.Thread.Sleep(8000);  //因为保存的原因,延时一定的时间后再查询图片是否存在,时间可设

 

            if (System.IO.File.Exists(flv_img))

            {

 

                return imgFile;

            }

 

            return "";

        }

参考网上资改写

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值