diff options
Diffstat (limited to 'server/lib/transcoding')
-rw-r--r-- | server/lib/transcoding/transcoding.ts | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/server/lib/transcoding/transcoding.ts b/server/lib/transcoding/transcoding.ts index d83c5419f..e6914db87 100644 --- a/server/lib/transcoding/transcoding.ts +++ b/server/lib/transcoding/transcoding.ts | |||
@@ -446,7 +446,15 @@ async function generateHlsPlaylistCommon (options: { | |||
446 | function buildOriginalFileResolution (inputResolution: number) { | 446 | function buildOriginalFileResolution (inputResolution: number) { |
447 | if (CONFIG.TRANSCODING.ALWAYS_TRANSCODE_ORIGINAL_RESOLUTION === true) return toEven(inputResolution) | 447 | if (CONFIG.TRANSCODING.ALWAYS_TRANSCODE_ORIGINAL_RESOLUTION === true) return toEven(inputResolution) |
448 | 448 | ||
449 | const resolutions = computeResolutionsToTranscode({ input: inputResolution, type: 'vod', includeInput: false, strictLower: false }) | 449 | const resolutions = computeResolutionsToTranscode({ |
450 | input: inputResolution, | ||
451 | type: 'vod', | ||
452 | includeInput: false, | ||
453 | strictLower: false, | ||
454 | // We don't really care about the audio resolution in this context | ||
455 | hasAudio: true | ||
456 | }) | ||
457 | |||
450 | if (resolutions.length === 0) return toEven(inputResolution) | 458 | if (resolutions.length === 0) return toEven(inputResolution) |
451 | 459 | ||
452 | return Math.max(...resolutions) | 460 | return Math.max(...resolutions) |