]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - server/tools/peertube-upload.ts
Translated using Weblate (Japanese)
[github/Chocobozzz/PeerTube.git] / server / tools / peertube-upload.ts
index 597137e4c5c61d155a0078b96fd85eaa0ba4dd0a..114fe8a290da599583d91fdb760b1e32d378a7b8 100644 (file)
@@ -1,6 +1,3 @@
-import { registerTSPaths } from '../helpers/register-ts-paths'
-registerTSPaths()
-
 import { program } from 'commander'
 import { access, constants } from 'fs-extra'
 import { isAbsolute } from 'path'
@@ -62,11 +59,17 @@ async function run (url: string, username: string, password: string) {
   }
 
   try {
-    await server.videosCommand.upload({ attributes })
+    await server.videos.upload({ attributes })
     console.log(`Video ${options.videoName} uploaded.`)
     process.exit(0)
   } catch (err) {
-    console.error(require('util').inspect(err))
+    const message = err.message || ''
+    if (message.includes('413')) {
+      console.error('Aborted: user quota is exceeded or video file is too big for this PeerTube instance.')
+    } else {
+      console.error(require('util').inspect(err))
+    }
+
     process.exit(-1)
   }
 }