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