X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=server%2Fhelpers%2Fffmpeg%2Fffprobe-utils.ts;h=fb270b3cb5baf3617599edf8c7bb39005f5ece64;hb=6bcb854cdea8688a32240bc5719c7d139806e00b;hp=c45f9ec99c2850c5314842b65f9f9071d59290e8;hpb=5e2afe4290103bf0d54ae7b3e62781f2a00487c9;p=github%2FChocobozzz%2FPeerTube.git diff --git a/server/helpers/ffmpeg/ffprobe-utils.ts b/server/helpers/ffmpeg/ffprobe-utils.ts index c45f9ec99..fb270b3cb 100644 --- a/server/helpers/ffmpeg/ffprobe-utils.ts +++ b/server/helpers/ffmpeg/ffprobe-utils.ts @@ -15,6 +15,7 @@ import { import { VideoResolution, VideoTranscodingFPS } from '@shared/models' import { CONFIG } from '../../initializers/config' import { VIDEO_TRANSCODING_FPS } from '../../initializers/constants' +import { toEven } from '../core-utils' import { logger } from '../logger' /** @@ -56,16 +57,17 @@ async function getVideoStreamCodec (path: string) { } if (videoCodec === 'av01') { - const level = videoStream.level + let level = videoStream.level.toString() + if (level.length === 1) level = `0${level}` // Guess the tier indicator and bit depth return `${videoCodec}.${baseProfile}.${level}M.08` } - // Default, h264 codec let level = videoStream.level.toString(16) if (level.length === 1) level = `0${level}` + // Default, h264 codec return `${videoCodec}.${baseProfile}${level}` } @@ -95,8 +97,9 @@ function computeResolutionsToTranscode (options: { type: 'vod' | 'live' includeInput: boolean strictLower: boolean + hasAudio: boolean }) { - const { input, type, includeInput, strictLower } = options + const { input, type, includeInput, strictLower, hasAudio } = options const configResolutions = type === 'vod' ? CONFIG.TRANSCODING.RESOLUTIONS @@ -124,12 +127,15 @@ function computeResolutionsToTranscode (options: { if (input < resolution) continue // We only want lower resolutions than input file if (strictLower && input === resolution) continue + // Audio resolutio but no audio in the video + if (resolution === VideoResolution.H_NOVIDEO && !hasAudio) continue resolutionsEnabled.add(resolution) } if (includeInput) { - resolutionsEnabled.add(input) + // Always use an even resolution to avoid issues with ffmpeg + resolutionsEnabled.add(toEven(input)) } return Array.from(resolutionsEnabled) @@ -163,7 +169,7 @@ async function canDoQuickAudioTranscode (path: string, probe?: FfprobeData): Pro const channelLayout = parsedAudio.audioStream['channel_layout'] // Causes playback issues with Chrome - if (!channelLayout || channelLayout === 'unknown') return false + if (!channelLayout || channelLayout === 'unknown' || channelLayout === 'quad') return false return true }