2018-07-10 10:02:20 -05:00
|
|
|
import * as Bull from 'bull'
|
2018-12-28 06:47:17 -06:00
|
|
|
import { VideoResolution, VideoState } from '../../../../shared'
|
2017-12-28 04:16:08 -06:00
|
|
|
import { logger } from '../../../helpers/logger'
|
2017-12-12 10:53:50 -06:00
|
|
|
import { VideoModel } from '../../../models/video/video'
|
2018-01-25 08:05:18 -06:00
|
|
|
import { JobQueue } from '../job-queue'
|
2018-06-12 13:04:58 -05:00
|
|
|
import { federateVideoIfNeeded } from '../../activitypub'
|
|
|
|
import { retryTransactionWrapper } from '../../../helpers/database-utils'
|
2019-03-19 11:10:53 -05:00
|
|
|
import { CONFIG, sequelizeTypescript } from '../../../initializers'
|
2018-07-10 10:02:20 -05:00
|
|
|
import * as Bluebird from 'bluebird'
|
2018-08-14 08:28:30 -05:00
|
|
|
import { computeResolutionsToTranscode } from '../../../helpers/ffmpeg-utils'
|
2019-03-19 11:10:53 -05:00
|
|
|
import { generateHlsPlaylist, optimizeVideofile, transcodeOriginalVideofile } from '../../video-transcoding'
|
2018-12-26 03:36:24 -06:00
|
|
|
import { Notifier } from '../../notifier'
|
2017-10-02 05:20:26 -05:00
|
|
|
|
2019-03-19 11:00:08 -05:00
|
|
|
export type VideoTranscodingPayload = {
|
2018-01-25 08:05:18 -06:00
|
|
|
videoUUID: string
|
2018-05-30 03:49:40 -05:00
|
|
|
resolution?: VideoResolution
|
2019-01-29 01:37:25 -06:00
|
|
|
isNewVideo?: boolean
|
2018-02-27 08:57:28 -06:00
|
|
|
isPortraitMode?: boolean
|
2019-01-29 01:37:25 -06:00
|
|
|
generateHlsPlaylist?: boolean
|
2018-01-25 08:05:18 -06:00
|
|
|
}
|
|
|
|
|
2019-03-19 11:00:08 -05:00
|
|
|
async function processVideoTranscoding (job: Bull.Job) {
|
|
|
|
const payload = job.data as VideoTranscodingPayload
|
2018-01-25 08:05:18 -06:00
|
|
|
logger.info('Processing video file in job %d.', job.id)
|
|
|
|
|
2018-09-18 05:00:49 -05:00
|
|
|
const video = await VideoModel.loadAndPopulateAccountAndServerAndTags(payload.videoUUID)
|
2017-10-25 09:03:33 -05:00
|
|
|
// No video, maybe deleted?
|
|
|
|
if (!video) {
|
2018-07-25 15:01:25 -05:00
|
|
|
logger.info('Do not process job %d, video does not exist.', job.id)
|
2017-10-25 09:03:33 -05:00
|
|
|
return undefined
|
|
|
|
}
|
|
|
|
|
2019-01-29 01:37:25 -06:00
|
|
|
if (payload.generateHlsPlaylist) {
|
|
|
|
await generateHlsPlaylist(video, payload.resolution, payload.isPortraitMode || false)
|
|
|
|
|
|
|
|
await retryTransactionWrapper(onHlsPlaylistGenerationSuccess, video)
|
|
|
|
} else if (payload.resolution) { // Transcoding in other resolution
|
2018-09-18 04:02:51 -05:00
|
|
|
await transcodeOriginalVideofile(video, payload.resolution, payload.isPortraitMode || false)
|
2018-06-12 13:04:58 -05:00
|
|
|
|
2019-03-19 11:10:53 -05:00
|
|
|
await retryTransactionWrapper(publishVideoIfNeeded, video, payload)
|
2018-01-25 08:05:18 -06:00
|
|
|
} else {
|
2018-10-08 09:26:04 -05:00
|
|
|
await optimizeVideofile(video)
|
2018-06-12 13:04:58 -05:00
|
|
|
|
2019-01-29 01:37:25 -06:00
|
|
|
await retryTransactionWrapper(onVideoFileOptimizerSuccess, video, payload)
|
2018-01-25 08:05:18 -06:00
|
|
|
}
|
2017-10-17 08:37:40 -05:00
|
|
|
|
2017-10-25 09:03:33 -05:00
|
|
|
return video
|
2017-10-02 05:20:26 -05:00
|
|
|
}
|
|
|
|
|
2019-01-29 01:37:25 -06:00
|
|
|
async function onHlsPlaylistGenerationSuccess (video: VideoModel) {
|
|
|
|
if (video === undefined) return undefined
|
|
|
|
|
|
|
|
await sequelizeTypescript.transaction(async t => {
|
|
|
|
// Maybe the video changed in database, refresh it
|
|
|
|
let videoDatabase = await VideoModel.loadAndPopulateAccountAndServerAndTags(video.uuid, t)
|
|
|
|
// Video does not exist anymore
|
|
|
|
if (!videoDatabase) return undefined
|
|
|
|
|
|
|
|
// If the video was not published, we consider it is a new one for other instances
|
|
|
|
await federateVideoIfNeeded(videoDatabase, false, t)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2019-03-19 11:10:53 -05:00
|
|
|
async function publishVideoIfNeeded (video: VideoModel, payload?: VideoTranscodingPayload) {
|
2019-01-02 09:37:43 -06:00
|
|
|
const { videoDatabase, videoPublished } = await sequelizeTypescript.transaction(async t => {
|
2018-06-12 13:04:58 -05:00
|
|
|
// Maybe the video changed in database, refresh it
|
2018-09-18 05:00:49 -05:00
|
|
|
let videoDatabase = await VideoModel.loadAndPopulateAccountAndServerAndTags(video.uuid, t)
|
2018-06-12 13:04:58 -05:00
|
|
|
// Video does not exist anymore
|
|
|
|
if (!videoDatabase) return undefined
|
2018-01-25 08:05:18 -06:00
|
|
|
|
2019-01-02 09:37:43 -06:00
|
|
|
let videoPublished = false
|
2018-06-28 09:58:15 -05:00
|
|
|
|
2018-06-12 13:04:58 -05:00
|
|
|
// We transcoded the video file in another format, now we can publish it
|
2018-06-28 09:58:15 -05:00
|
|
|
if (videoDatabase.state !== VideoState.PUBLISHED) {
|
2019-01-02 09:37:43 -06:00
|
|
|
videoPublished = true
|
2018-06-28 09:58:15 -05:00
|
|
|
|
|
|
|
videoDatabase.state = VideoState.PUBLISHED
|
|
|
|
videoDatabase.publishedAt = new Date()
|
|
|
|
videoDatabase = await videoDatabase.save({ transaction: t })
|
|
|
|
}
|
2018-06-12 13:04:58 -05:00
|
|
|
|
|
|
|
// If the video was not published, we consider it is a new one for other instances
|
2019-01-02 09:37:43 -06:00
|
|
|
await federateVideoIfNeeded(videoDatabase, videoPublished, t)
|
2018-01-25 08:05:18 -06:00
|
|
|
|
2019-01-02 09:37:43 -06:00
|
|
|
return { videoDatabase, videoPublished }
|
2018-06-12 13:04:58 -05:00
|
|
|
})
|
2018-12-28 06:47:17 -06:00
|
|
|
|
2019-02-06 05:14:45 -06:00
|
|
|
// don't notify prior to scheduled video update
|
|
|
|
if (videoPublished && !videoDatabase.ScheduleVideoUpdate) {
|
2019-01-02 09:37:43 -06:00
|
|
|
Notifier.Instance.notifyOnNewVideo(videoDatabase)
|
|
|
|
Notifier.Instance.notifyOnPendingVideoPublished(videoDatabase)
|
|
|
|
}
|
2019-01-29 01:37:25 -06:00
|
|
|
|
|
|
|
await createHlsJobIfEnabled(payload)
|
2017-10-02 05:20:26 -05:00
|
|
|
}
|
|
|
|
|
2019-03-19 11:00:08 -05:00
|
|
|
async function onVideoFileOptimizerSuccess (videoArg: VideoModel, payload: VideoTranscodingPayload) {
|
2018-12-19 04:24:34 -06:00
|
|
|
if (videoArg === undefined) return undefined
|
2017-10-17 08:37:40 -05:00
|
|
|
|
2018-06-12 13:04:58 -05:00
|
|
|
// Outside the transaction (IO on disk)
|
2018-12-19 04:24:34 -06:00
|
|
|
const { videoFileResolution } = await videoArg.getOriginalFileResolution()
|
2018-06-12 13:04:58 -05:00
|
|
|
|
2019-01-02 09:37:43 -06:00
|
|
|
const { videoDatabase, videoPublished } = await sequelizeTypescript.transaction(async t => {
|
2018-06-12 13:04:58 -05:00
|
|
|
// Maybe the video changed in database, refresh it
|
2018-12-19 04:24:34 -06:00
|
|
|
let videoDatabase = await VideoModel.loadAndPopulateAccountAndServerAndTags(videoArg.uuid, t)
|
2018-06-12 13:04:58 -05:00
|
|
|
// Video does not exist anymore
|
|
|
|
if (!videoDatabase) return undefined
|
|
|
|
|
|
|
|
// Create transcoding jobs if there are enabled resolutions
|
|
|
|
const resolutionsEnabled = computeResolutionsToTranscode(videoFileResolution)
|
|
|
|
logger.info(
|
|
|
|
'Resolutions computed for video %s and origin file height of %d.', videoDatabase.uuid, videoFileResolution,
|
|
|
|
{ resolutions: resolutionsEnabled }
|
|
|
|
)
|
|
|
|
|
2019-01-02 09:37:43 -06:00
|
|
|
let videoPublished = false
|
|
|
|
|
2018-06-12 13:04:58 -05:00
|
|
|
if (resolutionsEnabled.length !== 0) {
|
2019-02-21 07:22:39 -06:00
|
|
|
const tasks: (Bluebird<Bull.Job<any>> | Promise<Bull.Job<any>>)[] = []
|
2018-06-12 13:04:58 -05:00
|
|
|
|
|
|
|
for (const resolution of resolutionsEnabled) {
|
|
|
|
const dataInput = {
|
|
|
|
videoUUID: videoDatabase.uuid,
|
|
|
|
resolution
|
|
|
|
}
|
|
|
|
|
2019-03-19 11:00:08 -05:00
|
|
|
const p = JobQueue.Instance.createJob({ type: 'video-transcoding', payload: dataInput })
|
2018-06-12 13:04:58 -05:00
|
|
|
tasks.push(p)
|
|
|
|
}
|
2017-10-25 09:03:33 -05:00
|
|
|
|
2018-06-12 13:04:58 -05:00
|
|
|
await Promise.all(tasks)
|
2018-03-19 09:02:36 -05:00
|
|
|
|
2018-06-12 13:04:58 -05:00
|
|
|
logger.info('Transcoding jobs created for uuid %s.', videoDatabase.uuid, { resolutionsEnabled })
|
|
|
|
} else {
|
2019-01-02 09:37:43 -06:00
|
|
|
videoPublished = true
|
|
|
|
|
2018-06-12 13:04:58 -05:00
|
|
|
// No transcoding to do, it's now published
|
2018-12-19 04:24:34 -06:00
|
|
|
videoDatabase.state = VideoState.PUBLISHED
|
|
|
|
videoDatabase = await videoDatabase.save({ transaction: t })
|
2018-03-19 09:02:36 -05:00
|
|
|
|
2018-12-19 04:24:34 -06:00
|
|
|
logger.info('No transcoding jobs created for video %s (no resolutions).', videoDatabase.uuid, { privacy: videoDatabase.privacy })
|
2017-10-25 09:03:33 -05:00
|
|
|
}
|
2018-03-19 09:02:36 -05:00
|
|
|
|
2019-01-29 01:37:25 -06:00
|
|
|
await federateVideoIfNeeded(videoDatabase, payload.isNewVideo, t)
|
2018-12-28 06:47:17 -06:00
|
|
|
|
2019-01-02 09:37:43 -06:00
|
|
|
return { videoDatabase, videoPublished }
|
2018-06-12 13:04:58 -05:00
|
|
|
})
|
2018-12-28 06:47:17 -06:00
|
|
|
|
2019-02-06 05:14:45 -06:00
|
|
|
// don't notify prior to scheduled video update
|
|
|
|
if (!videoDatabase.ScheduleVideoUpdate) {
|
2019-02-07 08:56:17 -06:00
|
|
|
if (payload.isNewVideo) Notifier.Instance.notifyOnNewVideo(videoDatabase)
|
2019-02-06 05:14:45 -06:00
|
|
|
if (videoPublished) Notifier.Instance.notifyOnPendingVideoPublished(videoDatabase)
|
|
|
|
}
|
2019-01-29 01:37:25 -06:00
|
|
|
|
|
|
|
await createHlsJobIfEnabled(Object.assign({}, payload, { resolution: videoDatabase.getOriginalFile().resolution }))
|
2017-10-02 05:20:26 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
export {
|
2019-03-19 11:00:08 -05:00
|
|
|
processVideoTranscoding,
|
2019-03-19 11:10:53 -05:00
|
|
|
publishVideoIfNeeded
|
2017-10-02 05:20:26 -05:00
|
|
|
}
|
2019-01-29 01:37:25 -06:00
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
2019-03-19 11:00:08 -05:00
|
|
|
function createHlsJobIfEnabled (payload?: VideoTranscodingPayload) {
|
2019-01-29 01:37:25 -06:00
|
|
|
// Generate HLS playlist?
|
|
|
|
if (payload && CONFIG.TRANSCODING.HLS.ENABLED) {
|
|
|
|
const hlsTranscodingPayload = {
|
|
|
|
videoUUID: payload.videoUUID,
|
|
|
|
resolution: payload.resolution,
|
|
|
|
isPortraitMode: payload.isPortraitMode,
|
|
|
|
|
|
|
|
generateHlsPlaylist: true
|
|
|
|
}
|
|
|
|
|
2019-03-19 11:00:08 -05:00
|
|
|
return JobQueue.Instance.createJob({ type: 'video-transcoding', payload: hlsTranscodingPayload })
|
2019-01-29 01:37:25 -06:00
|
|
|
}
|
|
|
|
}
|