aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared/models
diff options
context:
space:
mode:
authorkontrollanten <6680299+kontrollanten@users.noreply.github.com>2021-11-08 04:20:04 +0100
committerChocobozzz <chocobozzz@cpy.re>2021-11-09 15:00:21 +0100
commit4e29f4fe23b413cc8c55ac0d8373f36bcd60b47a (patch)
treec9e63dac52672d46cbf0072dc35e396dca61079c /shared/models
parent9c391612038cd48cfeb2315dcbb8feddcf877d94 (diff)
downloadPeerTube-4e29f4fe23b413cc8c55ac0d8373f36bcd60b47a.tar.gz
PeerTube-4e29f4fe23b413cc8c55ac0d8373f36bcd60b47a.tar.zst
PeerTube-4e29f4fe23b413cc8c55ac0d8373f36bcd60b47a.zip
video: add video stranscoding_failed state
Diffstat (limited to 'shared/models')
-rw-r--r--shared/models/videos/video-state.enum.ts3
1 files changed, 2 insertions, 1 deletions
diff --git a/shared/models/videos/video-state.enum.ts b/shared/models/videos/video-state.enum.ts
index c6af481e7..6112b6e16 100644
--- a/shared/models/videos/video-state.enum.ts
+++ b/shared/models/videos/video-state.enum.ts
@@ -4,5 +4,6 @@ export const enum VideoState {
4 TO_IMPORT = 3, 4 TO_IMPORT = 3,
5 WAITING_FOR_LIVE = 4, 5 WAITING_FOR_LIVE = 4,
6 LIVE_ENDED = 5, 6 LIVE_ENDED = 5,
7 TO_MOVE_TO_EXTERNAL_STORAGE = 6 7 TO_MOVE_TO_EXTERNAL_STORAGE = 6,
8 TRANSCODING_FAILED = 7
8} 9}