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

ColorSpace

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

If your input video has accurate color space metadata, or if you don't know about color space, leave this set to the default value Follow. The service will automatically detect your input color space. If your input video has metadata indicating the wrong color space, specify the accurate color space here. If your input video is HDR 10 and the SMPTE ST 2086 Mastering Display Color Volume static metadata isn't present in your video stream, or if that metadata is present but not accurate, choose Force HDR 10 here and specify correct values in the input HDR 10 metadata settings. For more information about MediaConvert HDR jobs, see https://docs.aws.amazon.com/console/mediaconvert/hdr. Select P3D65 (SDR) to set the input color space metadata to the following:

  • Color primaries: Display P3
  • Transfer characteristics: SMPTE 428M
  • Matrix coefficients: BT.709
type ColorSpace =
| "FOLLOW"
| "REC_601"
| "REC_709"
| "HDR10"
| "HLG_2020"
| "P3DCI"
| "P3D65_SDR"

§Type

§
"FOLLOW" | "REC_601" | "REC_709" | "HDR10" | "HLG_2020" | "P3DCI" | "P3D65_SDR" | cmnP.UnexpectedEnumValue
[src]