OBJECT

RTMPSession

RTMPSession is metadata related to the RTMP data sent by the broadcaster.

link GraphQL Schema definition

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