OBJECT

VideoIngestSession

Video Ingest Session Metadata for the current or past broadcasts.

link GraphQL Schema definition

1type VideoIngestSession {
2
3# Stream session metadata related to broadcaster's backup ingest session.
4backupIngestSession: BackupIngestSession
5
6# Bitrates of session by time. Recorded every 3 to 5 seconds.
7bitrates(startedAt: Time, endedAt: Time): [StreamBitrate!]
8
9# Broadcaster of the stream.
10broadcaster: User
11
12# Recorded framedrop events in stream session.
13frameDrops: [IngestFrameDrop!]
14
15# Framerates of session by time. Recorded every 3 to 5 seconds.
16framerates(startedAt: Time, endedAt: Time): [StreamFramerate!]
17
18# The ID of the stream ingest session.
19id: ID!
20
21# Stream session metadata related to broadcaster's ingest session.
22ingestSession: IngestSession!
23
24# Stream session metadata related to broadcaster's RTMP session.
25rtmpSession: RTMPSession!
26
27# Recorded starvation events in stream session.
28starvationEvents: [IngestStarvationEvent!]
29
30# Set of codes to indicate what is wrong with ingested stream.
31streamHealth: IngestStreamHealth
32
33# Stream session metadata related to broadcaster's transcode session.
34transcodeSessions: [TranscodeSession!]
35
36}