diff --git a/server/src/utils/media.ts b/server/src/utils/media.ts index 7a7c7464e7..be95dba6f2 100644 --- a/server/src/utils/media.ts +++ b/server/src/utils/media.ts @@ -476,7 +476,7 @@ export class NVENCConfig extends BaseHWConfig { getFilterOptions(videoStream: VideoStreamInfo) { const options = []; if (!this.config.accelDecode) { - options.push('format=nv12', 'hwupload_cuda'); + options.push(...this.getToneMapping(videoStream), 'format=nv12', 'hwupload_cuda'); if (this.shouldScale(videoStream)) { options.push(`scale_cuda=${this.getScaling(videoStream)}`); }