【发布时间】:2018-03-27 01:39:31
【问题描述】:
我想上传一个视频文件,并在我的 ASP.NET MVC 项目中获取第一帧(或指定的帧)作为缩略图。
控制器:
[HttpPost]
public ActionResult Upload(HttpPostedFileBase file)
{
// How to get the video file frames(or first frame) here
// or Microsoft Azure Blob Storage provide the service to do this?
// (I upload file to Microsoft Azure Blob)
}
【问题讨论】:
标签: asp.net-mvc-5 video-processing azure-blob-storage