2021-11-10 05:04:00 -05:00
|
|
|
|
2020-11-24 10:29:39 -05:00
|
|
|
import { logger } from '@server/helpers/logger'
|
2021-11-10 05:04:00 -05:00
|
|
|
import { getAverageBitrate, getMinLimitBitrate } from '@shared/core-utils'
|
|
|
|
import { AvailableEncoders, EncoderOptionsBuilder, EncoderOptionsBuilderParams, VideoResolution } from '../../../shared/models/videos'
|
2021-05-11 04:57:25 -04:00
|
|
|
import { buildStreamSuffix, resetSupportedEncoders } from '../../helpers/ffmpeg-utils'
|
2021-08-06 04:39:40 -04:00
|
|
|
import { canDoQuickAudioTranscode, ffprobePromise, getAudioStream, getMaxAudioBitrate } from '../../helpers/ffprobe-utils'
|
2020-11-24 08:08:23 -05:00
|
|
|
|
2020-11-24 10:29:39 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* Available encoders and profiles for the transcoding jobs
|
|
|
|
* These functions are used by ffmpeg-utils that will get the encoders and options depending on the chosen profile
|
|
|
|
*
|
2021-08-06 07:35:25 -04:00
|
|
|
* Resources:
|
|
|
|
* * https://slhck.info/video/2017/03/01/rate-control.html
|
|
|
|
* * https://trac.ffmpeg.org/wiki/Limiting%20the%20output%20bitrate
|
2020-11-24 10:29:39 -05:00
|
|
|
*/
|
2020-11-24 08:08:23 -05:00
|
|
|
|
2021-08-25 10:14:11 -04:00
|
|
|
const defaultX264VODOptionsBuilder: EncoderOptionsBuilder = (options: EncoderOptionsBuilderParams) => {
|
2021-11-10 05:04:00 -05:00
|
|
|
const { fps, inputRatio, inputBitrate, resolution } = options
|
2021-08-06 07:35:25 -04:00
|
|
|
if (!fps) return { outputOptions: [ ] }
|
2020-11-24 08:08:23 -05:00
|
|
|
|
2021-11-10 05:04:00 -05:00
|
|
|
const targetBitrate = getTargetBitrate({ inputBitrate, ratio: inputRatio, fps, resolution })
|
2020-11-24 08:08:23 -05:00
|
|
|
|
|
|
|
return {
|
|
|
|
outputOptions: [
|
2021-12-14 04:39:52 -05:00
|
|
|
...getCommonOutputOptions(targetBitrate),
|
|
|
|
|
|
|
|
`-r ${fps}`
|
2020-11-24 08:08:23 -05:00
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-08-25 10:14:11 -04:00
|
|
|
const defaultX264LiveOptionsBuilder: EncoderOptionsBuilder = (options: EncoderOptionsBuilderParams) => {
|
2021-11-10 05:04:00 -05:00
|
|
|
const { streamNum, fps, inputBitrate, inputRatio, resolution } = options
|
2021-08-06 07:35:25 -04:00
|
|
|
|
2021-11-10 05:04:00 -05:00
|
|
|
const targetBitrate = getTargetBitrate({ inputBitrate, ratio: inputRatio, fps, resolution })
|
2020-11-24 08:08:23 -05:00
|
|
|
|
|
|
|
return {
|
|
|
|
outputOptions: [
|
2021-12-14 04:39:52 -05:00
|
|
|
...getCommonOutputOptions(targetBitrate),
|
|
|
|
|
2020-11-26 05:29:50 -05:00
|
|
|
`${buildStreamSuffix('-r:v', streamNum)} ${fps}`,
|
2021-12-14 04:39:52 -05:00
|
|
|
`${buildStreamSuffix('-b:v', streamNum)} ${targetBitrate}`
|
2020-11-24 08:08:23 -05:00
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const defaultAACOptionsBuilder: EncoderOptionsBuilder = async ({ input, streamNum }) => {
|
2020-11-24 10:29:39 -05:00
|
|
|
const probe = await ffprobePromise(input)
|
|
|
|
|
|
|
|
if (await canDoQuickAudioTranscode(input, probe)) {
|
|
|
|
logger.debug('Copy audio stream %s by AAC encoder.', input)
|
2021-04-09 09:31:09 -04:00
|
|
|
return { copy: true, outputOptions: [ ] }
|
2020-11-24 10:29:39 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
const parsedAudio = await getAudioStream(input, probe)
|
2020-11-24 08:08:23 -05:00
|
|
|
|
|
|
|
// We try to reduce the ceiling bitrate by making rough matches of bitrates
|
|
|
|
// Of course this is far from perfect, but it might save some space in the end
|
|
|
|
|
|
|
|
const audioCodecName = parsedAudio.audioStream['codec_name']
|
|
|
|
|
|
|
|
const bitrate = getMaxAudioBitrate(audioCodecName, parsedAudio.bitrate)
|
|
|
|
|
2020-11-24 10:29:39 -05:00
|
|
|
logger.debug('Calculating audio bitrate of %s by AAC encoder.', input, { bitrate: parsedAudio.bitrate, audioCodecName })
|
|
|
|
|
2021-10-11 08:40:53 -04:00
|
|
|
if (bitrate !== -1) {
|
2021-04-09 09:31:09 -04:00
|
|
|
return { outputOptions: [ buildStreamSuffix('-b:a', streamNum), bitrate + 'k' ] }
|
2020-11-24 08:08:23 -05:00
|
|
|
}
|
|
|
|
|
2021-04-09 09:31:09 -04:00
|
|
|
return { outputOptions: [ ] }
|
2020-11-24 08:08:23 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
const defaultLibFDKAACVODOptionsBuilder: EncoderOptionsBuilder = ({ streamNum }) => {
|
2021-04-09 09:31:09 -04:00
|
|
|
return { outputOptions: [ buildStreamSuffix('-q:a', streamNum), '5' ] }
|
2020-11-24 08:08:23 -05:00
|
|
|
}
|
|
|
|
|
2021-01-28 03:37:26 -05:00
|
|
|
// Used to get and update available encoders
|
|
|
|
class VideoTranscodingProfilesManager {
|
|
|
|
private static instance: VideoTranscodingProfilesManager
|
|
|
|
|
|
|
|
// 1 === less priority
|
|
|
|
private readonly encodersPriorities = {
|
2021-01-28 09:52:44 -05:00
|
|
|
vod: this.buildDefaultEncodersPriorities(),
|
|
|
|
live: this.buildDefaultEncodersPriorities()
|
2021-01-28 03:37:26 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
private readonly availableEncoders = {
|
|
|
|
vod: {
|
|
|
|
libx264: {
|
|
|
|
default: defaultX264VODOptionsBuilder
|
|
|
|
},
|
|
|
|
aac: {
|
|
|
|
default: defaultAACOptionsBuilder
|
|
|
|
},
|
|
|
|
libfdk_aac: {
|
|
|
|
default: defaultLibFDKAACVODOptionsBuilder
|
|
|
|
}
|
2020-11-24 08:08:23 -05:00
|
|
|
},
|
2021-01-28 03:37:26 -05:00
|
|
|
live: {
|
|
|
|
libx264: {
|
|
|
|
default: defaultX264LiveOptionsBuilder
|
|
|
|
},
|
|
|
|
aac: {
|
|
|
|
default: defaultAACOptionsBuilder
|
|
|
|
}
|
2020-11-24 08:08:23 -05:00
|
|
|
}
|
2021-01-28 03:37:26 -05:00
|
|
|
}
|
|
|
|
|
2021-01-28 09:52:44 -05:00
|
|
|
private availableProfiles = {
|
|
|
|
vod: [] as string[],
|
|
|
|
live: [] as string[]
|
|
|
|
}
|
2021-01-28 03:37:26 -05:00
|
|
|
|
2021-01-28 09:52:44 -05:00
|
|
|
private constructor () {
|
|
|
|
this.buildAvailableProfiles()
|
2021-01-28 03:37:26 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
getAvailableEncoders (): AvailableEncoders {
|
2021-01-28 09:52:44 -05:00
|
|
|
return {
|
|
|
|
available: this.availableEncoders,
|
|
|
|
encodersToTry: {
|
|
|
|
vod: {
|
|
|
|
video: this.getEncodersByPriority('vod', 'video'),
|
|
|
|
audio: this.getEncodersByPriority('vod', 'audio')
|
|
|
|
},
|
|
|
|
live: {
|
|
|
|
video: this.getEncodersByPriority('live', 'video'),
|
|
|
|
audio: this.getEncodersByPriority('live', 'audio')
|
|
|
|
}
|
|
|
|
}
|
2020-11-24 08:08:23 -05:00
|
|
|
}
|
2021-01-28 03:37:26 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
getAvailableProfiles (type: 'vod' | 'live') {
|
2021-01-28 09:52:44 -05:00
|
|
|
return this.availableProfiles[type]
|
|
|
|
}
|
|
|
|
|
|
|
|
addProfile (options: {
|
|
|
|
type: 'vod' | 'live'
|
|
|
|
encoder: string
|
|
|
|
profile: string
|
|
|
|
builder: EncoderOptionsBuilder
|
|
|
|
}) {
|
|
|
|
const { type, encoder, profile, builder } = options
|
|
|
|
|
|
|
|
const encoders = this.availableEncoders[type]
|
|
|
|
|
|
|
|
if (!encoders[encoder]) encoders[encoder] = {}
|
|
|
|
encoders[encoder][profile] = builder
|
|
|
|
|
|
|
|
this.buildAvailableProfiles()
|
|
|
|
}
|
|
|
|
|
|
|
|
removeProfile (options: {
|
|
|
|
type: 'vod' | 'live'
|
|
|
|
encoder: string
|
|
|
|
profile: string
|
|
|
|
}) {
|
|
|
|
const { type, encoder, profile } = options
|
|
|
|
|
|
|
|
delete this.availableEncoders[type][encoder][profile]
|
|
|
|
this.buildAvailableProfiles()
|
2021-01-28 03:37:26 -05:00
|
|
|
}
|
|
|
|
|
2021-01-28 09:52:44 -05:00
|
|
|
addEncoderPriority (type: 'vod' | 'live', streamType: 'audio' | 'video', encoder: string, priority: number) {
|
|
|
|
this.encodersPriorities[type][streamType].push({ name: encoder, priority })
|
|
|
|
|
|
|
|
resetSupportedEncoders()
|
|
|
|
}
|
|
|
|
|
|
|
|
removeEncoderPriority (type: 'vod' | 'live', streamType: 'audio' | 'video', encoder: string, priority: number) {
|
|
|
|
this.encodersPriorities[type][streamType] = this.encodersPriorities[type][streamType]
|
|
|
|
.filter(o => o.name !== encoder && o.priority !== priority)
|
|
|
|
|
|
|
|
resetSupportedEncoders()
|
|
|
|
}
|
|
|
|
|
|
|
|
private getEncodersByPriority (type: 'vod' | 'live', streamType: 'audio' | 'video') {
|
|
|
|
return this.encodersPriorities[type][streamType]
|
2021-01-28 03:37:26 -05:00
|
|
|
.sort((e1, e2) => {
|
|
|
|
if (e1.priority > e2.priority) return -1
|
|
|
|
else if (e1.priority === e2.priority) return 0
|
|
|
|
|
|
|
|
return 1
|
|
|
|
})
|
|
|
|
.map(e => e.name)
|
|
|
|
}
|
|
|
|
|
2021-01-28 09:52:44 -05:00
|
|
|
private buildAvailableProfiles () {
|
|
|
|
for (const type of [ 'vod', 'live' ]) {
|
|
|
|
const result = new Set()
|
|
|
|
|
|
|
|
const encoders = this.availableEncoders[type]
|
|
|
|
|
|
|
|
for (const encoderName of Object.keys(encoders)) {
|
|
|
|
for (const profile of Object.keys(encoders[encoderName])) {
|
|
|
|
result.add(profile)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
this.availableProfiles[type] = Array.from(result)
|
|
|
|
}
|
|
|
|
|
|
|
|
logger.debug('Available transcoding profiles built.', { availableProfiles: this.availableProfiles })
|
|
|
|
}
|
|
|
|
|
|
|
|
private buildDefaultEncodersPriorities () {
|
|
|
|
return {
|
|
|
|
video: [
|
|
|
|
{ name: 'libx264', priority: 100 }
|
|
|
|
],
|
|
|
|
|
|
|
|
// Try the first one, if not available try the second one etc
|
|
|
|
audio: [
|
|
|
|
// we favor VBR, if a good AAC encoder is available
|
|
|
|
{ name: 'libfdk_aac', priority: 200 },
|
|
|
|
{ name: 'aac', priority: 100 }
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-28 03:37:26 -05:00
|
|
|
static get Instance () {
|
|
|
|
return this.instance || (this.instance = new this())
|
2020-11-24 08:08:23 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
export {
|
2021-01-28 03:37:26 -05:00
|
|
|
VideoTranscodingProfilesManager
|
2020-11-24 08:08:23 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
2021-08-06 04:39:40 -04:00
|
|
|
|
2021-11-10 05:04:00 -05:00
|
|
|
function getTargetBitrate (options: {
|
|
|
|
inputBitrate: number
|
|
|
|
resolution: VideoResolution
|
|
|
|
ratio: number
|
|
|
|
fps: number
|
|
|
|
}) {
|
|
|
|
const { inputBitrate, resolution, ratio, fps } = options
|
|
|
|
|
|
|
|
const capped = capBitrate(inputBitrate, getAverageBitrate({ resolution, fps, ratio }))
|
|
|
|
const limit = getMinLimitBitrate({ resolution, fps, ratio })
|
|
|
|
|
|
|
|
return Math.max(limit, capped)
|
|
|
|
}
|
|
|
|
|
2021-08-06 07:35:25 -04:00
|
|
|
function capBitrate (inputBitrate: number, targetBitrate: number) {
|
2021-08-06 04:39:40 -04:00
|
|
|
if (!inputBitrate) return targetBitrate
|
2020-11-26 05:29:50 -05:00
|
|
|
|
2021-10-11 09:59:15 -04:00
|
|
|
// Add 30% margin to input bitrate
|
|
|
|
const inputBitrateWithMargin = inputBitrate + (inputBitrate * 0.3)
|
|
|
|
|
|
|
|
return Math.min(targetBitrate, inputBitrateWithMargin)
|
2020-11-26 05:29:50 -05:00
|
|
|
}
|
2021-12-14 04:39:52 -05:00
|
|
|
|
|
|
|
function getCommonOutputOptions (targetBitrate: number) {
|
|
|
|
return [
|
|
|
|
`-preset veryfast`,
|
|
|
|
`-maxrate ${targetBitrate}`,
|
|
|
|
`-bufsize ${targetBitrate * 2}`,
|
|
|
|
|
|
|
|
// NOTE: b-strategy 1 - heuristic algorithm, 16 is optimal B-frames for it
|
|
|
|
`-b_strategy 1`,
|
|
|
|
// NOTE: Why 16: https://github.com/Chocobozzz/PeerTube/pull/774. b-strategy 2 -> B-frames<16
|
|
|
|
`-bf 16`
|
|
|
|
]
|
|
|
|
}
|