diff options
author | Chocobozzz <me@florianbigard.com> | 2018-06-12 20:04:58 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2018-06-12 20:37:51 +0200 |
commit | 2186386cca113506791583cb07d6ccacba7af4e0 (patch) | |
tree | 3c214c0b5fbd64332624267fa6e51fd4a9cf6474 /server/tools | |
parent | 6ccdf3a23ecec5ba2eeaf487fd1fafdc7606b4bf (diff) | |
download | PeerTube-2186386cca113506791583cb07d6ccacba7af4e0.tar.gz PeerTube-2186386cca113506791583cb07d6ccacba7af4e0.tar.zst PeerTube-2186386cca113506791583cb07d6ccacba7af4e0.zip |
Add concept of video state, and add ability to wait transcoding before
publishing a video
Diffstat (limited to 'server/tools')
-rw-r--r-- | server/tools/import-videos.ts | 1 | ||||
-rw-r--r-- | server/tools/upload.ts | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/server/tools/import-videos.ts b/server/tools/import-videos.ts index fd351ae7e..e49fbb2f5 100644 --- a/server/tools/import-videos.ts +++ b/server/tools/import-videos.ts | |||
@@ -176,6 +176,7 @@ async function uploadVideoOnPeerTube (videoInfo: any, videoPath: string, languag | |||
176 | licence, | 176 | licence, |
177 | language, | 177 | language, |
178 | nsfw: isNSFW(videoInfo), | 178 | nsfw: isNSFW(videoInfo), |
179 | waitTranscoding: true, | ||
179 | commentsEnabled: true, | 180 | commentsEnabled: true, |
180 | description: videoInfo.description || undefined, | 181 | description: videoInfo.description || undefined, |
181 | support: undefined, | 182 | support: undefined, |
diff --git a/server/tools/upload.ts b/server/tools/upload.ts index 177d849f3..4d40c8c1a 100644 --- a/server/tools/upload.ts +++ b/server/tools/upload.ts | |||
@@ -84,6 +84,7 @@ async function run () { | |||
84 | fixture: program['file'], | 84 | fixture: program['file'], |
85 | thumbnailfile: program['thumbnailPath'], | 85 | thumbnailfile: program['thumbnailPath'], |
86 | previewfile: program['previewPath'], | 86 | previewfile: program['previewPath'], |
87 | waitTranscoding: true, | ||
87 | privacy: program['privacy'], | 88 | privacy: program['privacy'], |
88 | support: undefined | 89 | support: undefined |
89 | } | 90 | } |