OBJECT
RTMPSession
RTMPSession is metadata related to the RTMP data sent by the broadcaster.
link GraphQL Schema definition
1 type RTMPSession { 2 3 # Audio codecs of RTMP session. 4 : String! 5 6 # H.264 advanced video codec. 7 : Int 8 9 # Staff-only field. The IP address of the broadcaster of the RTMP session. 10 : String 11 12 # Name of the broadcaster's encoder. 13 : String! 14 15 # H.264 encoder Instantaneous Decoder Refresh interval. 16 : Int 17 18 # rtmpExitReason tells how the stream session was terminated. 19 : String 20 21 # RTMP request parameters sent by the broadcaster. 22 : String! 23 24 # A full list of RTMP header sent by the broadcaster. 25 : String! 26 27 # Duration of each video frame segment in seconds. 28 : Int! 29 30 # Video codecs of RTMP session. 31 : String! 32 33 # Video resolution height in pixel. 34 : Int! 35 36 # Video resolution width in pixel. 37 : Int! 38 39 }