2019-10-21 11:13:07 -04:00
|
|
|
import { registerTSPaths } from '../server/helpers/register-ts-paths'
|
|
|
|
registerTSPaths()
|
|
|
|
|
2018-05-30 04:49:40 -04:00
|
|
|
import * as program from 'commander'
|
|
|
|
import { VideoModel } from '../server/models/video/video'
|
|
|
|
import { initDatabaseModels } from '../server/initializers'
|
|
|
|
import { JobQueue } from '../server/lib/job-queue'
|
2019-05-16 10:55:34 -04:00
|
|
|
import { VideoTranscodingPayload } from '../server/lib/job-queue/handlers/video-transcoding'
|
2018-05-30 04:49:40 -04:00
|
|
|
|
|
|
|
program
|
|
|
|
.option('-v, --video [videoUUID]', 'Video UUID')
|
2018-06-15 12:27:35 -04:00
|
|
|
.option('-r, --resolution [resolution]', 'Video resolution (integer)')
|
2018-05-30 04:49:40 -04:00
|
|
|
.parse(process.argv)
|
|
|
|
|
|
|
|
if (program['video'] === undefined) {
|
|
|
|
console.error('All parameters are mandatory.')
|
|
|
|
process.exit(-1)
|
|
|
|
}
|
|
|
|
|
2018-06-15 12:27:35 -04:00
|
|
|
if (program.resolution !== undefined && Number.isNaN(+program.resolution)) {
|
|
|
|
console.error('The resolution must be an integer (example: 1080).')
|
|
|
|
process.exit(-1)
|
|
|
|
}
|
|
|
|
|
2018-05-30 04:49:40 -04:00
|
|
|
run()
|
|
|
|
.then(() => process.exit(0))
|
|
|
|
.catch(err => {
|
|
|
|
console.error(err)
|
|
|
|
process.exit(-1)
|
|
|
|
})
|
|
|
|
|
|
|
|
async function run () {
|
|
|
|
await initDatabaseModels(true)
|
|
|
|
|
2019-08-09 09:04:36 -04:00
|
|
|
const video = await VideoModel.loadByUUID(program['video'])
|
2018-05-30 04:49:40 -04:00
|
|
|
if (!video) throw new Error('Video not found.')
|
|
|
|
|
2019-05-16 10:55:34 -04:00
|
|
|
const dataInput: VideoTranscodingPayload = program.resolution !== undefined
|
|
|
|
? { type: 'new-resolution' as 'new-resolution', videoUUID: video.uuid, isNewVideo: false, resolution: program.resolution }
|
|
|
|
: { type: 'optimize' as 'optimize', videoUUID: video.uuid, isNewVideo: false }
|
2018-05-30 04:49:40 -04:00
|
|
|
|
|
|
|
await JobQueue.Instance.init()
|
2019-03-19 12:00:08 -04:00
|
|
|
await JobQueue.Instance.createJob({ type: 'video-transcoding', payload: dataInput })
|
2018-05-30 04:49:40 -04:00
|
|
|
console.log('Transcoding job for video %s created.', video.uuid)
|
|
|
|
}
|