X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=scripts%2Fcreate-transcoding-job.ts;h=7ee0050e39e5837857203612fb9259cbf77eadf7;hb=2c03a146a52d0999e86d3ae2f9ad87082850dbc6;hp=179fb4fa6e099642853c044c8d1f687f8e42c8d2;hpb=05623b9030e16449b21a55735fb0451276d61e14;p=github%2FChocobozzz%2FPeerTube.git diff --git a/scripts/create-transcoding-job.ts b/scripts/create-transcoding-job.ts index 179fb4fa6..7ee0050e3 100755 --- a/scripts/create-transcoding-job.ts +++ b/scripts/create-transcoding-job.ts @@ -1,14 +1,17 @@ +import { registerTSPaths } from '../server/helpers/register-ts-paths' +registerTSPaths() + 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 { initDatabaseModels } from '../server/initializers/database' import { JobQueue } from '../server/lib/job-queue' +import { computeResolutionsToTranscode } from '@server/helpers/ffmpeg-utils' +import { VideoTranscodingPayload } from '@shared/models' program .option('-v, --video [videoUUID]', 'Video UUID') .option('-r, --resolution [resolution]', 'Video resolution (integer)') + .option('--generate-hls', 'Generate HLS playlist') .parse(process.argv) if (program['video'] === undefined) { @@ -31,20 +34,45 @@ run() async function run () { await initDatabaseModels(true) - const video = await VideoModel.loadByUUID(program['video']) + const video = await VideoModel.loadAndPopulateAccountAndServerAndTags(program['video']) if (!video) throw new Error('Video not found.') - const dataInput = { - videoUUID: video.uuid, - isNewVideo: false, - resolution: undefined - } + const dataInput: VideoTranscodingPayload[] = [] + const { videoFileResolution } = await video.getMaxQualityResolution() + + if (program.generateHls) { + const resolutionsEnabled = program.resolution + ? [ program.resolution ] + : computeResolutionsToTranscode(videoFileResolution).concat([ videoFileResolution ]) - if (program.resolution !== undefined) { - dataInput.resolution = program.resolution + for (const resolution of resolutionsEnabled) { + dataInput.push({ + type: 'hls', + videoUUID: video.uuid, + resolution, + isPortraitMode: false, + copyCodecs: false + }) + } + } else if (program.resolution !== undefined) { + dataInput.push({ + type: 'new-resolution' as 'new-resolution', + videoUUID: video.uuid, + isNewVideo: false, + resolution: program.resolution + }) + } else { + dataInput.push({ + type: 'optimize' as 'optimize', + 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) + + for (const d of dataInput) { + await JobQueue.Instance.createJobWithPromise({ type: 'video-transcoding', payload: d }) + console.log('Transcoding job for video %s created.', video.uuid) + } }