Files
PeerTube/scripts/create-transcoding-job.ts
T

112 lines
3.2 KiB
TypeScript
Raw Normal View History

2021-06-25 17:39:27 +02:00
import { program } from 'commander'
2022-01-03 17:13:11 +01:00
import { isUUIDValid, toCompleteUUID } from '@server/helpers/custom-validators/misc'
2022-02-11 10:51:33 +01:00
import { computeLowerResolutionsToTranscode } from '@server/helpers/ffmpeg'
2021-02-11 15:40:54 +01:00
import { CONFIG } from '@server/initializers/config'
import { addTranscodingJob } from '@server/lib/video'
2022-01-03 17:13:11 +01:00
import { VideoState, VideoTranscodingPayload } from '@shared/models'
import { initDatabaseModels } from '../server/initializers/database'
import { JobQueue } from '../server/lib/job-queue'
import { VideoModel } from '../server/models/video/video'
2018-05-30 10:49:40 +02:00
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')
2018-05-30 10:49:40 +02:00
.parse(process.argv)
2021-02-03 09:33:05 +01:00
const options = program.opts()
if (options.video === undefined) {
2018-05-30 10:49:40 +02:00
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)
}
2018-05-30 10:49:40 +02:00
run()
.then(() => process.exit(0))
.catch(err => {
console.error(err)
process.exit(-1)
})
async function run () {
await initDatabaseModels(true)
2021-08-17 11:06:10 +02:00
const uuid = toCompleteUUID(options.video)
if (isUUIDValid(uuid) === false) {
2021-02-11 16:14:12 +01:00
console.error('%s is not a valid video UUID.', options.video)
return
}
2021-08-17 11:06:10 +02:00
const video = await VideoModel.loadAndPopulateAccountAndServerAndTags(uuid)
2018-05-30 10:49:40 +02:00
if (!video) throw new Error('Video not found.')
2019-11-22 10:45:03 +01:00
const dataInput: VideoTranscodingPayload[] = []
2021-11-18 14:35:08 +01:00
const maxResolution = video.getMaxQualityFile().resolution
2019-11-22 10:45:03 +01:00
2021-02-11 15:40:54 +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
2021-11-05 14:17:19 +01:00
? [ parseInt(options.resolution) ]
2021-11-18 14:35:08 +01:00
: computeLowerResolutionsToTranscode(maxResolution, 'vod').concat([ maxResolution ])
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,
2022-01-06 17:55:37 +01:00
// FIXME: check the file has audio and is not in portrait mode
2019-11-22 10:45:03 +01:00
isPortraitMode: false,
2022-01-06 17:55:37 +01:00
hasAudio: true,
copyCodecs: false,
isNewVideo: false,
2021-11-18 14:35:08 +01:00
isMaxQuality: maxResolution === resolution,
autoDeleteWebTorrentIfNeeded: false
2019-11-22 10:45:03 +01:00
})
}
} else {
2021-02-11 15:40:54 +01:00
if (options.resolution !== undefined) {
dataInput.push({
type: 'new-resolution-to-webtorrent',
videoUUID: video.uuid,
2022-01-06 17:55:37 +01:00
createHLSIfNeeded: true,
2022-01-06 17:55:37 +01:00
// FIXME: check the file has audio
hasAudio: true,
2021-02-11 15:40:54 +01:00
isNewVideo: false,
2021-11-05 14:17:19 +01:00
resolution: parseInt(options.resolution)
2021-02-11 15:40:54 +01:00
})
} 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
}
2018-05-30 10:49:40 +02:00
JobQueue.Instance.init(true)
video.state = VideoState.TO_TRANSCODE
await video.save()
2019-11-22 10:45:03 +01:00
for (const d of dataInput) {
await addTranscodingJob(d, {})
2019-11-22 10:45:03 +01:00
console.log('Transcoding job for video %s created.', video.uuid)
}
2018-05-30 10:49:40 +02:00
}