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

DashManifestStyle

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

Specify how MediaConvert writes SegmentTimeline in your output DASH manifest. To write a SegmentTimeline in each video Representation: Keep the default value, Basic. To write a common SegmentTimeline in the video AdaptationSet: Choose Compact. Note that MediaConvert will still write a SegmentTimeline in any Representation that does not share a common timeline. To write a video AdaptationSet for each different output framerate, and a common SegmentTimeline in each AdaptationSet: Choose Distinct.

type DashManifestStyle =
| "BASIC"
| "COMPACT"
| "DISTINCT"

§Type

§
"BASIC" | "COMPACT" | "DISTINCT" | cmnP.UnexpectedEnumValue
[src]