1
0
Fork 0
mirror of https://github.com/Chocobozzz/PeerTube.git synced 2025-10-05 02:39:33 +02:00

video: add video stranscoding_failed state

This commit is contained in:
kontrollanten 2021-11-08 04:20:04 +01:00 committed by Chocobozzz
parent 9c39161203
commit 4e29f4fe23
4 changed files with 20 additions and 4 deletions

View file

@ -4,5 +4,6 @@ export const enum VideoState {
TO_IMPORT = 3,
WAITING_FOR_LIVE = 4,
LIVE_ENDED = 5,
TO_MOVE_TO_EXTERNAL_STORAGE = 6
TO_MOVE_TO_EXTERNAL_STORAGE = 6,
TRANSCODING_FAILED = 7
}