Flex RTMP 客户端
我正在尝试用 Flex 编写一个 rtmp 客户端。问题是我不知道从哪里开始。有人可以回答我将如何执行此操作,或者向我指出一个可以执行此操作的网站吗?谢谢。我什至不知道要使用什么类等等。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我正在尝试用 Flex 编写一个 rtmp 客户端。问题是我不知道从哪里开始。有人可以回答我将如何执行此操作,或者向我指出一个可以执行此操作的网站吗?谢谢。我什至不知道要使用什么类等等。
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
请参阅 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
您不必编写自己的 RTMP 客户端,因为 Flash 已经实现了名为
NetConnection
。要创建基本连接,您可以执行以下操作:
您看到的代码“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:
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.