Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

ColorSpaceConversion

import type { ColorSpaceConversion } from "https://aws-api.deno.dev/v0.4/services/mediaconvert.ts?docs=full";

Specify the color space you want for this output. The service supports conversion between HDR formats, between SDR formats, from SDR to HDR, and from HDR to SDR. SDR to HDR conversion doesn't upgrade the dynamic range. The converted video has an HDR format, but visually appears the same as an unconverted output. HDR to SDR conversion uses Elemental tone mapping technology to approximate the outcome of manually regrading from HDR to SDR. Select Force P3D65 (SDR) to set the output color space metadata to the following: * Color primaries: Display P3 * Transfer characteristics: SMPTE 428M * Matrix coefficients: BT.709

type ColorSpaceConversion =
| "NONE"
| "FORCE_601"
| "FORCE_709"
| "FORCE_HDR10"
| "FORCE_HLG_2020"
| "FORCE_P3DCI"
| "FORCE_P3D65_SDR"

§Type

§
"NONE" | "FORCE_601" | "FORCE_709" | "FORCE_HDR10" | "FORCE_HLG_2020" | "FORCE_P3DCI" | "FORCE_P3D65_SDR" | cmnP.UnexpectedEnumValue
[src]