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

H265CodecProfile

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

Represents the Profile and Tier, per the HEVC (H.265) specification. Selections are grouped as [Profile] / [Tier], so "Main/High" represents Main Profile with High Tier. 4:2:2 profiles are only available with the HEVC 4:2:2 License.

type H265CodecProfile =
| "MAIN_MAIN"
| "MAIN_HIGH"
| "MAIN10_MAIN"
| "MAIN10_HIGH"
| "MAIN_422_8BIT_MAIN"
| "MAIN_422_8BIT_HIGH"
| "MAIN_422_10BIT_MAIN"
| "MAIN_422_10BIT_HIGH"

§Type

§
"MAIN_MAIN" | "MAIN_HIGH" | "MAIN10_MAIN" | "MAIN10_HIGH" | "MAIN_422_8BIT_MAIN" | "MAIN_422_8BIT_HIGH" | "MAIN_422_10BIT_MAIN" | "MAIN_422_10BIT_HIGH" | cmnP.UnexpectedEnumValue
[src]