]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame_incremental - server/lib/video-transcoding.ts
Add audio-only option to transcoders and player
[github/Chocobozzz/PeerTube.git] / server / lib / video-transcoding.ts
... / ...
CommitLineData
1import { HLS_STREAMING_PLAYLIST_DIRECTORY, P2P_MEDIA_LOADER_PEER_VERSION, WEBSERVER } from '../initializers/constants'
2import { basename, extname as extnameUtil, join } from 'path'
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'
12import { logger } from '../helpers/logger'
13import { VideoResolution } from '../../shared/models/videos'
14import { VideoFileModel } from '../models/video/video-file'
15import { updateMasterHLSPlaylist, updateSha256Segments } from './hls'
16import { VideoStreamingPlaylistModel } from '../models/video/video-streaming-playlist'
17import { VideoStreamingPlaylistType } from '../../shared/models/videos/video-streaming-playlist.type'
18import { CONFIG } from '../initializers/config'
19import { MStreamingPlaylistFilesVideo, MVideoFile, MVideoWithAllFiles, MVideoWithFile } from '@server/typings/models'
20import { createTorrentAndSetInfoHash } from '@server/helpers/webtorrent'
21import { generateVideoStreamingPlaylistName, getVideoFilename, getVideoFilePath } from './video-paths'
22
23/**
24 * Optimize the original video file and replace it. The resolution is not changed.
25 */
26async function optimizeOriginalVideofile (video: MVideoWithFile, inputVideoFileArg?: MVideoFile) {
27 const transcodeDirectory = CONFIG.STORAGE.TMP_DIR
28 const newExtname = '.mp4'
29
30 const inputVideoFile = inputVideoFileArg || video.getMaxQualityFile()
31 const videoInputPath = getVideoFilePath(video, inputVideoFile)
32 const videoTranscodedPath = join(transcodeDirectory, video.id + '-transcoded' + newExtname)
33
34 const transcodeType: TranscodeOptionsType = await canDoQuickTranscode(videoInputPath)
35 ? 'quick-transcode'
36 : 'video'
37
38 const transcodeOptions: TranscodeOptions = {
39 type: transcodeType,
40 inputPath: videoInputPath,
41 outputPath: videoTranscodedPath,
42 resolution: inputVideoFile.resolution
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
52 inputVideoFile.extname = newExtname
53
54 const videoOutputPath = getVideoFilePath(video, inputVideoFile)
55
56 await onVideoFileTranscoding(video, inputVideoFile, videoTranscodedPath, videoOutputPath)
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
65/**
66 * Transcode the original video file to a lower resolution.
67 */
68async function transcodeNewResolution (video: MVideoWithFile, resolution: VideoResolution, isPortrait: boolean) {
69 const transcodeDirectory = CONFIG.STORAGE.TMP_DIR
70 const extname = '.mp4'
71
72 // We are sure it's x264 in mp4 because optimizeOriginalVideofile was already executed
73 const videoInputPath = getVideoFilePath(video, video.getMaxQualityFile())
74
75 const newVideoFile = new VideoFileModel({
76 resolution,
77 extname,
78 size: 0,
79 videoId: video.id
80 })
81 const videoOutputPath = getVideoFilePath(video, newVideoFile)
82 const videoTranscodedPath = join(transcodeDirectory, getVideoFilename(video, newVideoFile))
83
84 const transcodeOptions = resolution === VideoResolution.H_NOVIDEO
85 ? {
86 type: 'split-audio' as 'split-audio',
87 inputPath: videoInputPath,
88 outputPath: videoTranscodedPath,
89 resolution,
90 }
91 : {
92 type: 'video' as 'video',
93 inputPath: videoInputPath,
94 outputPath: videoTranscodedPath,
95 resolution,
96 isPortraitMode: isPortrait
97 }
98
99 await transcode(transcodeOptions)
100
101 return onVideoFileTranscoding(video, newVideoFile, videoTranscodedPath, videoOutputPath)
102}
103
104/**
105 * Extract audio into a separate audio-only mp4.
106 */
107async function splitAudioFile (video: MVideoWithFile) {
108 const videosDirectory = CONFIG.STORAGE.VIDEOS_DIR
109 const transcodeDirectory = CONFIG.STORAGE.TMP_DIR
110 const extname = '.mp4'
111 const resolution = VideoResolution.H_NOVIDEO
112
113 // We are sure it's x264 in mp4 because optimizeOriginalVideofile was already executed
114 const videoInputPath = join(videosDirectory, video.getVideoFilename(video.getOriginalFile()))
115
116 const newVideoFile = new VideoFileModel({
117 resolution,
118 extname,
119 size: 0,
120 videoId: video.id
121 })
122 const videoOutputPath = join(CONFIG.STORAGE.VIDEOS_DIR, video.getVideoFilename(newVideoFile))
123 const videoTranscodedPath = join(transcodeDirectory, video.getVideoFilename(newVideoFile))
124
125 const transcodeOptions = {
126 type: 'split-audio' as 'split-audio',
127 inputPath: videoInputPath,
128 outputPath: videoTranscodedPath,
129 resolution
130 }
131
132 await transcode(transcodeOptions)
133
134 return onVideoFileTranscoding(video, newVideoFile, videoTranscodedPath, videoOutputPath)
135}
136
137async function mergeAudioVideofile (video: MVideoWithAllFiles, resolution: VideoResolution) {
138 const transcodeDirectory = CONFIG.STORAGE.TMP_DIR
139 const newExtname = '.mp4'
140
141 const inputVideoFile = video.getMaxQualityFile()
142
143 const audioInputPath = getVideoFilePath(video, inputVideoFile)
144 const videoTranscodedPath = join(transcodeDirectory, video.id + '-transcoded' + newExtname)
145
146 // If the user updates the video preview during transcoding
147 const previewPath = video.getPreview().getPath()
148 const tmpPreviewPath = join(CONFIG.STORAGE.TMP_DIR, basename(previewPath))
149 await copyFile(previewPath, tmpPreviewPath)
150
151 const transcodeOptions = {
152 type: 'merge-audio' as 'merge-audio',
153 inputPath: tmpPreviewPath,
154 outputPath: videoTranscodedPath,
155 audioPath: audioInputPath,
156 resolution
157 }
158
159 try {
160 await transcode(transcodeOptions)
161
162 await remove(audioInputPath)
163 await remove(tmpPreviewPath)
164 } catch (err) {
165 await remove(tmpPreviewPath)
166 throw err
167 }
168
169 // Important to do this before getVideoFilename() to take in account the new file extension
170 inputVideoFile.extname = newExtname
171
172 const videoOutputPath = getVideoFilePath(video, inputVideoFile)
173 // ffmpeg generated a new video file, so update the video duration
174 // See https://trac.ffmpeg.org/ticket/5456
175 video.duration = await getDurationFromVideoFile(videoTranscodedPath)
176 await video.save()
177
178 return onVideoFileTranscoding(video, inputVideoFile, videoTranscodedPath, videoOutputPath)
179}
180
181async function generateHlsPlaylist (video: MVideoWithFile, resolution: VideoResolution, copyCodecs: boolean, isPortraitMode: boolean) {
182 const baseHlsDirectory = join(HLS_STREAMING_PLAYLIST_DIRECTORY, video.uuid)
183 await ensureDir(join(HLS_STREAMING_PLAYLIST_DIRECTORY, video.uuid))
184
185 const videoFileInput = copyCodecs
186 ? video.getWebTorrentFile(resolution)
187 : video.getMaxQualityFile()
188
189 const videoOrStreamingPlaylist = videoFileInput.getVideoOrStreamingPlaylist()
190 const videoInputPath = getVideoFilePath(videoOrStreamingPlaylist, videoFileInput)
191
192 const outputPath = join(baseHlsDirectory, VideoStreamingPlaylistModel.getHlsPlaylistFilename(resolution))
193 const videoFilename = generateVideoStreamingPlaylistName(video.uuid, resolution)
194
195 const transcodeOptions = {
196 type: 'hls' as 'hls',
197 inputPath: videoInputPath,
198 outputPath,
199 resolution,
200 copyCodecs,
201 isPortraitMode,
202
203 hlsPlaylist: {
204 videoFilename
205 }
206 }
207
208 logger.debug('Will run transcode.', { transcodeOptions })
209
210 await transcode(transcodeOptions)
211
212 const playlistUrl = WEBSERVER.URL + VideoStreamingPlaylistModel.getHlsMasterPlaylistStaticPath(video.uuid)
213
214 const [ videoStreamingPlaylist ] = await VideoStreamingPlaylistModel.upsert({
215 videoId: video.id,
216 playlistUrl,
217 segmentsSha256Url: WEBSERVER.URL + VideoStreamingPlaylistModel.getHlsSha256SegmentsStaticPath(video.uuid),
218 p2pMediaLoaderInfohashes: VideoStreamingPlaylistModel.buildP2PMediaLoaderInfoHashes(playlistUrl, video.VideoFiles),
219 p2pMediaLoaderPeerVersion: P2P_MEDIA_LOADER_PEER_VERSION,
220
221 type: VideoStreamingPlaylistType.HLS
222 }, { returning: true }) as [ MStreamingPlaylistFilesVideo, boolean ]
223 videoStreamingPlaylist.Video = video
224
225 const newVideoFile = new VideoFileModel({
226 resolution,
227 extname: extnameUtil(videoFilename),
228 size: 0,
229 fps: -1,
230 videoStreamingPlaylistId: videoStreamingPlaylist.id
231 })
232
233 const videoFilePath = getVideoFilePath(videoStreamingPlaylist, newVideoFile)
234 const stats = await stat(videoFilePath)
235
236 newVideoFile.size = stats.size
237 newVideoFile.fps = await getVideoFileFPS(videoFilePath)
238
239 await createTorrentAndSetInfoHash(videoStreamingPlaylist, newVideoFile)
240
241 const updatedVideoFile = await newVideoFile.save()
242
243 videoStreamingPlaylist.VideoFiles = await videoStreamingPlaylist.$get('VideoFiles') as VideoFileModel[]
244 videoStreamingPlaylist.VideoFiles.push(updatedVideoFile)
245
246 video.setHLSPlaylist(videoStreamingPlaylist)
247
248 await updateMasterHLSPlaylist(video)
249 await updateSha256Segments(video)
250
251 return video
252}
253
254// ---------------------------------------------------------------------------
255
256export {
257 generateHlsPlaylist,
258 optimizeOriginalVideofile,
259 transcodeNewResolution,
260 mergeAudioVideofile
261}
262
263// ---------------------------------------------------------------------------
264
265async function onVideoFileTranscoding (video: MVideoWithFile, videoFile: MVideoFile, transcodingPath: string, outputPath: string) {
266 const stats = await stat(transcodingPath)
267 const fps = await getVideoFileFPS(transcodingPath)
268
269 await move(transcodingPath, outputPath)
270
271 videoFile.size = stats.size
272 videoFile.fps = fps
273
274 await createTorrentAndSetInfoHash(video, videoFile)
275
276 const updatedVideoFile = await videoFile.save()
277
278 // Add it if this is a new created file
279 if (video.VideoFiles.some(f => f.id === videoFile.id) === false) {
280 video.VideoFiles.push(updatedVideoFile)
281 }
282
283 return video
284}