]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/lib/video-transcoding.ts
Add ability to disable webtorrent
[github/Chocobozzz/PeerTube.git] / server / lib / video-transcoding.ts
CommitLineData
7ed2c1a4 1import { HLS_STREAMING_PLAYLIST_DIRECTORY, P2P_MEDIA_LOADER_PEER_VERSION, WEBSERVER } from '../initializers/constants'
d7a25329 2import { basename, extname as extnameUtil, join } from 'path'
eba06469
C
3import {
4 canDoQuickTranscode,
5 getDurationFromVideoFile,
6 getVideoFileFPS,
7 transcode,
8 TranscodeOptions,
9 TranscodeOptionsType
10} from '../helpers/ffmpeg-utils'
11import { copyFile, ensureDir, move, remove, stat } from 'fs-extra'
098eb377
C
12import { logger } from '../helpers/logger'
13import { VideoResolution } from '../../shared/models/videos'
14import { VideoFileModel } from '../models/video/video-file'
09209296
C
15import { updateMasterHLSPlaylist, updateSha256Segments } from './hls'
16import { VideoStreamingPlaylistModel } from '../models/video/video-streaming-playlist'
17import { VideoStreamingPlaylistType } from '../../shared/models/videos/video-streaming-playlist.type'
6dd9de95 18import { CONFIG } from '../initializers/config'
d7a25329
C
19import { MStreamingPlaylistFilesVideo, MVideoFile, MVideoWithAllFiles, MVideoWithFile } from '@server/typings/models'
20import { createTorrentAndSetInfoHash } from '@server/helpers/webtorrent'
21import { generateVideoStreamingPlaylistName, getVideoFilename, getVideoFilePath } from './video-paths'
098eb377 22
658a47ab
FA
23/**
24 * Optimize the original video file and replace it. The resolution is not changed.
25 */
d7a25329 26async function optimizeOriginalVideofile (video: MVideoWithFile, inputVideoFileArg?: MVideoFile) {
2fbd5e25 27 const transcodeDirectory = CONFIG.STORAGE.TMP_DIR
098eb377 28 const newExtname = '.mp4'
9f1ddd24 29
d7a25329
C
30 const inputVideoFile = inputVideoFileArg || video.getMaxQualityFile()
31 const videoInputPath = getVideoFilePath(video, inputVideoFile)
2fbd5e25 32 const videoTranscodedPath = join(transcodeDirectory, video.id + '-transcoded' + newExtname)
098eb377 33
536598cf
C
34 const transcodeType: TranscodeOptionsType = await canDoQuickTranscode(videoInputPath)
35 ? 'quick-transcode'
36 : 'video'
5ba49f26 37
536598cf 38 const transcodeOptions: TranscodeOptions = {
d7a25329 39 type: transcodeType,
098eb377 40 inputPath: videoInputPath,
09209296 41 outputPath: videoTranscodedPath,
536598cf 42 resolution: inputVideoFile.resolution
098eb377
C
43 }
44
45 // Could be very long!
46 await transcode(transcodeOptions)
47
48 try {
49 await remove(videoInputPath)
50
51 // Important to do this before getVideoFilename() to take in account the new file extension
536598cf 52 inputVideoFile.extname = newExtname
2fbd5e25 53
d7a25329 54 const videoOutputPath = getVideoFilePath(video, inputVideoFile)
098eb377 55
536598cf 56 await onVideoFileTranscoding(video, inputVideoFile, videoTranscodedPath, videoOutputPath)
098eb377
C
57 } catch (err) {
58 // Auto destruction...
59 video.destroy().catch(err => logger.error('Cannot destruct video after transcoding failure.', { err }))
60
61 throw err
62 }
63}
64
658a47ab
FA
65/**
66 * Transcode the original video file to a lower resolution.
67 */
d7a25329 68async function transcodeNewResolution (video: MVideoWithFile, resolution: VideoResolution, isPortrait: boolean) {
2fbd5e25 69 const transcodeDirectory = CONFIG.STORAGE.TMP_DIR
098eb377
C
70 const extname = '.mp4'
71
72 // We are sure it's x264 in mp4 because optimizeOriginalVideofile was already executed
d7a25329 73 const videoInputPath = getVideoFilePath(video, video.getMaxQualityFile())
098eb377
C
74
75 const newVideoFile = new VideoFileModel({
76 resolution,
77 extname,
78 size: 0,
79 videoId: video.id
80 })
d7a25329
C
81 const videoOutputPath = getVideoFilePath(video, newVideoFile)
82 const videoTranscodedPath = join(transcodeDirectory, getVideoFilename(video, newVideoFile))
098eb377
C
83
84 const transcodeOptions = {
536598cf 85 type: 'video' as 'video',
098eb377 86 inputPath: videoInputPath,
2fbd5e25 87 outputPath: videoTranscodedPath,
098eb377 88 resolution,
09209296 89 isPortraitMode: isPortrait
098eb377
C
90 }
91
92 await transcode(transcodeOptions)
93
536598cf
C
94 return onVideoFileTranscoding(video, newVideoFile, videoTranscodedPath, videoOutputPath)
95}
96
d7a25329 97async function mergeAudioVideofile (video: MVideoWithAllFiles, resolution: VideoResolution) {
536598cf
C
98 const transcodeDirectory = CONFIG.STORAGE.TMP_DIR
99 const newExtname = '.mp4'
100
d7a25329 101 const inputVideoFile = video.getMaxQualityFile()
2fbd5e25 102
d7a25329 103 const audioInputPath = getVideoFilePath(video, inputVideoFile)
536598cf 104 const videoTranscodedPath = join(transcodeDirectory, video.id + '-transcoded' + newExtname)
098eb377 105
eba06469
C
106 // If the user updates the video preview during transcoding
107 const previewPath = video.getPreview().getPath()
108 const tmpPreviewPath = join(CONFIG.STORAGE.TMP_DIR, basename(previewPath))
109 await copyFile(previewPath, tmpPreviewPath)
110
536598cf
C
111 const transcodeOptions = {
112 type: 'merge-audio' as 'merge-audio',
eba06469 113 inputPath: tmpPreviewPath,
536598cf
C
114 outputPath: videoTranscodedPath,
115 audioPath: audioInputPath,
116 resolution
117 }
098eb377 118
eba06469
C
119 try {
120 await transcode(transcodeOptions)
098eb377 121
eba06469
C
122 await remove(audioInputPath)
123 await remove(tmpPreviewPath)
124 } catch (err) {
125 await remove(tmpPreviewPath)
126 throw err
127 }
098eb377 128
536598cf
C
129 // Important to do this before getVideoFilename() to take in account the new file extension
130 inputVideoFile.extname = newExtname
131
d7a25329 132 const videoOutputPath = getVideoFilePath(video, inputVideoFile)
eba06469
C
133 // ffmpeg generated a new video file, so update the video duration
134 // See https://trac.ffmpeg.org/ticket/5456
135 video.duration = await getDurationFromVideoFile(videoTranscodedPath)
136 await video.save()
536598cf
C
137
138 return onVideoFileTranscoding(video, inputVideoFile, videoTranscodedPath, videoOutputPath)
098eb377
C
139}
140
d7a25329 141async function generateHlsPlaylist (video: MVideoWithFile, resolution: VideoResolution, copyCodecs: boolean, isPortraitMode: boolean) {
9c6ca37f
C
142 const baseHlsDirectory = join(HLS_STREAMING_PLAYLIST_DIRECTORY, video.uuid)
143 await ensureDir(join(HLS_STREAMING_PLAYLIST_DIRECTORY, video.uuid))
09209296 144
d7a25329
C
145 const videoFileInput = copyCodecs
146 ? video.getWebTorrentFile(resolution)
147 : video.getMaxQualityFile()
148
149 const videoOrStreamingPlaylist = videoFileInput.getVideoOrStreamingPlaylist()
150 const videoInputPath = getVideoFilePath(videoOrStreamingPlaylist, videoFileInput)
151
09209296 152 const outputPath = join(baseHlsDirectory, VideoStreamingPlaylistModel.getHlsPlaylistFilename(resolution))
d7a25329 153 const videoFilename = generateVideoStreamingPlaylistName(video.uuid, resolution)
09209296
C
154
155 const transcodeOptions = {
536598cf 156 type: 'hls' as 'hls',
09209296
C
157 inputPath: videoInputPath,
158 outputPath,
159 resolution,
d7a25329 160 copyCodecs,
09209296 161 isPortraitMode,
4c280004
C
162
163 hlsPlaylist: {
d7a25329 164 videoFilename
4c280004 165 }
09209296
C
166 }
167
d7a25329 168 logger.debug('Will run transcode.', { transcodeOptions })
09209296 169
d7a25329 170 await transcode(transcodeOptions)
09209296 171
6dd9de95 172 const playlistUrl = WEBSERVER.URL + VideoStreamingPlaylistModel.getHlsMasterPlaylistStaticPath(video.uuid)
09209296 173
d7a25329 174 const [ videoStreamingPlaylist ] = await VideoStreamingPlaylistModel.upsert({
09209296
C
175 videoId: video.id,
176 playlistUrl,
6dd9de95 177 segmentsSha256Url: WEBSERVER.URL + VideoStreamingPlaylistModel.getHlsSha256SegmentsStaticPath(video.uuid),
09209296 178 p2pMediaLoaderInfohashes: VideoStreamingPlaylistModel.buildP2PMediaLoaderInfoHashes(playlistUrl, video.VideoFiles),
594d0c6a 179 p2pMediaLoaderPeerVersion: P2P_MEDIA_LOADER_PEER_VERSION,
09209296
C
180
181 type: VideoStreamingPlaylistType.HLS
d7a25329
C
182 }, { returning: true }) as [ MStreamingPlaylistFilesVideo, boolean ]
183 videoStreamingPlaylist.Video = video
184
185 const newVideoFile = new VideoFileModel({
186 resolution,
187 extname: extnameUtil(videoFilename),
188 size: 0,
189 fps: -1,
190 videoStreamingPlaylistId: videoStreamingPlaylist.id
09209296 191 })
d7a25329
C
192
193 const videoFilePath = getVideoFilePath(videoStreamingPlaylist, newVideoFile)
194 const stats = await stat(videoFilePath)
195
196 newVideoFile.size = stats.size
197 newVideoFile.fps = await getVideoFileFPS(videoFilePath)
198
199 await createTorrentAndSetInfoHash(videoStreamingPlaylist, newVideoFile)
200
201 const updatedVideoFile = await newVideoFile.save()
202
203 videoStreamingPlaylist.VideoFiles = await videoStreamingPlaylist.$get('VideoFiles') as VideoFileModel[]
204 videoStreamingPlaylist.VideoFiles.push(updatedVideoFile)
205
206 video.setHLSPlaylist(videoStreamingPlaylist)
207
208 await updateMasterHLSPlaylist(video)
209 await updateSha256Segments(video)
210
211 return video
09209296
C
212}
213
536598cf
C
214// ---------------------------------------------------------------------------
215
098eb377 216export {
09209296 217 generateHlsPlaylist,
d7a25329
C
218 optimizeOriginalVideofile,
219 transcodeNewResolution,
536598cf
C
220 mergeAudioVideofile
221}
222
223// ---------------------------------------------------------------------------
224
453e83ea 225async function onVideoFileTranscoding (video: MVideoWithFile, videoFile: MVideoFile, transcodingPath: string, outputPath: string) {
536598cf
C
226 const stats = await stat(transcodingPath)
227 const fps = await getVideoFileFPS(transcodingPath)
228
229 await move(transcodingPath, outputPath)
230
453e83ea
C
231 videoFile.size = stats.size
232 videoFile.fps = fps
536598cf 233
d7a25329 234 await createTorrentAndSetInfoHash(video, videoFile)
536598cf
C
235
236 const updatedVideoFile = await videoFile.save()
237
238 // Add it if this is a new created file
239 if (video.VideoFiles.some(f => f.id === videoFile.id) === false) {
240 video.VideoFiles.push(updatedVideoFile)
241 }
242
243 return video
098eb377 244}