RTMPT 和网络连接

发布于 2024-08-28 00:52:53 字数 120 浏览 7 评论 0原文

我如何连接到 FluorineFx RTMPT 服务器? 我如何配置 FluorineFx RTMPT 服务器? 我可以在没有安装 IIS 的情况下启动 FluorineFx RTMPT 服务器吗?

有教程吗?

How i can connect to FluorineFx RTMPT server?
And how can i configure FluorineFx RTMPT server?
Can i start FluorineFx RTMPT server without IIS installed?

Is there any tutorial?

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

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

发布评论

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

评论(1

两人的回忆 2024-09-04 00:52:53

我不知道如何配置 FluorineFx 服务器。

我可以告诉您,RTMPT 不需要 IIS 即可工作。 RTMPT 仅使用端口 80 而不是 1935。

您将能够像平常一样连接到服务器。您现在可能只需要指定要连接的端口。

示例:

NetConnection conn = new NetConnection();
conn.connect("rtmpt://127.0.0.1/app");

以下可能有效,尚未测试:

NetConnection conn = new NetConnection();
conn.connect("rtmp://127.0.0.1:80/app");

希望这有帮助。

I'm not sure how to configure a FluorineFx server.

I can tell you that you do not need IIS for RTMPT to work. RTMPT just uses port 80 instead of 1935.

You will be able to connect to the server the same way as you would normally do. You will probably just need to specify the port to connect to now.

Example:

NetConnection conn = new NetConnection();
conn.connect("rtmpt://127.0.0.1/app");

The following MIGHT work, haven't tested:

NetConnection conn = new NetConnection();
conn.connect("rtmp://127.0.0.1:80/app");

Hope this helped.

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