]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/lib/job-queue/handlers/video-transcoding.ts
Add external login buttons
[github/Chocobozzz/PeerTube.git] / server / lib / job-queue / handlers / video-transcoding.ts
CommitLineData
94831479 1import * as Bull from 'bull'
8dc8a34e
C
2import {
3 MergeAudioTranscodingPayload,
4 NewResolutionTranscodingPayload,
5 OptimizeTranscodingPayload,
6 VideoTranscodingPayload
7} from '../../../../shared'
da854ddd 8import { logger } from '../../../helpers/logger'
3fd3ab2d 9import { VideoModel } from '../../../models/video/video'
94a5ff8a 10import { JobQueue } from '../job-queue'
8dc8a34e 11import { federateVideoIfNeeded } from '../../activitypub/videos'
2186386c 12import { retryTransactionWrapper } from '../../../helpers/database-utils'
6dd9de95 13import { sequelizeTypescript } from '../../../initializers'
06215f15 14import { computeResolutionsToTranscode } from '../../../helpers/ffmpeg-utils'
d7a25329 15import { generateHlsPlaylist, mergeAudioVideofile, optimizeOriginalVideofile, transcodeNewResolution } from '../../video-transcoding'
cef534ed 16import { Notifier } from '../../notifier'
6dd9de95 17import { CONFIG } from '../../../initializers/config'
d7a25329 18import { MVideoFullLight, MVideoUUID, MVideoWithFile } from '@server/typings/models'
40298b02 19
a0327eed
C
20async function processVideoTranscoding (job: Bull.Job) {
21 const payload = job.data as VideoTranscodingPayload
94a5ff8a
C
22 logger.info('Processing video file in job %d.', job.id)
23
627621c1 24 const video = await VideoModel.loadAndPopulateAccountAndServerAndTags(payload.videoUUID)
f5028693
C
25 // No video, maybe deleted?
26 if (!video) {
c1e791ba 27 logger.info('Do not process job %d, video does not exist.', job.id)
f5028693
C
28 return undefined
29 }
30
536598cf 31 if (payload.type === 'hls') {
d7a25329 32 await generateHlsPlaylist(video, payload.resolution, payload.copyCodecs, payload.isPortraitMode || false)
09209296
C
33
34 await retryTransactionWrapper(onHlsPlaylistGenerationSuccess, video)
536598cf 35 } else if (payload.type === 'new-resolution') {
d7a25329 36 await transcodeNewResolution(video, payload.resolution, payload.isPortraitMode || false)
2186386c 37
536598cf
C
38 await retryTransactionWrapper(publishNewResolutionIfNeeded, video, payload)
39 } else if (payload.type === 'merge-audio') {
40 await mergeAudioVideofile(video, payload.resolution)
41
42 await retryTransactionWrapper(publishNewResolutionIfNeeded, video, payload)
94a5ff8a 43 } else {
d7a25329 44 await optimizeOriginalVideofile(video)
2186386c 45
09209296 46 await retryTransactionWrapper(onVideoFileOptimizerSuccess, video, payload)
94a5ff8a 47 }
031094f7 48
f5028693 49 return video
40298b02
C
50}
51
d7a25329 52async function onHlsPlaylistGenerationSuccess (video: MVideoFullLight) {
09209296
C
53 if (video === undefined) return undefined
54
d7a25329
C
55 // We generated the HLS playlist, we don't need the webtorrent files anymore if the admin disabled it
56 if (CONFIG.TRANSCODING.WEBTORRENT.ENABLED === false) {
57 for (const file of video.VideoFiles) {
58 await video.removeFile(file)
59 await file.destroy()
1b952dd4 60 }
2186386c 61
d7a25329
C
62 video.VideoFiles = []
63 }
94a5ff8a 64
d7a25329
C
65 return publishAndFederateIfNeeded(video)
66}
e8d246d5 67
d7a25329
C
68async function publishNewResolutionIfNeeded (video: MVideoUUID, payload?: NewResolutionTranscodingPayload | MergeAudioTranscodingPayload) {
69 await publishAndFederateIfNeeded(video)
09209296
C
70
71 await createHlsJobIfEnabled(payload)
40298b02
C
72}
73
453e83ea 74async function onVideoFileOptimizerSuccess (videoArg: MVideoWithFile, payload: OptimizeTranscodingPayload) {
56b13bd1 75 if (videoArg === undefined) return undefined
031094f7 76
2186386c 77 // Outside the transaction (IO on disk)
d7a25329 78 const { videoFileResolution } = await videoArg.getMaxQualityResolution()
2186386c 79
dc133480 80 const { videoDatabase, videoPublished } = await sequelizeTypescript.transaction(async t => {
2186386c 81 // Maybe the video changed in database, refresh it
a1587156 82 const videoDatabase = await VideoModel.loadAndPopulateAccountAndServerAndTags(videoArg.uuid, t)
2186386c
C
83 // Video does not exist anymore
84 if (!videoDatabase) return undefined
85
86 // Create transcoding jobs if there are enabled resolutions
87 const resolutionsEnabled = computeResolutionsToTranscode(videoFileResolution)
88 logger.info(
89 'Resolutions computed for video %s and origin file height of %d.', videoDatabase.uuid, videoFileResolution,
90 { resolutions: resolutionsEnabled }
91 )
92
dc133480
C
93 let videoPublished = false
94
d7a25329
C
95 const hlsPayload = Object.assign({}, payload, { resolution: videoDatabase.getMaxQualityFile().resolution })
96 await createHlsJobIfEnabled(hlsPayload)
97
2186386c 98 if (resolutionsEnabled.length !== 0) {
2186386c 99 for (const resolution of resolutionsEnabled) {
d7a25329
C
100 let dataInput: VideoTranscodingPayload
101
102 if (CONFIG.TRANSCODING.WEBTORRENT.ENABLED) {
103 dataInput = {
104 type: 'new-resolution' as 'new-resolution',
105 videoUUID: videoDatabase.uuid,
106 resolution
107 }
108 } else if (CONFIG.TRANSCODING.HLS.ENABLED) {
109 dataInput = {
110 type: 'hls',
111 videoUUID: videoDatabase.uuid,
112 resolution,
113 isPortraitMode: false,
114 copyCodecs: false
115 }
2186386c
C
116 }
117
a1587156 118 JobQueue.Instance.createJob({ type: 'video-transcoding', payload: dataInput })
2186386c 119 }
f5028693 120
2186386c
C
121 logger.info('Transcoding jobs created for uuid %s.', videoDatabase.uuid, { resolutionsEnabled })
122 } else {
123 // No transcoding to do, it's now published
d7a25329 124 videoPublished = await videoDatabase.publishIfNeededAndSave(t)
a7977280 125
56b13bd1 126 logger.info('No transcoding jobs created for video %s (no resolutions).', videoDatabase.uuid, { privacy: videoDatabase.privacy })
f5028693 127 }
a7977280 128
09209296 129 await federateVideoIfNeeded(videoDatabase, payload.isNewVideo, t)
e8d246d5 130
dc133480 131 return { videoDatabase, videoPublished }
2186386c 132 })
e8d246d5 133
5b77537c 134 if (payload.isNewVideo) Notifier.Instance.notifyOnNewVideoIfNeeded(videoDatabase)
7ccddd7b 135 if (videoPublished) Notifier.Instance.notifyOnVideoPublishedAfterTranscoding(videoDatabase)
40298b02
C
136}
137
138// ---------------------------------------------------------------------------
139
140export {
a0327eed 141 processVideoTranscoding,
536598cf 142 publishNewResolutionIfNeeded
40298b02 143}
09209296
C
144
145// ---------------------------------------------------------------------------
146
536598cf 147function createHlsJobIfEnabled (payload?: { videoUUID: string, resolution: number, isPortraitMode?: boolean }) {
09209296
C
148 // Generate HLS playlist?
149 if (payload && CONFIG.TRANSCODING.HLS.ENABLED) {
150 const hlsTranscodingPayload = {
536598cf 151 type: 'hls' as 'hls',
09209296
C
152 videoUUID: payload.videoUUID,
153 resolution: payload.resolution,
d7a25329
C
154 isPortraitMode: payload.isPortraitMode,
155 copyCodecs: true
09209296
C
156 }
157
a0327eed 158 return JobQueue.Instance.createJob({ type: 'video-transcoding', payload: hlsTranscodingPayload })
09209296
C
159 }
160}
d7a25329
C
161
162async function publishAndFederateIfNeeded (video: MVideoUUID) {
163 const { videoDatabase, videoPublished } = await sequelizeTypescript.transaction(async t => {
164 // Maybe the video changed in database, refresh it
165 const videoDatabase = await VideoModel.loadAndPopulateAccountAndServerAndTags(video.uuid, t)
166 // Video does not exist anymore
167 if (!videoDatabase) return undefined
168
169 // We transcoded the video file in another format, now we can publish it
170 const videoPublished = await videoDatabase.publishIfNeededAndSave(t)
171
172 // If the video was not published, we consider it is a new one for other instances
173 await federateVideoIfNeeded(videoDatabase, videoPublished, t)
174
175 return { videoDatabase, videoPublished }
176 })
177
178 if (videoPublished) {
179 Notifier.Instance.notifyOnNewVideoIfNeeded(videoDatabase)
180 Notifier.Instance.notifyOnVideoPublishedAfterTranscoding(videoDatabase)
181 }
182}