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

InputSettings

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

Live Event input parameters. There can be multiple inputs in a single Live Event.

interface InputSettings {
AudioSelectors?: AudioSelector[] | null;
CaptionSelectors?: CaptionSelector[] | null;
DeblockFilter?: InputDeblockFilter | null;
DenoiseFilter?: InputDenoiseFilter | null;
FilterStrength?: number | null;
InputFilter?: InputFilter | null;
NetworkInputSettings?: NetworkInputSettings | null;
Scte35Pid?: number | null;
Smpte2038DataPreference?: Smpte2038DataPreference | null;
SourceEndBehavior?: InputSourceEndBehavior | null;
VideoSelector?: VideoSelector | null;
}

§Properties

§
AudioSelectors?: AudioSelector[] | null
[src]

Used to select the audio stream to decode for inputs that have multiple available.

§
CaptionSelectors?: CaptionSelector[] | null
[src]

Used to select the caption input to use for inputs that have multiple available.

§
DeblockFilter?: InputDeblockFilter | null
[src]

Enable or disable the deblock filter when filtering.

§
DenoiseFilter?: InputDenoiseFilter | null
[src]

Enable or disable the denoise filter when filtering.

§
FilterStrength?: number | null
[src]

Adjusts the magnitude of filtering from 1 (minimal) to 5 (strongest).

§
InputFilter?: InputFilter | null
[src]

Turns on the filter for this input. MPEG-2 inputs have the deblocking filter enabled by default.

  1. auto - filtering will be applied depending on input type/quality
  2. disabled - no filtering will be applied to the input
  3. forced - filtering will be applied regardless of input type
§
NetworkInputSettings?: NetworkInputSettings | null
[src]

Input settings.

§
Scte35Pid?: number | null
[src]

PID from which to read SCTE-35 messages. If left undefined, EML will select the first SCTE-35 PID found in the input.

§
Smpte2038DataPreference?: Smpte2038DataPreference | null
[src]

Specifies whether to extract applicable ancillary data from a SMPTE-2038 source in this input. Applicable data types are captions, timecode, AFD, and SCTE-104 messages.

  • PREFER: Extract from SMPTE-2038 if present in this input, otherwise extract from another source (if any).
  • IGNORE: Never extract any ancillary data from SMPTE-2038.
§
SourceEndBehavior?: InputSourceEndBehavior | null
[src]

Loop input if it is a file. This allows a file input to be streamed indefinitely.

§
VideoSelector?: VideoSelector | null
[src]

Informs which video elementary stream to decode for input types that have multiple available.