部署时,HTML5播放器视频不会流式传输

时间:2013-06-28 07:18:15

标签: c# html5 asp.net-mvc-4

以下代码在本地IIS上运行正常,但部署后的视频不再流式传输(下载然后播放)。看起来这是服务器配置或项目配置问题。任何人都可以帮助或给我带头吗?

try
            {
                ScreenDefinition sd = handler.Get();
                Response.Clear();
                Response.ClearHeaders();
                Response.ClearContent();
                if (Format == "Ogg")
                {
                    Response.ContentType = "video/ogg";
                    Response.AddHeader("Content-Length", sd.Ogg.Length.ToString());
                    Response.AddHeader("Content-Disposition", "attachment; filename=video.ogg");
                    Response.OutputStream.Write(sd.Ogg.ToArray(), 0, sd.Ogg.Length);
                }
                else {
                    Response.ContentType = "video/mp4";
                    Response.AddHeader("Content-Length", sd.WhatCanKADoScreenMp4.Length.ToString());
                    Response.AddHeader("Content-Disposition", "attachment; filename=video.mp4");
                    Response.OutputStream.Write(sd.Mp4.ToArray(), 0, sd.Mp4.Length);
                }
                Response.End();
            }
            catch
            {
                //videos streaming was canceled by user
                //log it
            }

视图中的代码:

<video width="400" height="300" controls="controls" autoplay="autoplay" style="margin-left: 270px; margin-bottom: 5px;">
        <source src="@Url.Action("GetVideoStream", new { Format = "Mp4" })" type="video/mp4">
        <source src="@Url.Action("GetVideoStream", new { Format = "Ogg" })" type="video/ogg">
    Your browser does not support the video tag.
    </video>

1 个答案:

答案 0 :(得分:1)

我认为您要做的是在服务器上启用渐进式下载。我对您的配置一无所知,但谷歌搜索会产生良好的效果。

更多信息:http://flash.flowplayer.org/plugins/streaming/pseudostreaming.html