视频流 ASP.NET
我一直在制作一个 ASP 网站,在其中为用户提供上传视频并在上传后查看它们的功能。 我已经成功地将视频上传到我的服务器,但不知道如何在客户端页面上播放它。 我想缓冲视频并将其流式传输到用户的浏览器上,不希望他在播放之前等待并下载整个视频。 我该如何接近?
i've been making an asp website in which i'm providing the user a facility to upload videos and view them once they are uploaded. I've been successfully been able to upload videos to my server, but not getting as how to play it on the client's page. I want to buffer the video and stream it on user's browser, don't want him to wait and download the whole video before playing. How can i approach?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以使用 Windows MediaPlayer 组件。 这是关于此的文章。 您考虑过使用 silverlight 吗? 这是为您使用 Silverlight 的一个。
You can use windows mediaplayer component. Here is an article about that. Have you thought about using silverlight? Here is one for you using Silverlight.
可能想要尝试在您的服务器上安装 Windows Media Services玩弄它。
操作方法:http://www.microsoft.com/windows/windowsmedia /howto/articles/webserver.aspx
API 位于:http:// /msdn.microsoft.com/en-us/library/ms738748.aspx
May want to try installing Windows Media Services on your server and play around with it.
HowTo here: http://www.microsoft.com/windows/windowsmedia/howto/articles/webserver.aspx
API here: http://msdn.microsoft.com/en-us/library/ms738748.aspx
您可能想看看 Video.Show。
You might want to take a look at Video.Show.