2021-11-02 14:11:20 -04:00
|
|
|
import { FfprobeData } from 'fluent-ffmpeg'
|
2021-08-06 07:35:25 -04:00
|
|
|
import { getMaxBitrate } from '@shared/core-utils'
|
2021-11-02 14:11:20 -04:00
|
|
|
import {
|
|
|
|
ffprobePromise,
|
|
|
|
getAudioStream,
|
2022-02-11 04:51:33 -05:00
|
|
|
getVideoStreamDuration,
|
2021-11-02 14:11:20 -04:00
|
|
|
getMaxAudioBitrate,
|
2022-02-11 04:51:33 -05:00
|
|
|
buildFileMetadata,
|
|
|
|
getVideoStreamBitrate,
|
|
|
|
getVideoStreamFPS,
|
|
|
|
getVideoStream,
|
|
|
|
getVideoStreamDimensionsInfo,
|
|
|
|
hasAudioStream
|
2021-11-02 14:11:20 -04:00
|
|
|
} from '@shared/extra-utils/ffprobe'
|
2022-02-11 04:51:33 -05:00
|
|
|
import { VideoResolution, VideoTranscodingFPS } from '@shared/models'
|
|
|
|
import { CONFIG } from '../../initializers/config'
|
|
|
|
import { VIDEO_TRANSCODING_FPS } from '../../initializers/constants'
|
|
|
|
import { logger } from '../logger'
|
2020-11-20 11:16:55 -05:00
|
|
|
|
2020-11-24 10:29:39 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* Helpers to run ffprobe and extract data from the JSON output
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2022-02-11 04:51:33 -05:00
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
// Codecs
|
|
|
|
// ---------------------------------------------------------------------------
|
2020-11-20 11:16:55 -05:00
|
|
|
|
2022-02-11 04:51:33 -05:00
|
|
|
async function getVideoStreamCodec (path: string) {
|
|
|
|
const videoStream = await getVideoStream(path)
|
2020-11-20 11:16:55 -05:00
|
|
|
if (!videoStream) return ''
|
|
|
|
|
|
|
|
const videoCodec = videoStream.codec_tag_string
|
|
|
|
|
2021-01-29 07:57:17 -05:00
|
|
|
if (videoCodec === 'vp09') return 'vp09.00.50.08'
|
2021-04-21 03:08:14 -04:00
|
|
|
if (videoCodec === 'hev1') return 'hev1.1.6.L93.B0'
|
2021-01-29 07:57:17 -05:00
|
|
|
|
2020-11-20 11:16:55 -05:00
|
|
|
const baseProfileMatrix = {
|
2021-01-29 07:57:17 -05:00
|
|
|
avc1: {
|
|
|
|
High: '6400',
|
|
|
|
Main: '4D40',
|
|
|
|
Baseline: '42E0'
|
|
|
|
},
|
|
|
|
av01: {
|
|
|
|
High: '1',
|
|
|
|
Main: '0',
|
|
|
|
Professional: '2'
|
|
|
|
}
|
2020-11-20 11:16:55 -05:00
|
|
|
}
|
|
|
|
|
2021-01-29 07:57:17 -05:00
|
|
|
let baseProfile = baseProfileMatrix[videoCodec][videoStream.profile]
|
2020-11-20 11:16:55 -05:00
|
|
|
if (!baseProfile) {
|
|
|
|
logger.warn('Cannot get video profile codec of %s.', path, { videoStream })
|
2021-01-29 07:57:17 -05:00
|
|
|
baseProfile = baseProfileMatrix[videoCodec]['High'] // Fallback
|
|
|
|
}
|
|
|
|
|
|
|
|
if (videoCodec === 'av01') {
|
|
|
|
const level = videoStream.level
|
|
|
|
|
|
|
|
// Guess the tier indicator and bit depth
|
|
|
|
return `${videoCodec}.${baseProfile}.${level}M.08`
|
2020-11-20 11:16:55 -05:00
|
|
|
}
|
|
|
|
|
2021-01-29 07:57:17 -05:00
|
|
|
// Default, h264 codec
|
2020-11-20 11:16:55 -05:00
|
|
|
let level = videoStream.level.toString(16)
|
|
|
|
if (level.length === 1) level = `0${level}`
|
|
|
|
|
|
|
|
return `${videoCodec}.${baseProfile}${level}`
|
|
|
|
}
|
|
|
|
|
2021-08-27 08:32:44 -04:00
|
|
|
async function getAudioStreamCodec (path: string, existingProbe?: FfprobeData) {
|
2020-11-20 11:16:55 -05:00
|
|
|
const { audioStream } = await getAudioStream(path, existingProbe)
|
|
|
|
|
|
|
|
if (!audioStream) return ''
|
|
|
|
|
2021-01-29 07:57:17 -05:00
|
|
|
const audioCodecName = audioStream.codec_name
|
|
|
|
|
|
|
|
if (audioCodecName === 'opus') return 'opus'
|
|
|
|
if (audioCodecName === 'vorbis') return 'vorbis'
|
|
|
|
if (audioCodecName === 'aac') return 'mp4a.40.2'
|
2020-11-20 11:16:55 -05:00
|
|
|
|
|
|
|
logger.warn('Cannot get audio codec of %s.', path, { audioStream })
|
|
|
|
|
|
|
|
return 'mp4a.40.2' // Fallback
|
|
|
|
}
|
|
|
|
|
2022-02-11 04:51:33 -05:00
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
// Resolutions
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
2021-11-18 08:35:08 -05:00
|
|
|
function computeLowerResolutionsToTranscode (videoFileResolution: number, type: 'vod' | 'live') {
|
2020-11-20 11:16:55 -05:00
|
|
|
const configResolutions = type === 'vod'
|
|
|
|
? CONFIG.TRANSCODING.RESOLUTIONS
|
|
|
|
: CONFIG.LIVE.TRANSCODING.RESOLUTIONS
|
|
|
|
|
|
|
|
const resolutionsEnabled: number[] = []
|
|
|
|
|
|
|
|
// Put in the order we want to proceed jobs
|
2021-11-18 08:35:08 -05:00
|
|
|
const resolutions: VideoResolution[] = [
|
2020-11-20 11:16:55 -05:00
|
|
|
VideoResolution.H_NOVIDEO,
|
|
|
|
VideoResolution.H_480P,
|
|
|
|
VideoResolution.H_360P,
|
|
|
|
VideoResolution.H_720P,
|
|
|
|
VideoResolution.H_240P,
|
2021-11-05 05:23:02 -04:00
|
|
|
VideoResolution.H_144P,
|
2020-11-20 11:16:55 -05:00
|
|
|
VideoResolution.H_1080P,
|
2020-12-24 12:02:04 -05:00
|
|
|
VideoResolution.H_1440P,
|
2020-11-20 11:16:55 -05:00
|
|
|
VideoResolution.H_4K
|
|
|
|
]
|
|
|
|
|
|
|
|
for (const resolution of resolutions) {
|
|
|
|
if (configResolutions[resolution + 'p'] === true && videoFileResolution > resolution) {
|
|
|
|
resolutionsEnabled.push(resolution)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return resolutionsEnabled
|
|
|
|
}
|
|
|
|
|
2022-02-11 04:51:33 -05:00
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
// Can quick transcode
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
2020-11-20 11:16:55 -05:00
|
|
|
async function canDoQuickTranscode (path: string): Promise<boolean> {
|
2021-01-29 04:29:29 -05:00
|
|
|
if (CONFIG.TRANSCODING.PROFILE !== 'default') return false
|
|
|
|
|
2020-11-20 11:16:55 -05:00
|
|
|
const probe = await ffprobePromise(path)
|
|
|
|
|
2020-11-24 08:08:23 -05:00
|
|
|
return await canDoQuickVideoTranscode(path, probe) &&
|
|
|
|
await canDoQuickAudioTranscode(path, probe)
|
|
|
|
}
|
|
|
|
|
2022-02-11 04:51:33 -05:00
|
|
|
async function canDoQuickAudioTranscode (path: string, probe?: FfprobeData): Promise<boolean> {
|
|
|
|
const parsedAudio = await getAudioStream(path, probe)
|
|
|
|
|
|
|
|
if (!parsedAudio.audioStream) return true
|
|
|
|
|
|
|
|
if (parsedAudio.audioStream['codec_name'] !== 'aac') return false
|
|
|
|
|
|
|
|
const audioBitrate = parsedAudio.bitrate
|
|
|
|
if (!audioBitrate) return false
|
|
|
|
|
|
|
|
const maxAudioBitrate = getMaxAudioBitrate('aac', audioBitrate)
|
|
|
|
if (maxAudioBitrate !== -1 && audioBitrate > maxAudioBitrate) return false
|
|
|
|
|
|
|
|
const channelLayout = parsedAudio.audioStream['channel_layout']
|
|
|
|
// Causes playback issues with Chrome
|
|
|
|
if (!channelLayout || channelLayout === 'unknown') return false
|
|
|
|
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
2021-08-27 08:32:44 -04:00
|
|
|
async function canDoQuickVideoTranscode (path: string, probe?: FfprobeData): Promise<boolean> {
|
2022-02-11 04:51:33 -05:00
|
|
|
const videoStream = await getVideoStream(path, probe)
|
|
|
|
const fps = await getVideoStreamFPS(path, probe)
|
|
|
|
const bitRate = await getVideoStreamBitrate(path, probe)
|
|
|
|
const resolutionData = await getVideoStreamDimensionsInfo(path, probe)
|
2020-11-20 11:16:55 -05:00
|
|
|
|
2020-11-24 10:24:50 -05:00
|
|
|
// If ffprobe did not manage to guess the bitrate
|
|
|
|
if (!bitRate) return false
|
|
|
|
|
2020-11-20 11:16:55 -05:00
|
|
|
// check video params
|
2022-02-11 04:51:33 -05:00
|
|
|
if (!videoStream) return false
|
2020-11-20 11:16:55 -05:00
|
|
|
if (videoStream['codec_name'] !== 'h264') return false
|
|
|
|
if (videoStream['pix_fmt'] !== 'yuv420p') return false
|
|
|
|
if (fps < VIDEO_TRANSCODING_FPS.MIN || fps > VIDEO_TRANSCODING_FPS.MAX) return false
|
2021-08-06 07:35:25 -04:00
|
|
|
if (bitRate > getMaxBitrate({ ...resolutionData, fps })) return false
|
2020-11-20 11:16:55 -05:00
|
|
|
|
2020-11-24 08:08:23 -05:00
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
2022-02-11 04:51:33 -05:00
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
// Framerate
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
2021-08-06 07:35:25 -04:00
|
|
|
function getClosestFramerateStandard <K extends keyof Pick<VideoTranscodingFPS, 'HD_STANDARD' | 'STANDARD'>> (fps: number, type: K) {
|
2020-11-20 11:16:55 -05:00
|
|
|
return VIDEO_TRANSCODING_FPS[type].slice(0)
|
|
|
|
.sort((a, b) => fps % a - fps % b)[0]
|
|
|
|
}
|
|
|
|
|
2020-11-26 05:29:50 -05:00
|
|
|
function computeFPS (fpsArg: number, resolution: VideoResolution) {
|
|
|
|
let fps = fpsArg
|
|
|
|
|
|
|
|
if (
|
|
|
|
// On small/medium resolutions, limit FPS
|
|
|
|
resolution !== undefined &&
|
|
|
|
resolution < VIDEO_TRANSCODING_FPS.KEEP_ORIGIN_FPS_RESOLUTION_MIN &&
|
|
|
|
fps > VIDEO_TRANSCODING_FPS.AVERAGE
|
|
|
|
) {
|
|
|
|
// Get closest standard framerate by modulo: downsampling has to be done to a divisor of the nominal fps value
|
|
|
|
fps = getClosestFramerateStandard(fps, 'STANDARD')
|
|
|
|
}
|
|
|
|
|
|
|
|
// Hard FPS limits
|
|
|
|
if (fps > VIDEO_TRANSCODING_FPS.MAX) fps = getClosestFramerateStandard(fps, 'HD_STANDARD')
|
2021-10-12 04:37:25 -04:00
|
|
|
|
|
|
|
if (fps < VIDEO_TRANSCODING_FPS.MIN) {
|
|
|
|
throw new Error(`Cannot compute FPS because ${fps} is lower than our minimum value ${VIDEO_TRANSCODING_FPS.MIN}`)
|
|
|
|
}
|
2020-11-26 05:29:50 -05:00
|
|
|
|
|
|
|
return fps
|
|
|
|
}
|
|
|
|
|
2020-11-20 11:16:55 -05:00
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
export {
|
2022-02-11 04:51:33 -05:00
|
|
|
// Re export ffprobe utils
|
|
|
|
getVideoStreamDimensionsInfo,
|
|
|
|
buildFileMetadata,
|
2020-11-20 11:16:55 -05:00
|
|
|
getMaxAudioBitrate,
|
2022-02-11 04:51:33 -05:00
|
|
|
getVideoStream,
|
|
|
|
getVideoStreamDuration,
|
2020-11-20 11:16:55 -05:00
|
|
|
getAudioStream,
|
2022-02-11 04:51:33 -05:00
|
|
|
hasAudioStream,
|
|
|
|
getVideoStreamFPS,
|
2020-11-24 08:08:23 -05:00
|
|
|
ffprobePromise,
|
2022-02-11 04:51:33 -05:00
|
|
|
getVideoStreamBitrate,
|
|
|
|
|
|
|
|
getVideoStreamCodec,
|
|
|
|
getAudioStreamCodec,
|
|
|
|
|
|
|
|
computeFPS,
|
2020-11-20 11:16:55 -05:00
|
|
|
getClosestFramerateStandard,
|
2022-02-11 04:51:33 -05:00
|
|
|
|
2021-11-18 08:35:08 -05:00
|
|
|
computeLowerResolutionsToTranscode,
|
2022-02-11 04:51:33 -05:00
|
|
|
|
2020-11-24 08:08:23 -05:00
|
|
|
canDoQuickTranscode,
|
|
|
|
canDoQuickVideoTranscode,
|
|
|
|
canDoQuickAudioTranscode
|
2020-11-20 11:16:55 -05:00
|
|
|
}
|