@dolbyio/dolbyio-rest-apis-client - v5.1.1
    Preparing search index...

    Interface RecordMetadata

    Response Data for the Metadata for a clip.

    interface RecordMetadata {
        duration: number;
        format: string;
        sizes?: Record<string, any>;
        thumbnails: string[];
        tracks: {
            bitrate: number;
            channels?: number;
            codec: string;
            framerate?: number;
            height?: number;
            samplerate?: number;
            type: string;
            width?: number;
        }[];
    }
    Index

    Properties

    duration: number

    Duration in seconds of clip.

    format: string

    Format of the clip

    sizes?: Record<string, any>

    Optional, additional fields expected, sizes available.

    thumbnails: string[]

    Array of thumbnail URLs

    tracks: {
        bitrate: number;
        channels?: number;
        codec: string;
        framerate?: number;
        height?: number;
        samplerate?: number;
        type: string;
        width?: number;
    }[]

    Array of tracks.

    Type Declaration

    • bitrate: number

      Bitrate of the track.

    • Optionalchannels?: number

      Optional, int32, Number of channels.

    • codec: string

      Track Codec

    • Optionalframerate?: number

      Optional, int32, Framerate of Track.

    • Optionalheight?: number

      Optional, int32 Height of track.

    • Optionalsamplerate?: number

      Optional, int64, Sample rate of track.

    • type: string

      Track type

    • Optionalwidth?: number

      Optional, int32, Width of track.