X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=server%2Fhelpers%2Fffmpeg-utils.ts;h=62002596664441c7f244311853119b2aee13f767;hb=db8b2f56c014a3fa207501f74e0bb5088ea41719;hp=7d46130ec206fce06a3fe7e2de4f3bb0cc61b7ff;hpb=529b37527cff5203a0689a15ce73dcee6e1eece2;p=github%2FChocobozzz%2FPeerTube.git diff --git a/server/helpers/ffmpeg-utils.ts b/server/helpers/ffmpeg-utils.ts index 7d46130ec..620025966 100644 --- a/server/helpers/ffmpeg-utils.ts +++ b/server/helpers/ffmpeg-utils.ts @@ -3,9 +3,9 @@ import * as ffmpeg from 'fluent-ffmpeg' import { readFile, remove, writeFile } from 'fs-extra' import { dirname, join } from 'path' import { FFMPEG_NICE, VIDEO_LIVE } from '@server/initializers/constants' -import { VideoResolution } from '../../shared/models/videos' -import { checkFFmpegEncoders } from '../initializers/checker-before-init' +import { AvailableEncoders, EncoderOptionsBuilder, EncoderProfile, VideoResolution } from '../../shared/models/videos' import { CONFIG } from '../initializers/config' +import { promisify0 } from './core-utils' import { computeFPS, getAudioStream, getVideoFileFPS } from './ffprobe-utils' import { processImage } from './image-utils' import { logger } from './logger' @@ -21,46 +21,45 @@ import { logger } from './logger' // Encoder options // --------------------------------------------------------------------------- -// Options builders - -export type EncoderOptionsBuilder = (params: { - input: string - resolution: VideoResolution - fps?: number - streamNum?: number -}) => Promise | EncoderOptions +type StreamType = 'audio' | 'video' -// Options types +// --------------------------------------------------------------------------- +// Encoders support +// --------------------------------------------------------------------------- -export interface EncoderOptions { - copy?: boolean - outputOptions: string[] -} +// Detect supported encoders by ffmpeg +let supportedEncoders: Map +async function checkFFmpegEncoders (peertubeAvailableEncoders: AvailableEncoders): Promise> { + if (supportedEncoders !== undefined) { + return supportedEncoders + } -// All our encoders + const getAvailableEncodersPromise = promisify0(ffmpeg.getAvailableEncoders) + const availableFFmpegEncoders = await getAvailableEncodersPromise() -export interface EncoderProfile { - [ profile: string ]: T + const searchEncoders = new Set() + for (const type of [ 'live', 'vod' ]) { + for (const streamType of [ 'audio', 'video' ]) { + for (const encoder of peertubeAvailableEncoders.encodersToTry[type][streamType]) { + searchEncoders.add(encoder) + } + } + } - default: T -} + supportedEncoders = new Map() -export type AvailableEncoders = { - live: { - [ encoder: string ]: EncoderProfile + for (const searchEncoder of searchEncoders) { + supportedEncoders.set(searchEncoder, availableFFmpegEncoders[searchEncoder] !== undefined) } - vod: { - [ encoder: string ]: EncoderProfile - } + logger.info('Built supported ffmpeg encoders.', { supportedEncoders, searchEncoders }) - encodersToTry: { - video: string[] - audio: string[] - } + return supportedEncoders } -type StreamType = 'audio' | 'video' +function resetSupportedEncoders () { + supportedEncoders = undefined +} // --------------------------------------------------------------------------- // Image manipulation @@ -70,7 +69,7 @@ function convertWebPToJPG (path: string, destination: string): Promise { const command = ffmpeg(path, { niceness: FFMPEG_NICE.THUMBNAIL }) .output(destination) - return runCommand(command) + return runCommand({ command, silent: true }) } function processGIF ( @@ -83,7 +82,7 @@ function processGIF ( .size(`${newSize.width}x${newSize.height}`) .output(destination) - return runCommand(command) + return runCommand({ command }) } async function generateImageFromVideoFile (fromPath: string, folder: string, imageName: string, size: { width: number, height: number }) { @@ -202,7 +201,7 @@ async function transcode (options: TranscodeOptions) { command = await builders[options.type](command, options) - await runCommand(command, options.job) + await runCommand({ command, job: options.job }) await fixHLSPlaylistIfNeeded(options) } @@ -275,7 +274,7 @@ async function getLiveTranscodingCommand (options: { addDefaultEncoderParams({ command, encoder: builderResult.encoder, fps: resolutionFPS, streamNum: i }) - logger.debug('Apply ffmpeg live video params from %s.', builderResult.encoder, builderResult) + logger.debug('Apply ffmpeg live video params from %s using %s profile.', builderResult.encoder, profile, builderResult) command.outputOption(`${buildStreamSuffix('-c:v', i)} ${builderResult.encoder}`) command.addOutputOptions(builderResult.result.outputOptions) @@ -292,7 +291,7 @@ async function getLiveTranscodingCommand (options: { addDefaultEncoderParams({ command, encoder: builderResult.encoder, fps: resolutionFPS, streamNum: i }) - logger.debug('Apply ffmpeg live audio params from %s.', builderResult.encoder, builderResult) + logger.debug('Apply ffmpeg live audio params from %s using %s profile.', builderResult.encoder, profile, builderResult) command.outputOption(`${buildStreamSuffix('-c:a', i)} ${builderResult.encoder}`) command.addOutputOptions(builderResult.result.outputOptions) @@ -513,11 +512,19 @@ async function getEncoderBuilderResult (options: { }) { const { availableEncoders, input, profile, resolution, streamType, fps, streamNum, videoType } = options - const encodersToTry = availableEncoders.encodersToTry[streamType] - const encoders = availableEncoders[videoType] + const encodersToTry = availableEncoders.encodersToTry[videoType][streamType] + const encoders = availableEncoders.available[videoType] for (const encoder of encodersToTry) { - if (!(await checkFFmpegEncoders()).get(encoder) || !encoders[encoder]) continue + if (!(await checkFFmpegEncoders(availableEncoders)).get(encoder)) { + logger.debug('Encoder %s not available in ffmpeg, skipping.', encoder) + continue + } + + if (!encoders[encoder]) { + logger.debug('Encoder %s not available in peertube encoders, skipping.', encoder) + continue + } // An object containing available profiles for this encoder const builderProfiles: EncoderProfile = encoders[encoder] @@ -567,7 +574,7 @@ async function presetVideo ( if (!parsedAudio.audioStream) { localCommand = localCommand.noAudio() - streamsToProcess = [ 'audio' ] + streamsToProcess = [ 'video' ] } for (const streamType of streamsToProcess) { @@ -587,7 +594,10 @@ async function presetVideo ( throw new Error('No available encoder found for stream ' + streamType) } - logger.debug('Apply ffmpeg params from %s.', builderResult.encoder, builderResult) + logger.debug( + 'Apply ffmpeg params from %s for %s stream of input %s using %s profile.', + builderResult.encoder, streamType, input, profile, builderResult + ) if (streamType === 'video') { localCommand.videoCodec(builderResult.encoder) @@ -639,10 +649,17 @@ function getFFmpeg (input: string, type: 'live' | 'vod') { return command } -async function runCommand (command: ffmpeg.FfmpegCommand, job?: Job) { +async function runCommand (options: { + command: ffmpeg.FfmpegCommand + silent?: boolean // false + job?: Job +}) { + const { command, silent = false, job } = options + return new Promise((res, rej) => { command.on('error', (err, stdout, stderr) => { - logger.error('Error in transcoding job.', { stdout, stderr }) + if (silent !== true) logger.error('Error in ffmpeg.', { stdout, stderr }) + rej(err) }) @@ -679,6 +696,8 @@ export { transcode, runCommand, + resetSupportedEncoders, + // builders buildx264VODCommand }