PeerTube/scripts/create-transcoding-job.ts

97 lines
2.8 KiB
TypeScript
Raw Normal View History

import { registerTSPaths } from '../server/helpers/register-ts-paths'
registerTSPaths()
2021-06-25 17:39:27 +02:00
import { program } from 'commander'
import { VideoModel } from '../server/models/video/video'
2020-05-07 14:58:24 +02:00
import { initDatabaseModels } from '../server/initializers/database'
import { JobQueue } from '../server/lib/job-queue'
2020-11-20 17:16:55 +01:00
import { computeResolutionsToTranscode } from '@server/helpers/ffprobe-utils'
2020-04-23 09:32:53 +02:00
import { VideoTranscodingPayload } from '@shared/models'
import { CONFIG } from '@server/initializers/config'
2021-02-11 16:14:12 +01:00
import { isUUIDValid } from '@server/helpers/custom-validators/misc'
program
.option('-v, --video [videoUUID]', 'Video UUID')
.option('-r, --resolution [resolution]', 'Video resolution (integer)')
2019-11-22 10:45:03 +01:00
.option('--generate-hls', 'Generate HLS playlist')
.parse(process.argv)
2021-02-03 09:33:05 +01:00
const options = program.opts()
if (options.video === undefined) {
console.error('All parameters are mandatory.')
process.exit(-1)
}
2021-02-03 09:33:05 +01:00
if (options.resolution !== undefined && Number.isNaN(+options.resolution)) {
console.error('The resolution must be an integer (example: 1080).')
process.exit(-1)
}
run()
.then(() => process.exit(0))
.catch(err => {
console.error(err)
process.exit(-1)
})
async function run () {
await initDatabaseModels(true)
2021-02-11 16:14:12 +01:00
if (isUUIDValid(options.video) === false) {
console.error('%s is not a valid video UUID.', options.video)
return
}
2021-02-03 09:33:05 +01:00
const video = await VideoModel.loadAndPopulateAccountAndServerAndTags(options.video)
if (!video) throw new Error('Video not found.')
2019-11-22 10:45:03 +01:00
const dataInput: VideoTranscodingPayload[] = []
2021-08-06 13:35:25 +02:00
const { resolution } = await video.getMaxQualityResolution()
2019-11-22 10:45:03 +01:00
// Generate HLS files
if (options.generateHls || CONFIG.TRANSCODING.WEBTORRENT.ENABLED === false) {
2021-02-03 09:33:05 +01:00
const resolutionsEnabled = options.resolution
? [ options.resolution ]
2021-08-06 13:35:25 +02:00
: computeResolutionsToTranscode(resolution, 'vod').concat([ resolution ])
2019-11-22 10:45:03 +01:00
for (const resolution of resolutionsEnabled) {
dataInput.push({
2021-01-21 15:58:17 +01:00
type: 'new-resolution-to-hls',
2019-11-22 10:45:03 +01:00
videoUUID: video.uuid,
resolution,
isPortraitMode: false,
copyCodecs: false,
isMaxQuality: false
2019-11-22 10:45:03 +01:00
})
}
} else {
if (options.resolution !== undefined) {
dataInput.push({
type: 'new-resolution-to-webtorrent',
videoUUID: video.uuid,
isNewVideo: false,
resolution: options.resolution
})
} else {
if (video.VideoFiles.length === 0) {
console.error('Cannot regenerate webtorrent files with a HLS only video.')
return
}
dataInput.push({
type: 'optimize-to-webtorrent',
videoUUID: video.uuid,
isNewVideo: false
})
}
2019-11-22 10:45:03 +01:00
}
await JobQueue.Instance.init()
2019-11-22 10:45:03 +01:00
for (const d of dataInput) {
2020-01-31 16:56:52 +01:00
await JobQueue.Instance.createJobWithPromise({ type: 'video-transcoding', payload: d })
2019-11-22 10:45:03 +01:00
console.log('Transcoding job for video %s created.', video.uuid)
}
}