Flash 中的 NetStream 发布者可以暂停其流吗?

发布于 2024-07-09 01:28:06 字数 191 浏览 11 评论 0原文

我正在开发一个利用 Flash 8 (AS2) 和 Flash Media Server 3 的网络摄像头视频流应用程序。实时流式传输视频相当简单,但我想让发布商能够暂停其流式传输,从而有效地为观看者提供观看视频的能力。快照而不是实时视频。

NetStream有一个pause()方法,但文档说它只适用于订阅者。 有什么办法可以暂停流的发布吗?

I'm working on a webcam video streaming application utilizing Flash 8 (AS2) and Flash Media Server 3. Streaming the video live is fairly trivial, but I want to give the publisher the ability to pause their stream, effectively giving the people watching a snapshot instead of realtime video.

NetStream has a pause() method, but the documentation says it only applies to subscribers. Is there any way to pause the publishing of a stream?

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

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

发布评论

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

评论(1

小姐丶请自重 2024-07-16 01:28:06

暂停:

  ns.attachCamera(null);

继续:

  ns.attachCamera(Camera.getCamera());

Pause:

  ns.attachCamera(null);

Resume:

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