在 asp.net 中使用 ustream 流式传输实时视频

发布于 2024-12-26 07:39:11 字数 173 浏览 1 评论 0原文

我正在尝试创建一个简单的视频库,使用 ASP.net 从特定 Ustream 用户录制的节目中提取视频。我一直在做一些研究并查看 API 文档,但似乎无法弄清楚所有示例都是 PHP 中的。

任何人都可以帮助我吗?如果可能的话,请给我一些带有 Ustream 的 Asp.net 代码或博客链接。

谢谢

I'm trying to create a simple video gallery that pulls the videos from the recorded shows of a specific Ustream user with ASP.net. I've been doing some research and looking at the API Documentation but can't seem to figure it out all example are in PHP.

Can anyone help me on it..if possible then give me some Code or Blogs links for Asp.net with Ustream.

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

§对你不离不弃 2025-01-02 07:39:11

简单地!看这里 http://msdn.microsoft.com/ en-us/library/ms525208(v=vs.90).aspx
您可以在 ADODB.Stream 中使用 ADODB.Stream /default.asp" rel="nofollow">经典 ASP(也适用于 ASP.Net)
用asp写这个:

'Set the content type to the specific type that you are sending.

Response.ContentType = "video/mp4"

Const adTypeBinary = 1
Dim strFilePath

strFilePath = server.mappath("stream.mp4")

Set objStream = Server.CreateObject("ADODB.Stream")
objStream.Open
objStream.Type = adTypeBinary
objStream.LoadFromFile strFilePath

Response.BinaryWrite objStream.Read

objStream.Close
Set objStream = Nothing 

我想这会对你有很大帮助。

Simply! Look here http://msdn.microsoft.com/en-us/library/ms525208(v=vs.90).aspx
You can use ADODB.Stream in Classic ASP (works in ASP.Net too)
Write this in asp:

'Set the content type to the specific type that you are sending.

Response.ContentType = "video/mp4"

Const adTypeBinary = 1
Dim strFilePath

strFilePath = server.mappath("stream.mp4")

Set objStream = Server.CreateObject("ADODB.Stream")
objStream.Open
objStream.Type = adTypeBinary
objStream.LoadFromFile strFilePath

Response.BinaryWrite objStream.Read

objStream.Close
Set objStream = Nothing 

I think this will help you very much.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文