Enum Broadcast.RtmpStatus
The status of the RTMP stream. Poll frequently to check status updates.
public enum Broadcast.RtmpStatus
Fields
Connecting = 0Indicates the platform is in the process of connecting to the remote RTMP server. This is the initial state, and it is the status if you start when there are no streams published in the session. It changes to "live" when there are streams (or it changes to one of the other states).
Error = 3Indicates there is an error in the platform.
Live = 1Indicates platform has successfully connected to the remote RTMP server, and the media is streaming.
Offline = 2Indicates platform could not connect to the remote RTMP server. This is due to an unreachable server or an error in the RTMP handshake. Causes include rejected RTMP connections, non-existing RTMP applications, rejected stream names, authentication errors, etc. Check that the server is online, and that you have provided the correct server URL and stream name.