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.3/services/medialive.ts?docs=full";

DVB Service Description Table (SDT)

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

§Properties

§
OutputSdt?: DvbSdtOutputSdt | null
[src]

Selects method of inserting SDT information into output stream. The sdtFollow setting copies SDT information from input stream to output stream. The sdtFollowIfPresent setting 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. The sdtManual setting means user will enter the SDT information. The sdtNone setting means output stream will not contain SDT information.

§
RepInterval?: 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 serviceDescriptor in the Service Description Table. Maximum length is 256 characters.

§
ServiceProviderName?: string | null
[src]

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