p2p 广播 - 应该可以工作吗?

发布于 2024-11-02 15:41:08 字数 381 浏览 6 评论 0原文

只是想确保我正确地广播我的 p2p 流。我无法播放该流,因此我想首先确保我正在正确广播,然后我将继续担心播放它。

我创建了一个网络连接。 nc.connect(“rtmfp://blah/multicast”); onNetStatus 我检查连接是否成功。连接成功后,获取我的网络摄像头和音频,并将其附加到我的舞台上以供本地观看。

当我单击“发布”时,它会创建一个带有 nc 的网络组。在网络组成功后,我使用 nc 创建了一个网络流。我将摄像头和音频连接到网络流。关于 netstream 的成功,我发表了。我发布成功。

这是否意味着我发布正确?我无法方便地观看流。当我尝试建立新的网络连接、网络流并尝试播放时,它不起作用。我不知道是因为它拒绝播放我自己的流还是我没有正确发布。它确实说我正在出版。

Just want to be sure I am broadcasting my p2p stream correctly. I cannot play the stream so I want to make sure I am broadcasting correctly first then I will move on to worrying about playing it.

I created a netconnection.
nc.connect("rtmfp://blah/multicast");
onNetStatus I check for connection success. On connection success get my webcam and audio and attach it to my stage for local viewing.

When I click Publish it makes a netgroup with the nc. On netgroup success I create a netstream with the nc. I attach the camera and audio to the netstream. On netstream success I publish. I get publish success.

Does that mean I am publishing correctly? I have no way of conveniently viewing the stream. When I try to make a new netconnection, netstream, and try play it doesn't work. I don't know if it is because it refuses to play my own stream or if I am not publishing correctly. It does say I am publishing.

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

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

发布评论

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

评论(1

携君以终年 2024-11-09 15:41:08

我想你应该很好。

查看Adobe的文章创建一个简单的P2P聊天应用程序

总之流程是这样的:

  1. netConnection = 新的网络连接();
  2. netConnection.connect
  3. gs = new GroupSpecifier
  4. netGroup = new NetGroup(netConnection, gs.groupspecWithAuthorizations());
  5. netStream = new NetStream(netConnection, gs.groupspecWithAuthorizations());
  6. netStream.发布

I think you should be good.

Check with Adobe's article Create a simple P2P chat application

In short the process is like this:

  1. netConnection = new NetConnection();
  2. netConnection.connect
  3. gs = new GroupSpecifier
  4. netGroup = new NetGroup(netConnection, gs.groupspecWithAuthorizations());
  5. netStream = new NetStream(netConnection, gs.groupspecWithAuthorizations());
  6. netStream.publish
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文