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

MsSmoothGroupSettings

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

Settings related to your Microsoft Smooth Streaming output package. For more information, see https://docs.aws.amazon.com/mediaconvert/latest/ug/outputs-file-ABR.html. When you work directly in your JSON job specification, include this object and any required children when you set Type, under OutputGroupSettings, to MS_SMOOTH_GROUP_SETTINGS.

interface MsSmoothGroupSettings {
AdditionalManifests?: MsSmoothAdditionalManifest[] | null;
AudioDeduplication?: MsSmoothAudioDeduplication | null;
Destination?: string | null;
DestinationSettings?: DestinationSettings | null;
Encryption?: MsSmoothEncryptionSettings | null;
FragmentLength?: number | null;
FragmentLengthControl?: MsSmoothFragmentLengthControl | null;
ManifestEncoding?: MsSmoothManifestEncoding | null;
}

§Properties

§
AdditionalManifests?: MsSmoothAdditionalManifest[] | null
[src]

By default, the service creates one .ism Microsoft Smooth Streaming manifest for each Microsoft Smooth Streaming output group in your job. This default manifest references every output in the output group. To create additional manifests that reference a subset of the outputs in the output group, specify a list of them here.

§
AudioDeduplication?: MsSmoothAudioDeduplication | null
[src]

COMBINE_DUPLICATE_STREAMS combines identical audio encoding settings across a Microsoft Smooth output group into a single audio stream.

§
Destination?: string | null
[src]

Use Destination (Destination) to specify the S3 output location and the output filename base. Destination accepts format identifiers. If you do not specify the base filename in the URI, the service will use the filename of the input file. If your job has multiple inputs, the service uses the filename of the first input file.

§
DestinationSettings?: DestinationSettings | null
[src]

Settings associated with the destination. Will vary based on the type of destination

§

If you are using DRM, set DRM System (MsSmoothEncryptionSettings) to specify the value SpekeKeyProvider.

§
FragmentLength?: number | null
[src]

Specify how you want MediaConvert to determine the fragment length. Choose Exact (EXACT) to have the encoder use the exact length that you specify with the setting Fragment length (FragmentLength). This might result in extra I-frames. Choose Multiple of GOP (GOP_MULTIPLE) to have the encoder round up the segment lengths to match the next GOP boundary.

§
FragmentLengthControl?: MsSmoothFragmentLengthControl | null
[src]

Specify how you want MediaConvert to determine the fragment length. Choose Exact (EXACT) to have the encoder use the exact length that you specify with the setting Fragment length (FragmentLength). This might result in extra I-frames. Choose Multiple of GOP (GOP_MULTIPLE) to have the encoder round up the segment lengths to match the next GOP boundary.

§
ManifestEncoding?: MsSmoothManifestEncoding | null
[src]

Use Manifest encoding (MsSmoothManifestEncoding) to specify the encoding format for the server and client manifest. Valid options are utf8 and utf16.