Amazon Vinyl
    Preparing search index...

    Interface MediaFormatMetadata

    Contains media formatting and encryption metadata.

    interface MediaFormatMetadata {
        contentProtections: readonly DrmProtection[];
        contentType: ContentType | null;
        encryptionScheme: string | null;
        initDataType: string | null;
        mimeType: string | null;
    }

    Hierarchy (View Summary)

    Index
    contentProtections: readonly DrmProtection[]

    Protection schemes used in this media.

    contentType: ContentType | null

    The content type of the representation, e.g. 'audio', 'video', 'text' Must be non-null for segmented media.

    encryptionScheme: string | null

    The method of encryption, or null.

    initDataType: string | null

    The initialization data format.

    mimeType: string | null

    The full MIME type of the media.

    Must be non-null for segmented media.