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

HlsPackage

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

An HTTP Live Streaming (HLS) packaging configuration.

interface HlsPackage {
Encryption?: HlsEncryption | null;
HlsManifests: HlsManifest[];
IncludeDvbSubtitles?: boolean | null;
SegmentDurationSeconds?: number | null;
UseAudioRenditionGroup?: boolean | null;
}

§Properties

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

A list of HLS manifest configurations.

§
IncludeDvbSubtitles?: boolean | null
[src]

When enabled, MediaPackage passes through digital video broadcasting (DVB) subtitles into the output.

§
SegmentDurationSeconds?: number | null
[src]

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

§
UseAudioRenditionGroup?: boolean | null
[src]

When enabled, audio streams will be placed in rendition groups in the output.