@nextcloud/dialogs
    Preparing search index...

    Interface MediaMetadata

    The MediaMetadata interface of the Media Session API allows a web page to provide rich media metadata for display in a platform UI.

    MDN Reference

    interface MediaMetadata {
        album: string;
        artist: string;
        artwork: readonly MediaImage[];
        title: string;
    }
    Index

    Properties

    album: string

    The album property of the MediaMetadata interface returns or sets the name of the album or collection containing the media to be played.

    MDN Reference

    artist: string

    The artist property of the MediaMetadata interface returns or sets the name of the artist, group, creator, etc., of the media to be played.

    MDN Reference

    artwork: readonly MediaImage[]

    The artwork property of the MediaMetadata interface returns or sets an array of objects representing images associated with playing media.

    MDN Reference

    title: string

    The title property of the MediaMetadata interface returns or sets the title of the media to be played.

    MDN Reference