HTML5 和 RTSP 开发基于浏览器的网络会议应用程序

发布于 2024-10-26 22:14:22 字数 203 浏览 3 评论 0原文

向大家问好!

我想开发一个能够举行网络会议的应用程序,而用户无需下载任何可安装的文件。经过一些研究后,我发现闪存可能是我唯一的选择,因为 JMF 需要访问注册表。

我想知道您是否有任何建议。

是否可以使用 RTSP 和 HTML5 来开发所需的应用程序。

PS 该申请对所有人都是免费的,所以我希望您能百忙之中回答。提前致谢!

Greetings to you all!

I want to develop an application that would be able to hold web conference without the users having to download any installable files. After doing some research I have found that flash is perhaps the only option I might have as JMF needs access to registries.

I would like to know if you have any suggestions.

Is it possible to use RTSP with HTML5 to develop the required application.

P.S The application shall be free for all, so I hope you would take the pain to answer. Thanks in advance!

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

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

发布评论

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

评论(1

你的心境我的脸 2024-11-02 22:14:22

理论上是的,但是它是特定于浏览器的。

HTML 5 的 标签与协议无关——它不会关心你在那里有什么。您可以将协议作为 URL 的一部分放在 src 属性中。例如:

<video src="rtp://myserver.com/path/to/stream">
    Your browser does not support the VIDEO tag and/or RTP streams.
</video>

问题在于 标记的实现是浏览器特定的。由于 HTML 5 仍处于早期阶段,我预计支持会经常发生变化(或缺乏支持)。

然后您仍然需要担心浏览器特定的 CODEC 支持!至少在今天,Flash 是“更通用”的方法——您将覆盖更大比例的网络浏览公众。

我的建议是

  1. User Flex/Flash
  2. 成为网络浏览器专家并享受前沿编码

In theory, yes, but is it browser specific.

HTML 5's <video> tag is protocol agnostic—it will not care what you have there. You place the protocol in the src attribute as part of the URL. E.g.:

<video src="rtp://myserver.com/path/to/stream">
    Your browser does not support the VIDEO tag and/or RTP streams.
</video>

The problem is that the implementation of the <video> tag is browser specific. Since it is still early days for HTML 5, I expect frequently changing support (or lack of support).

And then you still have to worry about browser specific CODEC support! Flash is, at least today, the "more universal" approach--you'll cover a larger percentage of the web browsing public.

My suggestion is to either

  1. User Flex/Flash
  2. Become an expert on web browsers and enjoy coding on the bleeding edge
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文