vanja.
vanja.

Reputation: 2572

Getting the status of a stream from FMS in 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.

Upvotes: 0

Views: 314

Answers (1)

sendai77
sendai77

Reputation: 26

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.

Upvotes: 1

Related Questions