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

CmafPackage

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

A Common Media Application Format (CMAF) packaging configuration.

interface CmafPackage {
Encryption?: CmafEncryption | null;
HlsManifests?: HlsManifest[] | null;
SegmentDurationSeconds?: number | null;
SegmentPrefix?: string | null;
StreamSelection?: StreamSelection | null;
}

§Properties

§
Encryption?: CmafEncryption | null
[src]
§
HlsManifests?: HlsManifest[] | null
[src]

A list of HLS manifest configurations

§
SegmentDurationSeconds?: number | null
[src]

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

§
SegmentPrefix?: string | null
[src]

An optional custom string that is prepended to the name of each segment. If not specified, it defaults to the ChannelId.

§
StreamSelection?: StreamSelection | null
[src]