我正在尝试在 MVC 站点中使用 WebAPI 来使用 PushStreamContent 对象流式传输视频。我已经阅读了几个关于这个的方法(包括这个经常被引用的帖子@strathweb.com,但似乎仍然无法让它工作。
目前,视频无法在浏览器中播放。一旦用户将鼠标移到视频控件上,它们就会被禁用。服务器上出现了两个奇怪的问题/症状:
首先,在页面加载时,即使用户还没有尝试实际播放视频(他们只是看到标准的 HTML5 视频占位符 - 他们应该点击播放来观看视频),服务器似乎也会立即将整个文件流回。视频标签中未指定自动播放。我可以通过流循环中的 debug.writeline 调用看到这种情况。
其次,当用户确实点击播放时,会出现这个错误:远程主机关闭了连接。错误代码为 0x800704CD。
这是我的代码:
public class VideoController : ApiController
{
[ActionName("Get")]
public System.Net.Http.HttpResponseMessage Get(string fsoId)
{
var videoFullPath = GetPathToVideo(fsoId);
var response = Request.CreateResponse();
response.Content = new System.Net.Http.PushStreamContent( async (outputStream, context, transport) =>
{
try
{
var buffer = new byte[65536];
using (var videoFile = System.IO.File.Open(videoFullPath, System.IO.FileMode.Open, System.IO.FileAccess.Read))
{
var length = (int)videoFile.Length;
var bytesRead = 1;
while (length > 0 && bytesRead > 0)
{
bytesRead = videoFile.Read(buffer, 0, Math.Min(length, buffer.Length));
System.Diagnostics.Debug.WriteLine(string.Format("Length at Start: {0}; bytesread: {1}", length, bytesRead));
await
outputStream.WriteAsync(buffer, 0, bytesRead);
length -= bytesRead;
}
}
}
catch (System.Web.HttpException httpEx)
{
System.Diagnostics.Debug.WriteLine(httpEx.GetBaseException().Message);
if (httpEx.ErrorCode == -2147023667) // The remote host closed the connection.
return;
}
catch (Exception ex)
{
System.Diagnostics.Debug.WriteLine(ex.GetBaseException().Message);
return;
}
finally
{
outputStream.Close();
}
},
new System.Net.Http.Headers.MediaTypeHeaderValue("video/mp4"));
return response;
}
}
这是我的视频标签:
<video width="320" height="240" controls>
<source src="api/video/12345" type="video/mp4">
Your browser does not support the video tag.
</video>