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

    Interface MediaAsset

    Represents a media asset.

    interface MediaAsset {
        clipMetadata: {
            clipName?: string;
            clipRequestId: string;
            expiresOn?: string;
            startTime?: string;
            stopTime?: string;
            storage: { storagePath: string; storageType: "Default" | "Gcs" | "AwsS3" };
        };
        download: { downloadExpiresOn: string; downloadUrl: string };
        id: string;
        itemType: "FullRecording" | "Clip";
        metadata: {
            duration: number;
            format: string;
            sizes?: any;
            thumbnails: string[];
            tracks: {
                bitrate: number;
                channels?: number;
                codec: string;
                framerate?: number;
                height?: number;
                samplerate?: number;
                type: string;
                width?: number;
            };
        };
        recordedOn: string;
        removedOn?: string;
        simulcastId?: string;
        sourceId?: string;
        status: "Started"
        | "Transcode"
        | "Complete"
        | "Deleting"
        | "Error";
        stoppedOn?: string;
        streamName: string;
        tokenId?: number;
    }
    Index

    Properties

    clipMetadata: {
        clipName?: string;
        clipRequestId: string;
        expiresOn?: string;
        startTime?: string;
        stopTime?: string;
        storage: { storagePath: string; storageType: "Default" | "Gcs" | "AwsS3" };
    }

    Type Declaration

    • OptionalclipName?: string

      Clip label if assigned by user.

    • clipRequestId: string

      Id associated with clipping request. Multiple clips generated from the same request can share a single clipRequestId.

    • OptionalexpiresOn?: string
    • OptionalstartTime?: string
    • OptionalstopTime?: string
    • storage: { storagePath: string; storageType: "Default" | "Gcs" | "AwsS3" }

      Storage information.

      • storagePath: string

        Prefix to clip storage location. Available only for external storage configurations.

      • storageType: "Default" | "Gcs" | "AwsS3"

        Storage provider type.

    download: { downloadExpiresOn: string; downloadUrl: string }
    id: string
    itemType: "FullRecording" | "Clip"
    metadata: {
        duration: number;
        format: string;
        sizes?: any;
        thumbnails: string[];
        tracks: {
            bitrate: number;
            channels?: number;
            codec: string;
            framerate?: number;
            height?: number;
            samplerate?: number;
            type: string;
            width?: number;
        };
    }
    recordedOn: string
    removedOn?: string
    simulcastId?: string
    sourceId?: string
    status: "Started" | "Transcode" | "Complete" | "Deleting" | "Error"
    stoppedOn?: string
    streamName: string
    tokenId?: number