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'
|
2020-05-07 08:58:24 -04:00
|
|
|
import { initDatabaseModels } from '../server/initializers/database'
|
2018-05-30 04:49:40 -04:00
|
|
|
import { JobQueue } from '../server/lib/job-queue'
|
2020-11-20 11:16:55 -05:00
|
|
|
import { computeResolutionsToTranscode } from '@server/helpers/ffprobe-utils'
|
2020-04-23 03:32:53 -04:00
|
|
|
import { VideoTranscodingPayload } from '@shared/models'
|
2021-02-11 09:40:54 -05:00
|
|
|
import { CONFIG } from '@server/initializers/config'
|
2021-02-11 10:14:12 -05:00
|
|
|
import { isUUIDValid } from '@server/helpers/custom-validators/misc'
|
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)')
|
2019-11-22 04:45:03 -05:00
|
|
|
.option('--generate-hls', 'Generate HLS playlist')
|
2018-05-30 04:49:40 -04:00
|
|
|
.parse(process.argv)
|
|
|
|
|
2021-02-03 03:33:05 -05:00
|
|
|
const options = program.opts()
|
|
|
|
|
|
|
|
if (options.video === undefined) {
|
2018-05-30 04:49:40 -04:00
|
|
|
console.error('All parameters are mandatory.')
|
|
|
|
process.exit(-1)
|
|
|
|
}
|
|
|
|
|
2021-02-03 03:33:05 -05:00
|
|
|
if (options.resolution !== undefined && Number.isNaN(+options.resolution)) {
|
2018-06-15 12:27:35 -04:00
|
|
|
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)
|
|
|
|
|
2021-02-11 10:14:12 -05:00
|
|
|
if (isUUIDValid(options.video) === false) {
|
|
|
|
console.error('%s is not a valid video UUID.', options.video)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-02-03 03:33:05 -05:00
|
|
|
const video = await VideoModel.loadAndPopulateAccountAndServerAndTags(options.video)
|
2018-05-30 04:49:40 -04:00
|
|
|
if (!video) throw new Error('Video not found.')
|
|
|
|
|
2019-11-22 04:45:03 -05:00
|
|
|
const dataInput: VideoTranscodingPayload[] = []
|
|
|
|
const { videoFileResolution } = await video.getMaxQualityResolution()
|
|
|
|
|
2021-02-11 09:40:54 -05:00
|
|
|
// Generate HLS files
|
|
|
|
if (options.generateHls || CONFIG.TRANSCODING.WEBTORRENT.ENABLED === false) {
|
2021-02-03 03:33:05 -05:00
|
|
|
const resolutionsEnabled = options.resolution
|
|
|
|
? [ options.resolution ]
|
2020-09-17 03:20:52 -04:00
|
|
|
: computeResolutionsToTranscode(videoFileResolution, 'vod').concat([ videoFileResolution ])
|
2019-11-22 04:45:03 -05:00
|
|
|
|
|
|
|
for (const resolution of resolutionsEnabled) {
|
|
|
|
dataInput.push({
|
2021-01-21 09:58:17 -05:00
|
|
|
type: 'new-resolution-to-hls',
|
2019-11-22 04:45:03 -05:00
|
|
|
videoUUID: video.uuid,
|
|
|
|
resolution,
|
|
|
|
isPortraitMode: false,
|
2021-02-08 04:51:10 -05:00
|
|
|
copyCodecs: false,
|
|
|
|
isMaxQuality: false
|
2019-11-22 04:45:03 -05:00
|
|
|
})
|
|
|
|
}
|
|
|
|
} else {
|
2021-02-11 09:40:54 -05:00
|
|
|
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 04:45:03 -05:00
|
|
|
}
|
2018-05-30 04:49:40 -04:00
|
|
|
|
|
|
|
await JobQueue.Instance.init()
|
2019-11-22 04:45:03 -05:00
|
|
|
|
|
|
|
for (const d of dataInput) {
|
2020-01-31 10:56:52 -05:00
|
|
|
await JobQueue.Instance.createJobWithPromise({ type: 'video-transcoding', payload: d })
|
2019-11-22 04:45:03 -05:00
|
|
|
console.log('Transcoding job for video %s created.', video.uuid)
|
|
|
|
}
|
2018-05-30 04:49:40 -04:00
|
|
|
}
|