在 ASP 中进行视频会议流传输,我有哪些选择?

发布于 2024-11-08 04:59:42 字数 980 浏览 0 评论 0原文

我在网上搜索了一些关于视频会议流媒体的信息,但我仍然觉得我没有掌握其中的窍门。我知道这里有不同的会议服务,我想知道是否可以将其中之一集成/嵌入到 ASP 编写的网站中。

  1. 视频会议流媒体解决方案手册
  2. i-meet.com
  3. iMEET - 您自己的私人会议室正在等待
  4. SO 搜索结果:包含“视频流 asp”的问题

客户要求在其网站上提供网络摄像头视频会议流功能,该功能实际上是用 ASP 编写的。

所以问题是:

  1. 如何构建此视频会议流功能以与 ASP 编写的网站一起使用?
  2. 是否可以以某种方式将此类 iMeet 站点的视频流功能嵌入到这个 ASP 编写的网站中?
  3. 是否可以在该 ASP 网站中使用一些 .NET 组件进行流式传输?
  4. 有什么问题建议也可能有帮助吗? =)

感谢您的帮助! =)

I have searched the Internet and found out some information about video-conference streaming, and still, I feel like I don't get the hang of it. I know there are different meeting services available out here, and I wonder if it is possible to integrate/embed one of them in an ASP written website.

  1. Videoconference Streaming Solutions Cookbook
  2. i-meet.com
  3. iMEET - Your own personal meeting room is waiting
  4. SO Search Results: Questions Containing 'video streaming asp'

The customer asks for Webcam videoconference streaming feature over his website that is actually written in ASP.

So the questions are:

  1. How to build this video-conference streaming feature to work with and ASP written Website?
  2. Is it doable to somehow embed the video streaming capability of such iMeet sites into this ASP written Website?
  3. Is it doable to use some .NET components for streaming to use within this ASP website?
  4. Any question suggestions that might help as well? =)

Thanks for your kind help! =)

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

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

发布评论

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

评论(1

后知后觉 2024-11-15 04:59:42

我终于使用 Silverlight 4CaptureSource 类找到了答案,如以下链接所述。

  1. CaptureSource 类;
  2. 在 Silverlight 4 中捕获网络摄像头

至于流式传输内容,我发现我需要一个服务器端服务来广播从另一个源接收的内容,比如说另一个网络摄像头等。然后,正在捕获的源可用于广播。

要接收从流媒体服务器流式传输的内容,需要使用“SingleSourceMultipleTarget”之类的类在特定的 IP 或 URL 和端口上进行订阅(我不太确定这里的类名,我会在需要时进行编辑)找到我所指的确切类名)。

在服务器端,我建议使用 IIS 7 及此处讨论的 SmoothStreaming 功能:IIS 实时平滑流式传输入门。稍后当我再次找到它时,我会添加另一个链接。

最后,使用这些工具应该能够上手。另一个有趣的选择是使用 H264 视频编解码器,然后需要自己将其移植到 .NET,可能使用 DllImportAttribute 类。我还没有在这个方向上进行任何测试。

回到经典 ASP,应使用 iFrame 通过底层 Silverlight 应用程序显示流内容。

我希望有一天这会对某人有所帮助,因为它需要大量的研究和阅读! =)

I finally found my answer using Silverlight 4 and the CaptureSource class as described in the following links.

  1. CaptureSource Class;
  2. Capturing the Webcam in Silverlight 4.

As for streaming the content, I figured out that I would need a server-side service which broadcasts a received content from another source, let's say another Webcam or the-like. Then, the source being captured is available for broadcast.

To receive the content that is streamed from the streaming server, one needs to subscribe at a specific IP or URL and port using the class like "SingleSourceMultipleTarget" (I ain't exactly sure about the class name here, I'll edit when I find the exact class name that I mean).

On the server-side, I would suggest to use the IIS 7 and over SmoothStreaming capability discussed here: Getting Started with IIS Live Smooth Streaming. I shall add another link later on when I find it again.

Finally, using these tools one should be able to get started. Another interesting option is the use of the H264 video codec, and then one needs to port it to .NET himself probably using the DllImportAttribute class. I didn't test anything yet on that direction.

Back in the Classic ASP, an iFrame shall be used to display the content of the streaming using the underlying Silverlight application.

I hope this will help someone someday, as it requires hours and hours of research and readings! =)

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