]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - server/tools/upload.ts
Add documentation for upload script
[github/Chocobozzz/PeerTube.git] / server / tools / upload.ts
index de8ff8d26fef23c61bcff649818b58d24a6f46fc..ce9e1b62ef2ee0ddc24b9586e71ce844cc7447cc 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)
 
@@ -74,7 +75,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)