OBJECT
VideoIngestSession
Video Ingest Session Metadata for the current or past broadcasts.
link GraphQL Schema definition
1 type VideoIngestSession { 2 3 # Stream session metadata related to broadcaster's backup ingest session. 4 : BackupIngestSession 5 6 # Bitrates of session by time. Recorded every 3 to 5 seconds. 7 (: Time, : Time): [StreamBitrate!] 8 9 # Broadcaster of the stream. 10 : User 11 12 # Recorded framedrop events in stream session. 13 : [IngestFrameDrop!] 14 15 # Framerates of session by time. Recorded every 3 to 5 seconds. 16 (: Time, : Time): [StreamFramerate!] 17 18 # The ID of the stream ingest session. 19 : ID! 20 21 # Stream session metadata related to broadcaster's ingest session. 22 : IngestSession! 23 24 # Stream session metadata related to broadcaster's RTMP session. 25 : RTMPSession! 26 27 # Recorded starvation events in stream session. 28 : [IngestStarvationEvent!] 29 30 # Set of codes to indicate what is wrong with ingested stream. 31 : IngestStreamHealth 32 33 # Stream session metadata related to broadcaster's transcode session. 34 : [TranscodeSession!] 35 36 }