THEOplayer > SourceDescription
Inherits from SourceConfiguration . See parent page for inherited properties and methods.
Describes the configuration of a player's source.
Signature:
export interface SourceDescription extends SourceConfiguration
Property |
Type |
Description |
---|---|---|
sources (optional) |
One or more media resources for playback. |
One or more media resources for playback.
Signature:
sources?: Sources;
- Multiple media sources should be used to increase platform compatibility. See examples below for important use cases.
- The player will try each source in the provided order.
In this example, the player will first try to play the DASH source. This might fail if the browser does not support the Widevine or PlayReady CDM, for example on Safari. In that case, the player will try to play the HLS source instead.
[{
src: 'dash-source-with-drm.mpd'
contentProtection: {
widevine: {
licenseAcquisitionURL: 'https://license.company.com/wv'
},
playready: {
licenseAcquisitionURL: 'https://license.company.com/pr'
}
}
},{
src: 'hls-source-with-drm.m3u8',
contentProtection: {
fairplay: {
certificateURL: 'https://license.company.com/fp'
}
}
}]
In this example, the player will first try to play the DASH source. This might fail if the browser does not support the Media Source Extensions API. In that case, the player will try to play the MP4 source instead, though without features such as adaptive bitrate switching.
[{
src: 'source.mpd'
},{
src: 'source.mp4'
}]