ENUM

IngestStreamHealthReason

Reason of why the stream is unstable.

link GraphQL Schema definition

1enum IngestStreamHealthReason {
2
3# Reason not set.
4UNKNOWN
5
6# Stream is behaving normally.
7ALL_GOOD
8
9# Broadcaster's encoder is sending an incompatible audio codec.
10INCOMP_AUDIO_CODEC
11
12# Broadcaster's encoder is sending an incompatible video codec.
13INCOMP_VIDEO_CODEC
14
15# Broadcaster's encoder is using a deprecated MP3 audio codec.
16INCOMP_MP3_DEPRECATED
17
18# The stream is unstable due to high bitrate of the stream.
19HIGH_BITRATE
20
21# Some frames are being dropped by the broadcaster's encoder.
22DROPPED_FRAMES
23
24# Ingest server expects video segments in sequence, but the server did not receive
25# them from the client.
26STARVATION
27
28# The interval between each key frame is too high.
29HIGH_KEY_FRAME_INTERVAL
30}