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

VideoMetadata

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

Information about a video that Amazon Rekognition analyzed. Videometadata is returned in every page of paginated responses from a Amazon Rekognition video operation.

interface VideoMetadata {
Codec?: string | null;
ColorRange?: VideoColorRange | null;
DurationMillis?: number | null;
Format?: string | null;
FrameHeight?: number | null;
FrameRate?: number | null;
FrameWidth?: number | null;
}

§Properties

§
Codec?: string | null
[src]

Type of compression used in the analyzed video.

§
ColorRange?: VideoColorRange | null
[src]

A description of the range of luminance values in a video, either LIMITED (16 to 235) or FULL (0 to 255).

§
DurationMillis?: number | null
[src]

Length of the video in milliseconds.

§
Format?: string | null
[src]

Format of the analyzed video. Possible values are MP4, MOV and AVI.

§
FrameHeight?: number | null
[src]

Vertical pixel dimension of the video.

§
FrameRate?: number | null
[src]

Number of frames per second in the video.

§
FrameWidth?: number | null
[src]

Horizontal pixel dimension of the video.