在 ActionScript 中从 FMS 获取流的状态
我正在寻找一种方法来获取从 Flash Media Server 到动作脚本的流的状态。 我需要知道流是否有来自 flex/ActionScript 的发布者/侦听器。
I'm looking for a way to get the status of a stream from Flash Media Server to action script. I need to know if a stream has any publishers/listeners from flex/ActionScript.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
查看 Adobe Flash Media Server 管理 API。 有些调用可能会对您有所帮助,例如 getNetStreams() 和 get NetStreamStats()。 您可以尝试编写一个服务器端操作脚本类,对管理 API 进行这些调用,然后通过 NetConnection 上的回调将结果推送回 Flex 应用程序。
Take a look at the Adobe Flash Media Server Administration API. There are calls that might help you, such as getNetStreams() and get NetStreamStats(). You could try writing a server-side action script class that makes these calls to the admin API, then pushes the results back to your Flex application through a callback on your NetConnection.