aboutsummaryrefslogtreecommitdiffhomepage
path: root/packages/models/src/videos/live/live-video-error.enum.ts
blob: cd92a1cfff1cff5659bc2dc8c419d47baf43e8d6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
export const LiveVideoError = {
  BAD_SOCKET_HEALTH: 1,
  DURATION_EXCEEDED: 2,
  QUOTA_EXCEEDED: 3,
  FFMPEG_ERROR: 4,
  BLACKLISTED: 5,
  RUNNER_JOB_ERROR: 6,
  RUNNER_JOB_CANCEL: 7
} as const

export type LiveVideoErrorType = typeof LiveVideoError[keyof typeof LiveVideoError]