]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - scripts/create-transcoding-job.ts
Reduce bundle sizes
[github/Chocobozzz/PeerTube.git] / scripts / create-transcoding-job.ts
1 import * as program from 'commander'
2 import { createReadStream } from 'fs'
3 import { join } from 'path'
4 import { createInterface } from 'readline'
5 import { VideoModel } from '../server/models/video/video'
6 import { initDatabaseModels } from '../server/initializers'
7 import { JobQueue } from '../server/lib/job-queue'
8
9 program
10 .option('-v, --video [videoUUID]', 'Video UUID')
11 .parse(process.argv)
12
13 if (program['video'] === undefined) {
14 console.error('All parameters are mandatory.')
15 process.exit(-1)
16 }
17
18 run()
19 .then(() => process.exit(0))
20 .catch(err => {
21 console.error(err)
22 process.exit(-1)
23 })
24
25 async function run () {
26 await initDatabaseModels(true)
27
28 const video = await VideoModel.loadByUUID(program['video'])
29 if (!video) throw new Error('Video not found.')
30
31 const dataInput = {
32 videoUUID: video.uuid,
33 isNewVideo: false
34 }
35
36 await JobQueue.Instance.init()
37 await JobQueue.Instance.createJob({ type: 'video-file', payload: dataInput })
38 console.log('Transcoding job for video %s created.', video.uuid)
39 }