]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - server/tools/upload.ts
Update changelog
[github/Chocobozzz/PeerTube.git] / server / tools / upload.ts
index de8ff8d26fef23c61bcff649818b58d24a6f46fc..94ea224b638f58b2b98c072338225eae6a5930cd 100644 (file)
@@ -20,6 +20,7 @@ program
   .option('-d, --video-description <description>', 'Video description')
   .option('-t, --tags <tags>', 'Video tags', list)
   .option('-b, --thumbnail <thumbnailPath>', 'Thumbnail path')
+  .option('-v, --preview <previewPath>', 'Preview path')
   .option('-f, --file <file>', 'Video absolute file path')
   .parse(process.argv)
 
@@ -34,7 +35,11 @@ if (
   !program['videoName'] ||
   !program['file']
 ) {
-  console.error('Url, username, password, name and input file are required.')
+  if (!program['url']) console.error('--url field is required.')
+  if (!program['username']) console.error('--username field is required.')
+  if (!program['password']) console.error('--password field is required.')
+  if (!program['videoName']) console.error('--video-name field is required.')
+  if (!program['file']) console.error('--file field is required.')
   process.exit(-1)
 }
 
@@ -74,7 +79,9 @@ async function run () {
     tags: program['tags'],
     commentsEnabled: program['commentsEnabled'],
     fixture: program['file'],
-    thumbnailfile: program['thumbnailPath']
+    thumbnailfile: program['thumbnailPath'],
+    previewfile: program['previewPath'],
+    support: undefined
   }
 
   await uploadVideo(program['url'], accessToken, videoAttributes)