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

AudioMetadata

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

Metadata information about an audio stream. An array of AudioMetadata objects for the audio streams found in a stored video is returned by "GetSegmentDetection".

interface AudioMetadata {
Codec?: string | null;
DurationMillis?: number | null;
NumberOfChannels?: number | null;
SampleRate?: number | null;
}

§Properties

§
Codec?: string | null
[src]

The audio codec used to encode or decode the audio stream.

§
DurationMillis?: number | null
[src]

The duration of the audio stream in milliseconds.

§
NumberOfChannels?: number | null
[src]

The number of audio channels in the segment.

§
SampleRate?: number | null
[src]

The sample rate for the audio stream.