Flex RTMP 客户端

发布于 2024-11-07 09:33:09 字数 100 浏览 3 评论 0 原文

我正在尝试用 Flex 编写一个 rtmp 客户端。问题是我不知道从哪里开始。有人可以回答我将如何执行此操作,或者向我指出一个可以执行此操作的网站吗?谢谢。我什至不知道要使用什么类等等。

I'm trying to write an rtmp client with flex. The problem is that I have no idea where to start. Could someone please answer how I would go about doing this, or point me to a site that does? Thanks. I don't even know what classes to use and such.

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

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

发布评论

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

评论(2

沐歌 2024-11-14 09:33:09

请参阅 Wiki 实时消息传递协议作为起点,

并且有一些示例客户端

JUV RTMP 客户端

php-rtmp-client

希望能起作用

See Wiki Real Time Messaging Protocol as a starting point

and there are few sample clients

JUV RTMP Client

php-rtmp-client

hopes that works

臻嫒无言 2024-11-14 09:33:09

您不必编写自己的 RTMP 客户端,因为 Flash 已经实现了名为 NetConnection

要创建基本连接,您可以执行以下操作:

var nc:NetConnection = new NetConnection();
nc.addEventListener(NetStatusEvent.NET_STATUS, onNetStatus);
nc.connect('rtmp://127.0.0.1/application');

function onNetStatus(e:NetStatusEvent):void
{
    switch (e.info.code)
    {
        case 'NetConnection.Connect.Success':
            // Connection with the RTMP server has been established
            break;

       case '...':
          ...
    }
}

您看到的代码“NetConnection.Connect.Success”是服务器返回的代码之一,请查看 此处了解所有代码的概述。

您可能应该先阅读文档,然后再提出更精确的问题。

You don't have to write your own RTMP client because Flash already implements a RTMP client called NetConnection.

To create a basic connection you could do the following:

var nc:NetConnection = new NetConnection();
nc.addEventListener(NetStatusEvent.NET_STATUS, onNetStatus);
nc.connect('rtmp://127.0.0.1/application');

function onNetStatus(e:NetStatusEvent):void
{
    switch (e.info.code)
    {
        case 'NetConnection.Connect.Success':
            // Connection with the RTMP server has been established
            break;

       case '...':
          ...
    }
}

The code 'NetConnection.Connect.Success' you see is one of the codes the server returns, have a look over here for an overview of all the codes.

You should probably read up on the documentation first and then come back with a more precise question.

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