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

DashPackage

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

A Dynamic Adaptive Streaming over HTTP (DASH) packaging configuration.

interface DashPackage {
DashManifests: DashManifest[];
Encryption?: DashEncryption | null;
IncludeEncoderConfigurationInSegments?: boolean | null;
PeriodTriggers?: __PeriodTriggersElement[] | null;
SegmentDurationSeconds?: number | null;
SegmentTemplateFormat?: SegmentTemplateFormat | null;
}

§Properties

§
DashManifests: DashManifest[]
[src]

A list of DASH manifest configurations.

§
Encryption?: DashEncryption | null
[src]
§
IncludeEncoderConfigurationInSegments?: boolean | null
[src]

When includeEncoderConfigurationInSegments is set to true, MediaPackage places your encoder's Sequence Parameter Set (SPS), Picture Parameter Set (PPS), and Video Parameter Set (VPS) metadata in every video segment instead of in the init fragment. This lets you use different SPS/PPS/VPS settings for your assets during content playback.

§
PeriodTriggers?: __PeriodTriggersElement[] | null
[src]

A list of triggers that controls when the outgoing Dynamic Adaptive Streaming over HTTP (DASH) Media Presentation Description (MPD) will be partitioned into multiple periods. If empty, the content will not be partitioned into more than one period. If the list contains "ADS", new periods will be created where the Asset contains SCTE-35 ad markers.

§
SegmentDurationSeconds?: number | null
[src]

Duration (in seconds) of each segment. Actual segments will be rounded to the nearest multiple of the source segment duration.

§
SegmentTemplateFormat?: SegmentTemplateFormat | null
[src]

Determines the type of SegmentTemplate included in the Media Presentation Description (MPD). When set to NUMBER_WITH_TIMELINE, a full timeline is presented in each SegmentTemplate, with $Number$ media URLs. When set to TIME_WITH_TIMELINE, a full timeline is presented in each SegmentTemplate, with $Time$ media URLs. When set to NUMBER_WITH_DURATION, only a duration is included in each SegmentTemplate, with $Number$ media URLs.