Interface ILoadRemoteSource

interface ILoadRemoteSource {
    baseUrl?: URL;
    keySystems?: Record<string, IKeySystemConfig>;
    loaderAlias?: string;
    mimeType: string;
    url: URL;
}

Hierarchy (View Summary)

Properties

baseUrl?: URL

You have to provide baseUrl for MPEG-DASH or HLS parsing If provided manifest/playlist has relative urls inside and provided as one of the following formats:

  • data: | blob: URL
  • string | ArrayBuffer | Blob | File asset
keySystems?: Record<string, IKeySystemConfig>
loaderAlias?: string
mimeType: string
url: URL

Popular use-cases: (http:|https:|data:|blob:) all should work fine with fetch Potentially, could be any other protocols, so custom network manager should be provider by the client