2021-06-25 11:39:27 -04:00
|
|
|
import { program } from 'commander'
|
2022-01-03 11:13:11 -05:00
|
|
|
import { isUUIDValid, toCompleteUUID } from '@server/helpers/custom-validators/misc'
|
2022-08-05 04:36:19 -04:00
|
|
|
import { computeResolutionsToTranscode } from '@server/helpers/ffmpeg'
|
2021-02-11 09:40:54 -05:00
|
|
|
import { CONFIG } from '@server/initializers/config'
|
2022-08-09 03:09:31 -04:00
|
|
|
import { buildTranscodingJob } from '@server/lib/video'
|
2022-01-03 11:13:11 -05: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 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-08-17 05:06:10 -04:00
|
|
|
const uuid = toCompleteUUID(options.video)
|
|
|
|
|
|
|
|
if (isUUIDValid(uuid) === false) {
|
2021-02-11 10:14:12 -05:00
|
|
|
console.error('%s is not a valid video UUID.', options.video)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2022-06-28 08:57:51 -04:00
|
|
|
const video = await VideoModel.loadFull(uuid)
|
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[] = []
|
2021-11-18 08:35:08 -05:00
|
|
|
const maxResolution = video.getMaxQualityFile().resolution
|
2019-11-22 04:45:03 -05:00
|
|
|
|
2022-11-07 04:25:24 -05:00
|
|
|
// FIXME: check the file has audio
|
|
|
|
const hasAudio = true
|
|
|
|
|
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
|
2021-11-05 09:17:19 -04:00
|
|
|
? [ parseInt(options.resolution) ]
|
2022-11-07 04:25:24 -05:00
|
|
|
: computeResolutionsToTranscode({ input: maxResolution, type: 'vod', includeInput: true, strictLower: false, hasAudio })
|
2019-11-22 04:45:03 -05:00
|
|
|
|
|
|
|
for (const resolution of resolutionsEnabled) {
|
|
|
|
dataInput.push({
|
2022-08-09 03:09:31 -04:00
|
|
|
type: 'new-resolution-to-hls' as 'new-resolution-to-hls',
|
2019-11-22 04:45:03 -05:00
|
|
|
videoUUID: video.uuid,
|
|
|
|
resolution,
|
2022-01-06 11:55:37 -05:00
|
|
|
|
2022-11-07 04:25:24 -05:00
|
|
|
hasAudio,
|
2022-01-06 11:55:37 -05:00
|
|
|
|
2021-02-08 04:51:10 -05:00
|
|
|
copyCodecs: false,
|
2021-08-17 02:26:20 -04:00
|
|
|
isNewVideo: false,
|
2021-11-18 08:35:08 -05:00
|
|
|
isMaxQuality: maxResolution === resolution,
|
|
|
|
autoDeleteWebTorrentIfNeeded: false
|
2019-11-22 04:45:03 -05:00
|
|
|
})
|
|
|
|
}
|
|
|
|
} else {
|
2021-02-11 09:40:54 -05:00
|
|
|
if (options.resolution !== undefined) {
|
|
|
|
dataInput.push({
|
2022-08-09 03:09:31 -04:00
|
|
|
type: 'new-resolution-to-webtorrent' as 'new-resolution-to-webtorrent',
|
2021-02-11 09:40:54 -05:00
|
|
|
videoUUID: video.uuid,
|
2022-01-06 11:55:37 -05:00
|
|
|
|
2022-02-01 05:16:45 -05:00
|
|
|
createHLSIfNeeded: true,
|
|
|
|
|
2022-11-07 04:25:24 -05:00
|
|
|
hasAudio,
|
2022-01-06 11:55:37 -05:00
|
|
|
|
2021-02-11 09:40:54 -05:00
|
|
|
isNewVideo: false,
|
2021-11-05 09:17:19 -04:00
|
|
|
resolution: parseInt(options.resolution)
|
2021-02-11 09:40:54 -05:00
|
|
|
})
|
|
|
|
} else {
|
|
|
|
if (video.VideoFiles.length === 0) {
|
|
|
|
console.error('Cannot regenerate webtorrent files with a HLS only video.')
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
dataInput.push({
|
2022-08-09 03:09:31 -04:00
|
|
|
type: 'optimize-to-webtorrent' as 'optimize-to-webtorrent',
|
2021-02-11 09:40:54 -05:00
|
|
|
videoUUID: video.uuid,
|
|
|
|
isNewVideo: false
|
|
|
|
})
|
|
|
|
}
|
2019-11-22 04:45:03 -05:00
|
|
|
}
|
2018-05-30 04:49:40 -04:00
|
|
|
|
2022-09-14 05:35:58 -04:00
|
|
|
JobQueue.Instance.init()
|
2021-08-17 02:26:20 -04:00
|
|
|
|
|
|
|
video.state = VideoState.TO_TRANSCODE
|
|
|
|
await video.save()
|
2019-11-22 04:45:03 -05:00
|
|
|
|
|
|
|
for (const d of dataInput) {
|
2022-08-09 03:09:31 -04:00
|
|
|
await JobQueue.Instance.createJob(await buildTranscodingJob(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
|
|
|
}
|