如何在单个azure blob请求上设置内容处理?

时间:2017-08-29 07:58:43

标签: azure video http-headers azure-storage-blobs content-disposition

我有一个托管视频的应用程序,我们最近迁移到了Azure。

在我们的旧应用程序中,我们为用户提供了播放或下载视频的功能。但是在Azure上,似乎我必须选择我想要的功能,因为必须在文件上而不是在请求上设置内容处置。

到目前为止,我提出了两个非常糟糕的解决方案。

第一个解决方案是通过我的MVC服务器传输下载。

CloudStorageAccount storageAccount = CloudStorageAccount.Parse(ConfigurationManager.AppSettings["StorageConnectionString"]);
                        CloudBlobClient blobClient = storageAccount.CreateCloudBlobClient();
                        CloudBlobContainer container = blobClient.GetContainerReference("videos");
                        string userFileName = service.FirstName + service.LastName + "Video.mp4";
                        Response.AddHeader("Content-Disposition", "attachment; filename=" + userFileName); // force download
                        container.GetBlobReference(service.Video.ConvertedFilePath).DownloadToStream(Response.OutputStream);
                        return new EmptyResult();

此选项适用于较小的视频,但在我的服务器上非常繁重。对于较大的视频,操作会超时。

第二个选项是托管每个视频两次。

这个选项显然很糟糕,因为我必须支付双倍的存储成本。

2 个答案:

答案 0 :(得分:3)

  

然而在Azure上,似乎我必须在哪个之间进行选择   我想要的功能,因为必须在上面设置内容配置   文件,而不是请求。

有一个解决方法。您可能知道可以在blob上定义Content-Disposition属性。但是,为此属性定义值时,它将始终应用于该Blob。如果要在Blob上有选择地应用此属性(例如,基于每个请求),您要做的是在该blob上创建Shared Access Signature (SAS)并在那里覆盖此请求标头。然后,您可以通过SAS URL提供blob。

以下是此示例代码:

        CloudStorageAccount storageAccount = CloudStorageAccount.Parse(ConfigurationManager.AppSettings["StorageConnectionString"]);
        CloudBlobClient blobClient = storageAccount.CreateCloudBlobClient();
        CloudBlobContainer container = blobClient.GetContainerReference("videos");
        string userFileName = service.FirstName + service.LastName + "Video.mp4";
        CloudBlockBlob blob = container.GetBlockBlobReference(userFileName);
        SharedAccessBlobPolicy policy = new SharedAccessBlobPolicy()
        {
            Permissions = SharedAccessBlobPermissions.Read,
            SharedAccessExpiryTime = DateTime.UtcNow.AddHours(1)
        };
        SharedAccessBlobHeaders blobHeaders = new SharedAccessBlobHeaders()
        {
            ContentDisposition = "attachment; filename=" + userFileName
        };
        string sasToken = blob.GetSharedAccessSignature(policy, blobHeaders);
        var sasUrl = blob.Uri.AbsoluteUri + sasToken;//This is the URL you will use. It will force the user to download the video.

我在很久以前写了一篇关于你可能会觉得有用的博客文章:http://gauravmantri.com/2013/11/28/new-changes-to-windows-azure-storage-a-perfect-thanksgiving-gift/

答案 1 :(得分:0)

据我所知,azure blob存储不支持将自定义标头添加到特殊容器中。

我建议您可以关注并投票feedback以推动azure开发团队支持此功能。

这是一种解决方法,您可以先压缩视频文件,然后上传到azure blob存储区。

浏览器不会打开它。