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

DashManifest

import type { DashManifest } from "https://aws-api.deno.dev/v0.3/services/mediapackagevod.ts?docs=full";

A DASH manifest configuration.

interface DashManifest {
ManifestLayout?: ManifestLayout | null;
ManifestName?: string | null;
MinBufferTimeSeconds?: number | null;
Profile?: Profile | null;
StreamSelection?: StreamSelection | null;
}

§Properties

§
ManifestLayout?: ManifestLayout | null
[src]

Determines the position of some tags in the Media Presentation Description (MPD). When set to FULL, elements like SegmentTemplate and ContentProtection are included in each Representation. When set to COMPACT, duplicate elements are combined and presented at the AdaptationSet level.

§
ManifestName?: string | null
[src]

An optional string to include in the name of the manifest.

§
MinBufferTimeSeconds?: number | null
[src]

Minimum duration (in seconds) that a player will buffer media before starting the presentation.

§
Profile?: Profile | null
[src]

The Dynamic Adaptive Streaming over HTTP (DASH) profile type. When set to "HBBTV_1_5", HbbTV 1.5 compliant output is enabled.

§
StreamSelection?: StreamSelection | null
[src]