Prevent broken transcoding with audio only input

pull/5441/head
Chocobozzz 2022-11-14 11:39:01 +01:00
parent 4efa5535cc
commit 44e702ded4
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
2 changed files with 12 additions and 2 deletions

View File

@ -49,6 +49,8 @@ async function createTranscoding (req: express.Request, res: express.Response) {
const childrenResolutions = resolutions.filter(r => r !== maxResolution)
logger.info('Manually creating transcoding jobs for %s.', body.transcodingType, { childrenResolutions, maxResolution })
const children = await Bluebird.mapSeries(childrenResolutions, resolution => {
if (body.transcodingType === 'hls') {
return buildHLSJobOption({

View File

@ -1,5 +1,5 @@
import { ffprobe, FfprobeData } from 'fluent-ffmpeg'
import { VideoFileMetadata } from '@shared/models/videos'
import { VideoFileMetadata, VideoResolution } from '@shared/models/videos'
/**
*
@ -103,7 +103,15 @@ function getMaxAudioBitrate (type: 'aac' | 'mp3' | string, bitrate: number) {
async function getVideoStreamDimensionsInfo (path: string, existingProbe?: FfprobeData) {
const videoStream = await getVideoStream(path, existingProbe)
if (!videoStream) return undefined
if (!videoStream) {
return {
width: 0,
height: 0,
ratio: 0,
resolution: VideoResolution.H_NOVIDEO,
isPortraitMode: false
}
}
return {
width: videoStream.width,