]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - server/tools/upload.ts
Add indentation in json configuration file generated by the admin
[github/Chocobozzz/PeerTube.git] / server / tools / upload.ts
index 3bf9dd65e00e0c8ab455746daa3664105b0e57fb..97e24dc8851f0693eb83ae7692054cb4ed9d4898 100644 (file)
@@ -19,6 +19,8 @@ program
   .option('-L, --language <language number>', 'Language number')
   .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)
 
@@ -72,7 +74,9 @@ async function run () {
     description: program['videoDescription'],
     tags: program['tags'],
     commentsEnabled: program['commentsEnabled'],
-    fixture: program['file']
+    fixture: program['file'],
+    thumbnailfile: program['thumbnailPath'],
+    previewfile: program['previewPath']
   }
 
   await uploadVideo(program['url'], accessToken, videoAttributes)