interface DrmAPI {
    renewLicense(drmLicenseId): Promise<void>;
}

Methods

Methods

  • Starts a DRM license renewal request for the license with the specified ID.

    Works with PlayReady DRM only. (Widevine DRM is managing license renewals on its own). FairPlay DRM license renewals are not supported yet.

    Parameters

    • drmLicenseId: string

      The ID of the DrmLicense that shall be renewed.

    Returns Promise<void>

    A promise that resolves, if the license renewal request was successful and rejects otherwise.

    Since

    8.52