]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/lib/video-studio.ts
Bumped to version v5.2.1
[github/Chocobozzz/PeerTube.git] / server / lib / video-studio.ts
CommitLineData
5e47f6ab
C
1import { move, remove } from 'fs-extra'
2import { join } from 'path'
3import { logger, loggerTagsFactory } from '@server/helpers/logger'
4import { createTorrentAndSetInfoHashFromPath } from '@server/helpers/webtorrent'
5import { CONFIG } from '@server/initializers/config'
6import { UserModel } from '@server/models/user/user'
7import { MUser, MVideo, MVideoFile, MVideoFullLight, MVideoWithAllFiles } from '@server/types/models'
0c9668f7 8import { getVideoStreamDuration } from '@shared/ffmpeg'
5e47f6ab
C
9import { VideoStudioEditionPayload, VideoStudioTask, VideoStudioTaskPayload } from '@shared/models'
10import { federateVideoIfNeeded } from './activitypub/videos'
11import { JobQueue } from './job-queue'
ab14f0e0 12import { VideoStudioTranscodingJobHandler } from './runners'
5e47f6ab
C
13import { createOptimizeOrMergeAudioJobs } from './transcoding/create-transcoding-job'
14import { getTranscodingJobPriority } from './transcoding/transcoding-priority'
15import { buildNewFile, removeHLSPlaylist, removeWebTorrentFile } from './video-file'
16import { VideoPathManager } from './video-path-manager'
c729caf6 17
ab14f0e0 18const lTags = loggerTagsFactory('video-studio')
5e47f6ab
C
19
20export function buildTaskFileFieldname (indice: number, fieldName = 'file') {
c729caf6
C
21 return `tasks[${indice}][options][${fieldName}]`
22}
23
5e47f6ab 24export function getTaskFileFromReq (files: Express.Multer.File[], indice: number, fieldName = 'file') {
c729caf6
C
25 return files.find(f => f.fieldname === buildTaskFileFieldname(indice, fieldName))
26}
27
5e47f6ab
C
28export function getStudioTaskFilePath (filename: string) {
29 return join(CONFIG.STORAGE.TMP_PERSISTENT_DIR, filename)
30}
31
32export async function safeCleanupStudioTMPFiles (tasks: VideoStudioTaskPayload[]) {
33 logger.info('Removing studio task files', { tasks, ...lTags() })
34
35 for (const task of tasks) {
6a490560
C
36 try {
37 if (task.name === 'add-intro' || task.name === 'add-outro') {
38 await remove(task.options.file)
39 } else if (task.name === 'add-watermark') {
40 await remove(task.options.file)
41 }
42 } catch (err) {
43 logger.error('Cannot remove studio file', { err })
44 }
45 }
46}
47
5e47f6ab
C
48// ---------------------------------------------------------------------------
49
50export async function approximateIntroOutroAdditionalSize (
51 video: MVideoFullLight,
52 tasks: VideoStudioTask[],
53 fileFinder: (i: number) => string
54) {
c729caf6
C
55 let additionalDuration = 0
56
57 for (let i = 0; i < tasks.length; i++) {
58 const task = tasks[i]
59
60 if (task.name !== 'add-intro' && task.name !== 'add-outro') continue
61
62 const filePath = fileFinder(i)
63 additionalDuration += await getVideoStreamDuration(filePath)
64 }
65
66 return (video.getMaxQualityFile().size / video.duration) * additionalDuration
67}
68
5e47f6ab
C
69// ---------------------------------------------------------------------------
70
71export async function createVideoStudioJob (options: {
72 video: MVideo
73 user: MUser
74 payload: VideoStudioEditionPayload
75}) {
76 const { video, user, payload } = options
77
78 const priority = await getTranscodingJobPriority({ user, type: 'studio', fallback: 0 })
79
80 if (CONFIG.VIDEO_STUDIO.REMOTE_RUNNERS.ENABLED) {
ab14f0e0 81 await new VideoStudioTranscodingJobHandler().create({ video, tasks: payload.tasks, priority })
5e47f6ab
C
82 return
83 }
84
85 await JobQueue.Instance.createJob({ type: 'video-studio-edition', payload, priority })
86}
87
ab14f0e0 88export async function onVideoStudioEnded (options: {
5e47f6ab
C
89 editionResultPath: string
90 tasks: VideoStudioTaskPayload[]
91 video: MVideoFullLight
92}) {
93 const { video, tasks, editionResultPath } = options
94
95 const newFile = await buildNewFile({ path: editionResultPath, mode: 'web-video' })
96 newFile.videoId = video.id
97
98 const outputPath = VideoPathManager.Instance.getFSVideoFileOutputPath(video, newFile)
99 await move(editionResultPath, outputPath)
100
101 await safeCleanupStudioTMPFiles(tasks)
102
103 await createTorrentAndSetInfoHashFromPath(video, newFile, outputPath)
104 await removeAllFiles(video, newFile)
105
106 await newFile.save()
107
108 video.duration = await getVideoStreamDuration(outputPath)
109 await video.save()
110
111 await federateVideoIfNeeded(video, false, undefined)
112
113 const user = await UserModel.loadByVideoId(video.id)
114
115 await createOptimizeOrMergeAudioJobs({ video, videoFile: newFile, isNewVideo: false, user, videoFileAlreadyLocked: false })
116}
117
118// ---------------------------------------------------------------------------
119// Private
120// ---------------------------------------------------------------------------
121
122async function removeAllFiles (video: MVideoWithAllFiles, webTorrentFileException: MVideoFile) {
123 await removeHLSPlaylist(video)
124
125 for (const file of video.VideoFiles) {
126 if (file.id === webTorrentFileException.id) continue
127
128 await removeWebTorrentFile(video, file.id)
129 }
c729caf6 130}