]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/helpers/ffmpeg-utils.ts
Use source as target in translations
[github/Chocobozzz/PeerTube.git] / server / helpers / ffmpeg-utils.ts
CommitLineData
14d3270f 1import * as ffmpeg from 'fluent-ffmpeg'
09209296 2import { dirname, join } from 'path'
5ba49f26 3import { getTargetBitrate, getMaxBitrate, VideoResolution } from '../../shared/models/videos'
6dd9de95 4import { FFMPEG_NICE, VIDEO_TRANSCODING_FPS } from '../initializers/constants'
26670720 5import { processImage } from './image-utils'
6fdc553a 6import { logger } from './logger'
e5565833 7import { checkFFmpegEncoders } from '../initializers/checker-before-init'
6dd9de95
C
8import { readFile, remove, writeFile } from 'fs-extra'
9import { CONFIG } from '../initializers/config'
14d3270f 10
06215f15
C
11function computeResolutionsToTranscode (videoFileHeight: number) {
12 const resolutionsEnabled: number[] = []
13 const configResolutions = CONFIG.TRANSCODING.RESOLUTIONS
14
15 // Put in the order we want to proceed jobs
16 const resolutions = [
17 VideoResolution.H_480P,
18 VideoResolution.H_360P,
19 VideoResolution.H_720P,
20 VideoResolution.H_240P,
ad3405d0
C
21 VideoResolution.H_1080P,
22 VideoResolution.H_4K
06215f15
C
23 ]
24
25 for (const resolution of resolutions) {
26 if (configResolutions[ resolution + 'p' ] === true && videoFileHeight > resolution) {
27 resolutionsEnabled.push(resolution)
28 }
29 }
30
31 return resolutionsEnabled
32}
33
09209296 34async function getVideoFileSize (path: string) {
5ba49f26 35 const videoStream = await getVideoStreamFromFile(path)
056aa7f2
C
36
37 return {
09209296
C
38 width: videoStream.width,
39 height: videoStream.height
40 }
41}
42
43async function getVideoFileResolution (path: string) {
44 const size = await getVideoFileSize(path)
45
46 return {
47 videoFileResolution: Math.min(size.height, size.width),
48 isPortraitMode: size.height > size.width
056aa7f2 49 }
73c69591 50}
14d3270f 51
73c69591 52async function getVideoFileFPS (path: string) {
5ba49f26 53 const videoStream = await getVideoStreamFromFile(path)
73c69591 54
ef04ae20 55 for (const key of [ 'avg_frame_rate', 'r_frame_rate' ]) {
73c69591
C
56 const valuesText: string = videoStream[key]
57 if (!valuesText) continue
58
59 const [ frames, seconds ] = valuesText.split('/')
60 if (!frames || !seconds) continue
61
62 const result = parseInt(frames, 10) / parseInt(seconds, 10)
3a6f351b 63 if (result > 0) return Math.round(result)
73c69591
C
64 }
65
66 return 0
14d3270f
C
67}
68
edb4ffc7
FA
69async function getVideoFileBitrate (path: string) {
70 return new Promise<number>((res, rej) => {
71 ffmpeg.ffprobe(path, (err, metadata) => {
72 if (err) return rej(err)
73
74 return res(metadata.format.bit_rate)
75 })
76 })
77}
78
14d3270f
C
79function getDurationFromVideoFile (path: string) {
80 return new Promise<number>((res, rej) => {
81 ffmpeg.ffprobe(path, (err, metadata) => {
82 if (err) return rej(err)
83
84 return res(Math.floor(metadata.format.duration))
85 })
86 })
87}
88
26670720
C
89async function generateImageFromVideoFile (fromPath: string, folder: string, imageName: string, size: { width: number, height: number }) {
90 const pendingImageName = 'pending-' + imageName
91
14d3270f 92 const options = {
26670720 93 filename: pendingImageName,
14d3270f
C
94 count: 1,
95 folder
96 }
97
26670720 98 const pendingImagePath = join(folder, pendingImageName)
6fdc553a
C
99
100 try {
101 await new Promise<string>((res, rej) => {
7160878c 102 ffmpeg(fromPath, { niceness: FFMPEG_NICE.THUMBNAIL })
6fdc553a
C
103 .on('error', rej)
104 .on('end', () => res(imageName))
105 .thumbnail(options)
106 })
107
108 const destination = join(folder, imageName)
2fb5b3a5 109 await processImage(pendingImagePath, destination, size)
6fdc553a 110 } catch (err) {
d5b7d911 111 logger.error('Cannot generate image from video %s.', fromPath, { err })
6fdc553a
C
112
113 try {
62689b94 114 await remove(pendingImagePath)
6fdc553a 115 } catch (err) {
d5b7d911 116 logger.debug('Cannot remove pending image path after generation error.', { err })
6fdc553a
C
117 }
118 }
14d3270f
C
119}
120
536598cf
C
121type TranscodeOptionsType = 'hls' | 'quick-transcode' | 'video' | 'merge-audio'
122
123interface BaseTranscodeOptions {
124 type: TranscodeOptionsType
14d3270f
C
125 inputPath: string
126 outputPath: string
09209296 127 resolution: VideoResolution
056aa7f2 128 isPortraitMode?: boolean
536598cf 129}
09209296 130
536598cf
C
131interface HLSTranscodeOptions extends BaseTranscodeOptions {
132 type: 'hls'
133 hlsPlaylist: {
4c280004
C
134 videoFilename: string
135 }
14d3270f
C
136}
137
536598cf
C
138interface QuickTranscodeOptions extends BaseTranscodeOptions {
139 type: 'quick-transcode'
140}
141
142interface VideoTranscodeOptions extends BaseTranscodeOptions {
143 type: 'video'
144}
145
146interface MergeAudioTranscodeOptions extends BaseTranscodeOptions {
147 type: 'merge-audio'
148 audioPath: string
149}
150
151type TranscodeOptions = HLSTranscodeOptions | VideoTranscodeOptions | MergeAudioTranscodeOptions | QuickTranscodeOptions
152
14d3270f 153function transcode (options: TranscodeOptions) {
73c69591 154 return new Promise<void>(async (res, rej) => {
cdf4cb9e 155 try {
cdf4cb9e
C
156 let command = ffmpeg(options.inputPath, { niceness: FFMPEG_NICE.TRANSCODING })
157 .output(options.outputPath)
14aed608 158
536598cf
C
159 if (options.type === 'quick-transcode') {
160 command = await buildQuickTranscodeCommand(command)
161 } else if (options.type === 'hls') {
14aed608 162 command = await buildHLSCommand(command, options)
536598cf
C
163 } else if (options.type === 'merge-audio') {
164 command = await buildAudioMergeCommand(command, options)
14aed608
C
165 } else {
166 command = await buildx264Command(command, options)
167 }
7160878c 168
cdf4cb9e
C
169 if (CONFIG.TRANSCODING.THREADS > 0) {
170 // if we don't set any threads ffmpeg will chose automatically
171 command = command.outputOption('-threads ' + CONFIG.TRANSCODING.THREADS)
172 }
14d3270f 173
cdf4cb9e
C
174 command
175 .on('error', (err, stdout, stderr) => {
176 logger.error('Error in transcoding job.', { stdout, stderr })
177 return rej(err)
178 })
7f8f8bdb 179 .on('end', () => {
536598cf 180 return fixHLSPlaylistIfNeeded(options)
7f8f8bdb
C
181 .then(() => res())
182 .catch(err => rej(err))
183 })
cdf4cb9e
C
184 .run()
185 } catch (err) {
186 return rej(err)
187 }
14d3270f
C
188 })
189}
190
7ed2c1a4 191async function canDoQuickTranscode (path: string): Promise<boolean> {
5ba49f26
FA
192 // NOTE: This could be optimized by running ffprobe only once (but it runs fast anyway)
193 const videoStream = await getVideoStreamFromFile(path)
194 const parsedAudio = await audio.get(path)
195 const fps = await getVideoFileFPS(path)
196 const bitRate = await getVideoFileBitrate(path)
197 const resolution = await getVideoFileResolution(path)
198
199 // check video params
1600235a 200 if (videoStream[ 'codec_name' ] !== 'h264') return false
f6e0de3f 201 if (videoStream[ 'pix_fmt' ] !== 'yuv420p') return false
1600235a
C
202 if (fps < VIDEO_TRANSCODING_FPS.MIN || fps > VIDEO_TRANSCODING_FPS.MAX) return false
203 if (bitRate > getMaxBitrate(resolution.videoFileResolution, fps, VIDEO_TRANSCODING_FPS)) return false
5ba49f26
FA
204
205 // check audio params (if audio stream exists)
206 if (parsedAudio.audioStream) {
1600235a
C
207 if (parsedAudio.audioStream[ 'codec_name' ] !== 'aac') return false
208
5ba49f26 209 const maxAudioBitrate = audio.bitrate[ 'aac' ](parsedAudio.audioStream[ 'bit_rate' ])
1600235a 210 if (maxAudioBitrate !== -1 && parsedAudio.audioStream[ 'bit_rate' ] > maxAudioBitrate) return false
5ba49f26 211 }
7ed2c1a4 212
5ba49f26
FA
213 return true
214}
215
14d3270f
C
216// ---------------------------------------------------------------------------
217
218export {
09209296 219 getVideoFileSize,
056aa7f2 220 getVideoFileResolution,
14d3270f
C
221 getDurationFromVideoFile,
222 generateImageFromVideoFile,
536598cf
C
223 TranscodeOptions,
224 TranscodeOptionsType,
73c69591 225 transcode,
7160878c 226 getVideoFileFPS,
06215f15 227 computeResolutionsToTranscode,
edb4ffc7 228 audio,
5ba49f26
FA
229 getVideoFileBitrate,
230 canDoQuickTranscode
73c69591
C
231}
232
233// ---------------------------------------------------------------------------
234
536598cf 235async function buildx264Command (command: ffmpeg.FfmpegCommand, options: VideoTranscodeOptions) {
14aed608
C
236 let fps = await getVideoFileFPS(options.inputPath)
237 // On small/medium resolutions, limit FPS
238 if (
239 options.resolution !== undefined &&
240 options.resolution < VIDEO_TRANSCODING_FPS.KEEP_ORIGIN_FPS_RESOLUTION_MIN &&
241 fps > VIDEO_TRANSCODING_FPS.AVERAGE
242 ) {
243 fps = VIDEO_TRANSCODING_FPS.AVERAGE
244 }
245
536598cf 246 command = await presetH264(command, options.inputPath, options.resolution, fps)
14aed608
C
247
248 if (options.resolution !== undefined) {
249 // '?x720' or '720x?' for example
250 const size = options.isPortraitMode === true ? `${options.resolution}x?` : `?x${options.resolution}`
251 command = command.size(size)
252 }
253
254 if (fps) {
255 // Hard FPS limits
256 if (fps > VIDEO_TRANSCODING_FPS.MAX) fps = VIDEO_TRANSCODING_FPS.MAX
257 else if (fps < VIDEO_TRANSCODING_FPS.MIN) fps = VIDEO_TRANSCODING_FPS.MIN
258
259 command = command.withFPS(fps)
260 }
261
262 return command
263}
264
536598cf
C
265async function buildAudioMergeCommand (command: ffmpeg.FfmpegCommand, options: MergeAudioTranscodeOptions) {
266 command = command.loop(undefined)
267
268 command = await presetH264VeryFast(command, options.audioPath, options.resolution)
269
270 command = command.input(options.audioPath)
271 .videoFilter('scale=trunc(iw/2)*2:trunc(ih/2)*2') // Avoid "height not divisible by 2" error
272 .outputOption('-tune stillimage')
273 .outputOption('-shortest')
274
275 return command
276}
277
278async function buildQuickTranscodeCommand (command: ffmpeg.FfmpegCommand) {
279 command = await presetCopy(command)
280
281 command = command.outputOption('-map_metadata -1') // strip all metadata
282 .outputOption('-movflags faststart')
283
284 return command
285}
286
287async function buildHLSCommand (command: ffmpeg.FfmpegCommand, options: HLSTranscodeOptions) {
14aed608
C
288 const videoPath = getHLSVideoPath(options)
289
290 command = await presetCopy(command)
291
292 command = command.outputOption('-hls_time 4')
293 .outputOption('-hls_list_size 0')
294 .outputOption('-hls_playlist_type vod')
295 .outputOption('-hls_segment_filename ' + videoPath)
296 .outputOption('-hls_segment_type fmp4')
297 .outputOption('-f hls')
298 .outputOption('-hls_flags single_file')
299
300 return command
301}
302
536598cf 303function getHLSVideoPath (options: HLSTranscodeOptions) {
7f8f8bdb
C
304 return `${dirname(options.outputPath)}/${options.hlsPlaylist.videoFilename}`
305}
306
536598cf
C
307async function fixHLSPlaylistIfNeeded (options: TranscodeOptions) {
308 if (options.type !== 'hls') return
7f8f8bdb 309
7f8f8bdb
C
310 const fileContent = await readFile(options.outputPath)
311
312 const videoFileName = options.hlsPlaylist.videoFilename
313 const videoFilePath = getHLSVideoPath(options)
314
536598cf 315 // Fix wrong mapping with some ffmpeg versions
7f8f8bdb
C
316 const newContent = fileContent.toString()
317 .replace(`#EXT-X-MAP:URI="${videoFilePath}",`, `#EXT-X-MAP:URI="${videoFileName}",`)
318
319 await writeFile(options.outputPath, newContent)
320}
321
5ba49f26 322function getVideoStreamFromFile (path: string) {
73c69591
C
323 return new Promise<any>((res, rej) => {
324 ffmpeg.ffprobe(path, (err, metadata) => {
325 if (err) return rej(err)
326
327 const videoStream = metadata.streams.find(s => s.codec_type === 'video')
9ecac97b 328 if (!videoStream) return rej(new Error('Cannot find video stream of ' + path))
73c69591
C
329
330 return res(videoStream)
331 })
332 })
14d3270f 333}
4176e227
RK
334
335/**
336 * A slightly customised version of the 'veryfast' x264 preset
337 *
338 * The veryfast preset is right in the sweet spot of performance
339 * and quality. Superfast and ultrafast will give you better
340 * performance, but then quality is noticeably worse.
341 */
536598cf
C
342async function presetH264VeryFast (command: ffmpeg.FfmpegCommand, input: string, resolution: VideoResolution, fps?: number) {
343 let localCommand = await presetH264(command, input, resolution, fps)
344
cdf4cb9e 345 localCommand = localCommand.outputOption('-preset:v veryfast')
536598cf 346
4176e227
RK
347 /*
348 MAIN reference: https://slhck.info/video/2017/03/01/rate-control.html
349 Our target situation is closer to a livestream than a stream,
350 since we want to reduce as much a possible the encoding burden,
536598cf 351 although not to the point of a livestream where there is a hard
4176e227 352 constraint on the frames per second to be encoded.
4176e227 353 */
cdf4cb9e
C
354
355 return localCommand
4176e227
RK
356}
357
4176e227
RK
358/**
359 * A toolbox to play with audio
360 */
361namespace audio {
536598cf 362 export const get = (option: string) => {
4176e227
RK
363 // without position, ffprobe considers the last input only
364 // we make it consider the first input only
4a5ccac5 365 // if you pass a file path to pos, then ffprobe acts on that file directly
7160878c 366 return new Promise<{ absolutePath: string, audioStream?: any }>((res, rej) => {
cdf4cb9e
C
367
368 function parseFfprobe (err: any, data: ffmpeg.FfprobeData) {
7160878c
RK
369 if (err) return rej(err)
370
371 if ('streams' in data) {
cdf4cb9e 372 const audioStream = data.streams.find(stream => stream['codec_type'] === 'audio')
7160878c
RK
373 if (audioStream) {
374 return res({
375 absolutePath: data.format.filename,
376 audioStream
377 })
4a5ccac5 378 }
7160878c 379 }
cdf4cb9e 380
7160878c 381 return res({ absolutePath: data.format.filename })
cdf4cb9e
C
382 }
383
536598cf 384 return ffmpeg.ffprobe(option, parseFfprobe)
4a5ccac5 385 })
4176e227
RK
386 }
387
388 export namespace bitrate {
eed24d26 389 const baseKbitrate = 384
4176e227 390
9b474844 391 const toBits = (kbits: number) => kbits * 8000
4176e227
RK
392
393 export const aac = (bitrate: number): number => {
394 switch (true) {
9b474844
C
395 case bitrate > toBits(baseKbitrate):
396 return baseKbitrate
397
398 default:
399 return -1 // we interpret it as a signal to copy the audio stream as is
4176e227
RK
400 }
401 }
402
403 export const mp3 = (bitrate: number): number => {
7160878c
RK
404 /*
405 a 192kbit/sec mp3 doesn't hold as much information as a 192kbit/sec aac.
406 That's why, when using aac, we can go to lower kbit/sec. The equivalences
407 made here are not made to be accurate, especially with good mp3 encoders.
408 */
4176e227 409 switch (true) {
9b474844
C
410 case bitrate <= toBits(192):
411 return 128
412
413 case bitrate <= toBits(384):
414 return 256
415
416 default:
417 return baseKbitrate
4176e227
RK
418 }
419 }
420 }
421}
422
423/**
424 * Standard profile, with variable bitrate audio and faststart.
425 *
426 * As for the audio, quality '5' is the highest and ensures 96-112kbps/channel
427 * See https://trac.ffmpeg.org/wiki/Encode/AAC#fdk_vbr
428 */
536598cf 429async function presetH264 (command: ffmpeg.FfmpegCommand, input: string, resolution: VideoResolution, fps?: number) {
cdf4cb9e 430 let localCommand = command
4176e227
RK
431 .format('mp4')
432 .videoCodec('libx264')
433 .outputOption('-level 3.1') // 3.1 is the minimal ressource allocation for our highest supported resolution
434 .outputOption('-b_strategy 1') // NOTE: b-strategy 1 - heuristic algorythm, 16 is optimal B-frames for it
435 .outputOption('-bf 16') // NOTE: Why 16: https://github.com/Chocobozzz/PeerTube/pull/774. b-strategy 2 -> B-frames<16
408f50eb 436 .outputOption('-pix_fmt yuv420p') // allows import of source material with incompatible pixel formats (e.g. MJPEG video)
4a5ccac5 437 .outputOption('-map_metadata -1') // strip all metadata
4176e227 438 .outputOption('-movflags faststart')
4176e227 439
536598cf 440 const parsedAudio = await audio.get(input)
4176e227 441
cdf4cb9e
C
442 if (!parsedAudio.audioStream) {
443 localCommand = localCommand.noAudio()
444 } else if ((await checkFFmpegEncoders()).get('libfdk_aac')) { // we favor VBR, if a good AAC encoder is available
445 localCommand = localCommand
4176e227
RK
446 .audioCodec('libfdk_aac')
447 .audioQuality(5)
cdf4cb9e 448 } else {
536598cf 449 // we try to reduce the ceiling bitrate by making rough matches of bitrates
cdf4cb9e 450 // of course this is far from perfect, but it might save some space in the end
536598cf
C
451 localCommand = localCommand.audioCodec('aac')
452
cdf4cb9e 453 const audioCodecName = parsedAudio.audioStream[ 'codec_name' ]
cdf4cb9e 454
536598cf
C
455 if (audio.bitrate[ audioCodecName ]) {
456 const bitrate = audio.bitrate[ audioCodecName ](parsedAudio.audioStream[ 'bit_rate' ])
64e3e270 457 if (bitrate !== undefined && bitrate !== -1) localCommand = localCommand.audioBitrate(bitrate)
cdf4cb9e 458 }
4176e227
RK
459 }
460
536598cf
C
461 if (fps) {
462 // Constrained Encoding (VBV)
463 // https://slhck.info/video/2017/03/01/rate-control.html
464 // https://trac.ffmpeg.org/wiki/Limiting%20the%20output%20bitrate
465 const targetBitrate = getTargetBitrate(resolution, fps, VIDEO_TRANSCODING_FPS)
466 localCommand = localCommand.outputOptions([ `-maxrate ${targetBitrate}`, `-bufsize ${targetBitrate * 2}` ])
467
468 // Keyframe interval of 2 seconds for faster seeking and resolution switching.
469 // https://streaminglearningcenter.com/blogs/whats-the-right-keyframe-interval.html
470 // https://superuser.com/a/908325
471 localCommand = localCommand.outputOption(`-g ${fps * 2}`)
472 }
bcf21a37 473
cdf4cb9e 474 return localCommand
4176e227 475}
14aed608
C
476
477async function presetCopy (command: ffmpeg.FfmpegCommand): Promise<ffmpeg.FfmpegCommand> {
478 return command
479 .format('mp4')
480 .videoCodec('copy')
481 .audioCodec('copy')
482}