PeerTube_original/shared/models/videos/live/live-video-error.enum.ts
Chocobozzz 0c9668f779 Implement remote runner jobs in server
Move ffmpeg functions to @shared
2023-05-09 08:57:34 +02:00

10 lines
196 B
TypeScript

export const enum LiveVideoError {
BAD_SOCKET_HEALTH = 1,
DURATION_EXCEEDED = 2,
QUOTA_EXCEEDED = 3,
FFMPEG_ERROR = 4,
BLACKLISTED = 5,
RUNNER_JOB_ERROR = 6,
RUNNER_JOB_CANCEL = 7
}