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

DvbSdtSettings

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

Use these settings to insert a DVB Service Description Table (SDT) in the transport stream of this output. When you work directly in your JSON job specification, include this object only when your job has a transport stream output and the container settings contain the object M2tsSettings.

interface DvbSdtSettings {
OutputSdt?: OutputSdt | null;
SdtInterval?: number | null;
ServiceName?: string | null;
ServiceProviderName?: string | null;
}

§Properties

§
OutputSdt?: OutputSdt | null
[src]

Selects method of inserting SDT information into output stream. "Follow input SDT" copies SDT information from input stream to output stream. "Follow input SDT if present" copies SDT information from input stream to output stream if SDT information is present in the input, otherwise it will fall back on the user-defined values. Enter "SDT Manually" means user will enter the SDT information. "No SDT" means output stream will not contain SDT information.

§
SdtInterval?: number | null
[src]

The number of milliseconds between instances of this table in the output transport stream.

§
ServiceName?: string | null
[src]

The service name placed in the service_descriptor in the Service Description Table. Maximum length is 256 characters.

§
ServiceProviderName?: string | null
[src]

The service provider name placed in the service_descriptor in the Service Description Table. Maximum length is 256 characters.