diff options
author | Chocobozzz <me@florianbigard.com> | 2023-04-21 14:55:10 +0200 |
---|---|---|
committer | Chocobozzz <chocobozzz@cpy.re> | 2023-05-09 08:57:34 +0200 |
commit | 0c9668f77901e7540e2c7045eb0f2974a4842a69 (patch) | |
tree | 226d3dd1565b0bb56588897af3b8530e6216e96b /shared/models/videos/live | |
parent | 6bcb854cdea8688a32240bc5719c7d139806e00b (diff) | |
download | PeerTube-0c9668f77901e7540e2c7045eb0f2974a4842a69.tar.gz PeerTube-0c9668f77901e7540e2c7045eb0f2974a4842a69.tar.zst PeerTube-0c9668f77901e7540e2c7045eb0f2974a4842a69.zip |
Implement remote runner jobs in server
Move ffmpeg functions to @shared
Diffstat (limited to 'shared/models/videos/live')
-rw-r--r-- | shared/models/videos/live/live-video-error.enum.ts | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/shared/models/videos/live/live-video-error.enum.ts b/shared/models/videos/live/live-video-error.enum.ts index 3a8e4afa0..a26453505 100644 --- a/shared/models/videos/live/live-video-error.enum.ts +++ b/shared/models/videos/live/live-video-error.enum.ts | |||
@@ -3,5 +3,7 @@ export const enum LiveVideoError { | |||
3 | DURATION_EXCEEDED = 2, | 3 | DURATION_EXCEEDED = 2, |
4 | QUOTA_EXCEEDED = 3, | 4 | QUOTA_EXCEEDED = 3, |
5 | FFMPEG_ERROR = 4, | 5 | FFMPEG_ERROR = 4, |
6 | BLACKLISTED = 5 | 6 | BLACKLISTED = 5, |
7 | RUNNER_JOB_ERROR = 6, | ||
8 | RUNNER_JOB_CANCEL = 7 | ||
7 | } | 9 | } |