Interface IKeySystemConfig

interface IKeySystemConfig {
    audioRobustness?: string;
    distinctiveIdentifier?: MediaKeysRequirement;
    getContentId?: (contentId: string) => string;
    licenseServerUri: string;
    persistentState?: MediaKeysRequirement;
    serverCertificate?: Uint8Array;
    serverCertificateUri?: string;
    sessionId?: string;
    sessionType?: MediaKeySessionType;
    videoRobustness?: string;
}

Properties

audioRobustness?: string
distinctiveIdentifier?: MediaKeysRequirement
getContentId?: (contentId: string) => string
licenseServerUri: string
persistentState?: MediaKeysRequirement
serverCertificate?: Uint8Array
serverCertificateUri?: string
sessionId?: string
sessionType?: MediaKeySessionType
videoRobustness?: string