Add ability to manually run transcoding job
This commit is contained in:
parent
b4f8277cb6
commit
0c948c1659
6 changed files with 154 additions and 10 deletions
39
scripts/create-transcoding-job.ts
Executable file
39
scripts/create-transcoding-job.ts
Executable file
|
@ -0,0 +1,39 @@
|
|||
import * as program from 'commander'
|
||||
import { createReadStream } from 'fs'
|
||||
import { join } from 'path'
|
||||
import { createInterface } from 'readline'
|
||||
import { VideoModel } from '../server/models/video/video'
|
||||
import { initDatabaseModels } from '../server/initializers'
|
||||
import { JobQueue } from '../server/lib/job-queue'
|
||||
|
||||
program
|
||||
.option('-v, --video [videoUUID]', 'Video UUID')
|
||||
.parse(process.argv)
|
||||
|
||||
if (program['video'] === undefined) {
|
||||
console.error('All parameters are mandatory.')
|
||||
process.exit(-1)
|
||||
}
|
||||
|
||||
run()
|
||||
.then(() => process.exit(0))
|
||||
.catch(err => {
|
||||
console.error(err)
|
||||
process.exit(-1)
|
||||
})
|
||||
|
||||
async function run () {
|
||||
await initDatabaseModels(true)
|
||||
|
||||
const video = await VideoModel.loadByUUID(program['video'])
|
||||
if (!video) throw new Error('Video not found.')
|
||||
|
||||
const dataInput = {
|
||||
videoUUID: video.uuid,
|
||||
isNewVideo: false
|
||||
}
|
||||
|
||||
await JobQueue.Instance.init()
|
||||
await JobQueue.Instance.createJob({ type: 'video-file', payload: dataInput })
|
||||
console.log('Transcoding job for video %s created.', video.uuid)
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue