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

InputDeviceHdSettings

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

Settings that describe the active source from the input device, and the video characteristics of that source.

interface InputDeviceHdSettings {
ActiveInput?: InputDeviceActiveInput | null;
ConfiguredInput?: InputDeviceConfiguredInput | null;
DeviceState?: InputDeviceState | null;
Framerate?: number | null;
Height?: number | null;
MaxBitrate?: number | null;
ScanType?: InputDeviceScanType | null;
Width?: number | null;
}

§Properties

§
ActiveInput?: InputDeviceActiveInput | null
[src]

If you specified Auto as the configured input, specifies which of the sources is currently active (SDI or HDMI).

§
ConfiguredInput?: InputDeviceConfiguredInput | null
[src]

The source at the input device that is currently active. You can specify this source.

§
DeviceState?: InputDeviceState | null
[src]

The state of the input device.

§
Framerate?: number | null
[src]

The frame rate of the video source.

§
Height?: number | null
[src]

The height of the video source, in pixels.

§
MaxBitrate?: number | null
[src]

The current maximum bitrate for ingesting this source, in bits per second. You can specify this maximum.

§
ScanType?: InputDeviceScanType | null
[src]

The scan type of the video source.

§
Width?: number | null
[src]

The width of the video source, in pixels.