diff --git a/theoplayer/changelog.md b/theoplayer/changelog.md index 9a56ddb980ec..29bd097b982a 100644 --- a/theoplayer/changelog.md +++ b/theoplayer/changelog.md @@ -5,6 +5,48 @@ sidebar_custom_props: { 'icon': '📰' } toc_max_heading_level: 2 --- +## 🚀 10.8.0 (2026/01/15) + +### Web + +#### ✨ Features + +- Added support for MPEG-DASH content steering. +- Added support for `player.metrics.bufferedSegments` when playing an HLS stream. + +#### ⚡ Improvements + +- OptiView Streaming sources now support more `TypedSource` properties, such as `TypedSource.abr` and `TypedSource.crossOrigin`. + +#### 🐛 Issues + +- Fixed an issue where some HLS live streams could stall indefinitely when playing over an `#EXT-X-DISCONTINUITY` on Samsung Tizen devices. +- Fixed an issue where the `player.currentTime` could be incorrect after playing a CSAI ad with OptiView Ads. +- Fixed an issue where `player.metrics.currentBandwidthEstimate` was not set when playing an HESP stream. +- Fixed an issue where the player would sometimes jump back to the first ad of an OptiView Ads break instead of continuing with the second ad of that break. +- Fixed an issue for OptiView Ads where a VAST ad break in Safari native fullscreen could stutter. + +### iOS + +#### ✨ Features + +- Added the `Network` API to `CachingTask` to help enable media playlist interception. + +#### 🐛 Issues + +- Fixed an issue where seeking to the live point could cause unnecessary buffering on OptiView Streaming (THEOlive) sources. + +#### 👎 Deprecations + +- Deprecated `DeveloperSettings` & `ManifestInterceptor` in favor of `NetworkAPI`. You can access the network API from `player.network` or `cachingTask.network`. For a comprehensive guide, please refer to https://optiview.dolby.com/docs/theoplayer/how-to-guides/network/ios-hls-media-playlist-interceptor/. + +### Roku + +#### 🐛 Issues + +- Fixed an issue where OptiView Live streams would not properly fall back to a backup feed in case of a streaming error. +- Fixed an issue where OptiView Live streams could experience endless buffering without recovering. + ## 🚀 10.7.0 (2025/12/16) ### General diff --git a/theoplayer/how-to-guides/08-network/03-ios-hls-media-playlist-interceptor.md b/theoplayer/how-to-guides/08-network/03-ios-hls-media-playlist-interceptor.md new file mode 100644 index 000000000000..42f3c9de44cc --- /dev/null +++ b/theoplayer/how-to-guides/08-network/03-ios-hls-media-playlist-interceptor.md @@ -0,0 +1,65 @@ +# iOS HLS Media Playlist Interceptor + +THEOplayer iOS SDK makes a number of network requests and receives responses while playing video. These requests and responses can be intercepted to make a new or modified request, or respond with a new response to the HLS playlist requests. + +This guide explains how you set up THEOplayer iOS SDK to add and remove request/response interceptors. + +We will use a simple UIKit UIViewController for this guide. + +## Set up THEOplayer + +```swift +class ViewController: UIViewController { + private var player: THEOplayer? + + override func viewDidLoad() { + super.viewDidLoad() + let player = THEOplayer() + self.player = player + player.frame = view.bounds + player.addAsSubview(of: self.view) + player.network.addMediaPlaylistInterceptor(self) + } +} +``` + +## Intercepting the requests and/or responses + +Use the `type` parameter on each method below to filter for HLS playlist types ie. master, video, subtitles, etc... +The rest of the usage is explained in comments in the code snippet below. + +```swift +extension ViewController: MediaPlaylistInterceptor { + // For modifications that you would make to the request, ie. add custom headers, query parameters, etc... + func shouldInterceptPlaylistRequest(type: THEOplayerSDK.HlsPlaylistType) -> Bool { true } + + // For modifications that you would make to the response, ie. edit the m3u8 file content, vtt file content etc... + func shouldInterceptPlaylistResponse(type: THEOplayerSDK.HlsPlaylistType) -> Bool { true } + + // Will be called if shouldInterceptPlaylistRequest returns true + func didInterceptPlaylistRequest(type: THEOplayerSDK.HlsPlaylistType, request: URLRequest) async throws -> URLRequest { + var modifiedRequest = request + // modify + // ... + //... + return modifiedRequest + } + + // Will be called if shouldInterceptPlaylistResponse returns true + func didInterceptPlaylistResponse(type: THEOplayerSDK.HlsPlaylistType, url: URL, response: URLResponse, data: Data) async throws -> Data { + var modifiedResponseData = "" + // customize the data string that you would like to return, should be a valid HLS playlist file + // ... + // ... + let customDataResponse = modifiedResponseData.data(using: .utf8) + return customDataResponse ?? data // `customDataResponse` is empty so playback will fail in this demo; return `data` to play + } + + // Handle failure. + func failedToPerformURLRequest(request: URLRequest, response: URLResponse) {} +} +``` + +## DRM request interception + +The `MediaPlaylistInterceptor` API does not intercept DRM requests. To interecept fairplay DRM requests, take a look at the following solution: https://github.com/THEOplayer/samples-drm-integration/blob/master/ios/README.md diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Adaptive Bit Rate API.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Adaptive Bit Rate API.html index 684b4d467ee9..c571edf402e1 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Adaptive Bit Rate API.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Adaptive Bit Rate API.html @@ -1111,7 +1111,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Ads API.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Ads API.html index 0952874f4956..fdab45d233cb 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Ads API.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Ads API.html @@ -1379,7 +1379,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Ads Events.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Ads Events.html index 32e1e7c5dcc5..cb941d05c4c8 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Ads Events.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Ads Events.html @@ -1338,7 +1338,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Airplay API.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Airplay API.html index e1516bc0f53f..2590734f83b8 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Airplay API.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Airplay API.html @@ -1026,7 +1026,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Airplay Events.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Airplay Events.html index 90bdf6d49bd8..0ebd4258701b 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Airplay Events.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Airplay Events.html @@ -1082,7 +1082,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Base classes & interfaces.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Base classes & interfaces.html index a15c6904ced5..e753976aa240 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Base classes & interfaces.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Base classes & interfaces.html @@ -1165,7 +1165,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/CSAI.html b/theoplayer/static/theoplayer/v10/api-reference/ios/CSAI.html index f3dd7af75ace..cc5bbbd74691 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/CSAI.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/CSAI.html @@ -1109,7 +1109,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Cache API.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Cache API.html index 6dfe08f444c1..f6051334f9d1 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Cache API.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Cache API.html @@ -1256,7 +1256,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Cache Events.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Cache Events.html index ec4c7cd248c4..0840e32077fe 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Cache Events.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Cache Events.html @@ -1135,7 +1135,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/ChromeCast API.html b/theoplayer/static/theoplayer/v10/api-reference/ios/ChromeCast API.html index 0dcb42958562..1c10f4673f72 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/ChromeCast API.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/ChromeCast API.html @@ -1273,7 +1273,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/ChromeCast Events.html b/theoplayer/static/theoplayer/v10/api-reference/ios/ChromeCast Events.html index 7cd1cebc9eae..c1e558e48ef6 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/ChromeCast Events.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/ChromeCast Events.html @@ -1082,7 +1082,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/ABRMetadata.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/ABRMetadata.html index 829568ea574d..6b0372bc6e7a 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/ABRMetadata.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/ABRMetadata.html @@ -1081,7 +1081,7 @@

Parameters

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/ABRStrategyConfiguration.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/ABRStrategyConfiguration.html index 8d67f6c84e5f..f104cd237cb2 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/ABRStrategyConfiguration.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/ABRStrategyConfiguration.html @@ -1120,7 +1120,7 @@

Parameters

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/ActiveQualityChangedEvent.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/ActiveQualityChangedEvent.html index 4bda2dc28e09..2198e96fa765 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/ActiveQualityChangedEvent.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/ActiveQualityChangedEvent.html @@ -1089,7 +1089,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/AdErrorEvent.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/AdErrorEvent.html index 4edfd0bd202e..3bd52b08c28e 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/AdErrorEvent.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/AdErrorEvent.html @@ -1065,7 +1065,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/AdSkipEvent.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/AdSkipEvent.html index ca00c9430201..0cef3236933a 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/AdSkipEvent.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/AdSkipEvent.html @@ -1035,7 +1035,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/AdType.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/AdType.html index 227cb99e5bfc..1091773ce44c 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/AdType.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/AdType.html @@ -1089,7 +1089,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/AddCueEvent.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/AddCueEvent.html index 765cc342f8f2..cb4fbf1fe7f1 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/AddCueEvent.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/AddCueEvent.html @@ -1089,7 +1089,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/AddTrackEvent.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/AddTrackEvent.html index 435348bb7aa8..9c6cb4b1c218 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/AddTrackEvent.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/AddTrackEvent.html @@ -1089,7 +1089,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/AirPlayEvent.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/AirPlayEvent.html index bcfb2e10d7ec..d0dfd381ef04 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/AirPlayEvent.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/AirPlayEvent.html @@ -1062,7 +1062,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/AirPlayStateChangeEvent.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/AirPlayStateChangeEvent.html index 1e0f10d166e8..47a3a9e8be16 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/AirPlayStateChangeEvent.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/AirPlayStateChangeEvent.html @@ -1035,7 +1035,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/AspectRatioChangeEvent.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/AspectRatioChangeEvent.html index 08f25124b4ba..f24990cd676f 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/AspectRatioChangeEvent.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/AspectRatioChangeEvent.html @@ -1089,7 +1089,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/AxinomDRMConfiguration.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/AxinomDRMConfiguration.html index e9b6c9f73acb..8eb636cc7fd6 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/AxinomDRMConfiguration.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/AxinomDRMConfiguration.html @@ -1097,7 +1097,7 @@

Parameters

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/AzureDRMConfiguration.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/AzureDRMConfiguration.html index 41e3bf662be6..43b9451d104e 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/AzureDRMConfiguration.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/AzureDRMConfiguration.html @@ -1097,7 +1097,7 @@

Parameters

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/CacheEvent.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/CacheEvent.html index e4895d0225a0..65dbd78518d8 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/CacheEvent.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/CacheEvent.html @@ -1062,7 +1062,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/CachingParameters.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/CachingParameters.html index a8d70bbb6b14..bebe97bcc58d 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/CachingParameters.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/CachingParameters.html @@ -1240,7 +1240,7 @@

Parameters

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/CachingParametersTrackSelection.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/CachingParametersTrackSelection.html index 15ffb1661da6..8c0ae0c90fb6 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/CachingParametersTrackSelection.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/CachingParametersTrackSelection.html @@ -1085,7 +1085,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/CachingParametersTrackSelectionBuilder.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/CachingParametersTrackSelectionBuilder.html index 056dd2938c72..195062027456 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/CachingParametersTrackSelectionBuilder.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/CachingParametersTrackSelectionBuilder.html @@ -1104,7 +1104,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/CachingTaskErrorStateChangeEvent.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/CachingTaskErrorStateChangeEvent.html index d581a44950eb..88f4eb753b6e 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/CachingTaskErrorStateChangeEvent.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/CachingTaskErrorStateChangeEvent.html @@ -1035,7 +1035,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/CachingTaskIdleStateChangeEvent.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/CachingTaskIdleStateChangeEvent.html index 3cff0a50c0db..0a4f613cfa21 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/CachingTaskIdleStateChangeEvent.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/CachingTaskIdleStateChangeEvent.html @@ -1035,7 +1035,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/CastConfiguration.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/CastConfiguration.html index 6a0188c79ed5..f66af82c3b53 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/CastConfiguration.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/CastConfiguration.html @@ -1089,7 +1089,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/CastError.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/CastError.html index e01b753ab19b..375576d44941 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/CastError.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/CastError.html @@ -1062,7 +1062,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/CastErrorEvent.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/CastErrorEvent.html index 83698949fcd9..389b48a83665 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/CastErrorEvent.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/CastErrorEvent.html @@ -1035,7 +1035,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/CertificateResponse.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/CertificateResponse.html index 0e2fc5b1b3e8..687d8b83c8fa 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/CertificateResponse.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/CertificateResponse.html @@ -1114,7 +1114,7 @@

Parameters

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/ChromecastMetadataDescription.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/ChromecastMetadataDescription.html index 61a140defa80..3b415a2bdc1b 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/ChromecastMetadataDescription.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/ChromecastMetadataDescription.html @@ -1266,7 +1266,7 @@

Parameters

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/ChromecastMetadataImage.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/ChromecastMetadataImage.html index 3f031431ed03..b803e343db10 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/ChromecastMetadataImage.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/ChromecastMetadataImage.html @@ -1159,7 +1159,7 @@

Parameters

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/ComcastDRMConfiguration.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/ComcastDRMConfiguration.html index dd39b9b4f6f2..11f492c21a39 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/ComcastDRMConfiguration.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/ComcastDRMConfiguration.html @@ -1172,7 +1172,7 @@

Parameters

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/CueChangeEvent.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/CueChangeEvent.html index 6f7b83b2db1f..259ba656f6a7 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/CueChangeEvent.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/CueChangeEvent.html @@ -1089,7 +1089,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/CueEnterEvent.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/CueEnterEvent.html index f8271aaacef7..14fe94a8b41d 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/CueEnterEvent.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/CueEnterEvent.html @@ -1089,7 +1089,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/CueExitEvent.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/CueExitEvent.html index ad7aff5b6477..4e9ae6bba642 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/CueExitEvent.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/CueExitEvent.html @@ -1089,7 +1089,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/CueUpdateEvent.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/CueUpdateEvent.html index 8e4159f20dae..274f76efb03f 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/CueUpdateEvent.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/CueUpdateEvent.html @@ -1089,7 +1089,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/CurrentSourceChangeEvent.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/CurrentSourceChangeEvent.html index 2de566c8b61f..e76eee5ee026 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/CurrentSourceChangeEvent.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/CurrentSourceChangeEvent.html @@ -1035,7 +1035,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/CurrentTimeEvent.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/CurrentTimeEvent.html index 957cdfd35621..d1b76c055843 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/CurrentTimeEvent.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/CurrentTimeEvent.html @@ -1035,7 +1035,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/CustomAttributes.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/CustomAttributes.html index 535e5c0f4100..2a7bef8716f3 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/CustomAttributes.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/CustomAttributes.html @@ -1116,7 +1116,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/DRMTodayDRMConfiguration.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/DRMTodayDRMConfiguration.html index 12d0cc008c44..a7f4c8718636 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/DRMTodayDRMConfiguration.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/DRMTodayDRMConfiguration.html @@ -1243,7 +1243,7 @@

Parameters

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/DurationChangeEvent.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/DurationChangeEvent.html index 608464672d8e..7bc7e93eb185 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/DurationChangeEvent.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/DurationChangeEvent.html @@ -1042,7 +1042,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/EnterCueEvent.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/EnterCueEvent.html index bc8919611559..21cc78c41b46 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/EnterCueEvent.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/EnterCueEvent.html @@ -1089,7 +1089,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/ErrorEvent.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/ErrorEvent.html index f19ba7e780f9..a2a8861a9863 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/ErrorEvent.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/ErrorEvent.html @@ -1069,7 +1069,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/EventType.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/EventType.html index 2d98573c8578..7c35aad1ffc6 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/EventType.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/EventType.html @@ -1100,7 +1100,7 @@

Parameters

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/ExitCueEvent.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/ExitCueEvent.html index da31187ed9bf..394192da447e 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/ExitCueEvent.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/ExitCueEvent.html @@ -1089,7 +1089,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/EzdrmDRMConfiguration.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/EzdrmDRMConfiguration.html index 48612a4af3a8..42fc2543289a 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/EzdrmDRMConfiguration.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/EzdrmDRMConfiguration.html @@ -1055,7 +1055,7 @@

Parameters

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/FairPlayDRMConfiguration.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/FairPlayDRMConfiguration.html index 841b6c36667e..dbbf2eb572d3 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/FairPlayDRMConfiguration.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/FairPlayDRMConfiguration.html @@ -1288,7 +1288,7 @@

Parameters

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/GoogleDAIConfiguration.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/GoogleDAIConfiguration.html index 64cc7b0f4479..58a4c52bb618 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/GoogleDAIConfiguration.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/GoogleDAIConfiguration.html @@ -1186,7 +1186,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/GoogleDAILiveConfiguration.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/GoogleDAILiveConfiguration.html index ae22624539d0..07436c24b67a 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/GoogleDAILiveConfiguration.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/GoogleDAILiveConfiguration.html @@ -1141,7 +1141,7 @@

Parameters

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/GoogleDAITypedSource.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/GoogleDAITypedSource.html index 85621b38fa07..0cf349afaab4 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/GoogleDAITypedSource.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/GoogleDAITypedSource.html @@ -1072,7 +1072,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/GoogleDAIVodConfiguration.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/GoogleDAIVodConfiguration.html index d9af83f39bd0..fd002e6d1e31 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/GoogleDAIVodConfiguration.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/GoogleDAIVodConfiguration.html @@ -1174,7 +1174,7 @@

Parameters

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/GoogleImaAdDescription.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/GoogleImaAdDescription.html index 2537111a9d1c..bd21c4784187 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/GoogleImaAdDescription.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/GoogleImaAdDescription.html @@ -1166,7 +1166,7 @@

Parameters

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/IrdetoDRMConfiguration.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/IrdetoDRMConfiguration.html index d93fe12c07d7..f313e6c9f797 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/IrdetoDRMConfiguration.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/IrdetoDRMConfiguration.html @@ -1139,7 +1139,7 @@

Parameters

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/KeyOSDRMConfiguration.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/KeyOSDRMConfiguration.html index e22068a7451b..4a7ac2d74408 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/KeyOSDRMConfiguration.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/KeyOSDRMConfiguration.html @@ -1097,7 +1097,7 @@

Parameters

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/KeySystemConfiguration.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/KeySystemConfiguration.html index f447217d7ded..9a9c199683be 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/KeySystemConfiguration.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/KeySystemConfiguration.html @@ -1225,7 +1225,7 @@

Parameters

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/KeySystemConfigurationCollection.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/KeySystemConfigurationCollection.html index 7d1501d356e6..ec6407c0f549 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/KeySystemConfigurationCollection.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/KeySystemConfigurationCollection.html @@ -1185,7 +1185,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/LicenseRequest.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/LicenseRequest.html index f9a7f4e7685a..2e06fa4f4fa5 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/LicenseRequest.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/LicenseRequest.html @@ -1134,7 +1134,7 @@

Parameters

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/LicenseResponse.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/LicenseResponse.html index 674b07f00e68..d7ee84976ef4 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/LicenseResponse.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/LicenseResponse.html @@ -1114,7 +1114,7 @@

Parameters

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/MetadataDescription.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/MetadataDescription.html index 22d4625adfda..259bcf1df362 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/MetadataDescription.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/MetadataDescription.html @@ -1128,7 +1128,7 @@

Parameters

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/Metrics.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/Metrics.html index a3a651628ead..cf6091fc5581 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/Metrics.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/Metrics.html @@ -1074,7 +1074,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/MultiplatformDRMConfiguration.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/MultiplatformDRMConfiguration.html index e91519812330..426e371b7ad6 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/MultiplatformDRMConfiguration.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/MultiplatformDRMConfiguration.html @@ -1380,7 +1380,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/NetworkConfiguration.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/NetworkConfiguration.html index 143539c7592b..d3a49a7a1353 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/NetworkConfiguration.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/NetworkConfiguration.html @@ -1037,7 +1037,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/NetworkConfigurationBuilder.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/NetworkConfigurationBuilder.html index 17702ad46f88..2109f80cd3c7 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/NetworkConfigurationBuilder.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/NetworkConfigurationBuilder.html @@ -1035,7 +1035,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/NetworkErrorEvent.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/NetworkErrorEvent.html index 4b0cd2d60c37..ed93bc323dd6 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/NetworkErrorEvent.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/NetworkErrorEvent.html @@ -1089,7 +1089,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/OmidFriendlyObstruction.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/OmidFriendlyObstruction.html index d5f6c5389bff..b58d0c20b7ef 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/OmidFriendlyObstruction.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/OmidFriendlyObstruction.html @@ -1159,7 +1159,7 @@

Parameters

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/PiPConfiguration.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/PiPConfiguration.html index bedb6d4c7bcf..60a819107537 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/PiPConfiguration.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/PiPConfiguration.html @@ -1150,7 +1150,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/PiPConfigurationBuilder.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/PiPConfigurationBuilder.html index 00bd75897429..c4c3a19c7a68 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/PiPConfigurationBuilder.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/PiPConfigurationBuilder.html @@ -1177,7 +1177,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/PlayerEvent.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/PlayerEvent.html index 1ea1f7696603..5a69efe337ef 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/PlayerEvent.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/PlayerEvent.html @@ -1062,7 +1062,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/PresentationModeChangeEvent.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/PresentationModeChangeEvent.html index 65b07800e68c..c182a3b59bf1 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/PresentationModeChangeEvent.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/PresentationModeChangeEvent.html @@ -1042,7 +1042,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/RateChangeEvent.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/RateChangeEvent.html index 32583ad95b68..6a47b068e0ce 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/RateChangeEvent.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/RateChangeEvent.html @@ -1042,7 +1042,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/ReadyStateEvent.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/ReadyStateEvent.html index ece49174c384..765bebae24fc 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/ReadyStateEvent.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/ReadyStateEvent.html @@ -1035,7 +1035,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/RemoveCueEvent.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/RemoveCueEvent.html index 816e596376a4..3292978ea4d0 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/RemoveCueEvent.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/RemoveCueEvent.html @@ -1096,7 +1096,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/RemoveTrackEvent.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/RemoveTrackEvent.html index 88ccd799ee83..6e396fd3f080 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/RemoveTrackEvent.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/RemoveTrackEvent.html @@ -1089,7 +1089,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/Request.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/Request.html index 54e137be52be..8506ed90faee 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/Request.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/Request.html @@ -1214,7 +1214,7 @@

Parameters

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/Response.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/Response.html index 418e96810c27..222d9b8b6a00 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/Response.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/Response.html @@ -1170,7 +1170,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/SourceAbrConfiguration.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/SourceAbrConfiguration.html index 84857cc50768..1fb856392100 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/SourceAbrConfiguration.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/SourceAbrConfiguration.html @@ -1040,7 +1040,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/SourceChangeEvent.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/SourceChangeEvent.html index a35f34608690..db736290605b 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/SourceChangeEvent.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/SourceChangeEvent.html @@ -1035,7 +1035,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/SourceDescription.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/SourceDescription.html index 7264eb851ea7..d8151ac116b7 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/SourceDescription.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/SourceDescription.html @@ -1417,7 +1417,7 @@

Parameters

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/StateChangeEvent.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/StateChangeEvent.html index 999c050fecea..a40b127f8658 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/StateChangeEvent.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/StateChangeEvent.html @@ -1035,7 +1035,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/THEOMargins.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/THEOMargins.html index e1a0f1c87dac..4109e50a88e1 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/THEOMargins.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/THEOMargins.html @@ -1302,7 +1302,7 @@

Parameters

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/THEOplayer.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/THEOplayer.html index 72a7790be837..539abaa48ed3 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/THEOplayer.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/THEOplayer.html @@ -3383,7 +3383,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/THEOplayerConfiguration.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/THEOplayerConfiguration.html index 65705e98ddad..4359f089b460 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/THEOplayerConfiguration.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/THEOplayerConfiguration.html @@ -1232,7 +1232,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/THEOplayerConfigurationBuilder.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/THEOplayerConfigurationBuilder.html index 23935178acf7..663159c5992b 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/THEOplayerConfigurationBuilder.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/THEOplayerConfigurationBuilder.html @@ -1232,7 +1232,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/TextTrackDescription.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/TextTrackDescription.html index 88ff08e68590..b31a705bb02d 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/TextTrackDescription.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/TextTrackDescription.html @@ -1312,7 +1312,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/TextTrackStyleEdgeStyle.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/TextTrackStyleEdgeStyle.html index a441722fba39..178d7b087d8b 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/TextTrackStyleEdgeStyle.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/TextTrackStyleEdgeStyle.html @@ -1143,7 +1143,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/TimeRange.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/TimeRange.html index 51326fd2732e..7e92a6bdf2fc 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/TimeRange.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/TimeRange.html @@ -1120,7 +1120,7 @@

Parameters

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/TimeUpdateEvent.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/TimeUpdateEvent.html index 5868eb48a333..42922ada1caa 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/TimeUpdateEvent.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/TimeUpdateEvent.html @@ -1043,7 +1043,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/TrackChangeEvent.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/TrackChangeEvent.html index 7b3dc9722316..193a9fe06854 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/TrackChangeEvent.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/TrackChangeEvent.html @@ -1089,7 +1089,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/TrackUpdateEvent.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/TrackUpdateEvent.html index dd9669302e14..7d2d5aac1e3b 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/TrackUpdateEvent.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/TrackUpdateEvent.html @@ -1089,7 +1089,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/TypedSource.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/TypedSource.html index d6a62195dbec..6c26e0015034 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/TypedSource.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/TypedSource.html @@ -1383,7 +1383,7 @@

Parameters

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/UplynkDRMConfiguration.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/UplynkDRMConfiguration.html index 3f2a20e0618c..323f495caecd 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/UplynkDRMConfiguration.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/UplynkDRMConfiguration.html @@ -1055,7 +1055,7 @@

Parameters

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/VerimatrixDRMConfiguration.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/VerimatrixDRMConfiguration.html index 77c735c263fe..ada17049e093 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/VerimatrixDRMConfiguration.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/VerimatrixDRMConfiguration.html @@ -1055,7 +1055,7 @@

Parameters

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/VimondDRMConfiguration.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/VimondDRMConfiguration.html index e98c457e5184..d03e5223c9b8 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/VimondDRMConfiguration.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/VimondDRMConfiguration.html @@ -1055,7 +1055,7 @@

Parameters

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/VolumeChangeEvent.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/VolumeChangeEvent.html index f4fc8fecfe30..86ec7882c931 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/VolumeChangeEvent.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/VolumeChangeEvent.html @@ -1062,7 +1062,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/VudrmDRMConfiguration.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/VudrmDRMConfiguration.html index 2eaab4165985..121a73f6678e 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/VudrmDRMConfiguration.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/VudrmDRMConfiguration.html @@ -1097,7 +1097,7 @@

Parameters

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/WidevineDRMConfiguration.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/WidevineDRMConfiguration.html index 15bb46a09533..e876259be5bc 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/WidevineDRMConfiguration.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/WidevineDRMConfiguration.html @@ -1270,7 +1270,7 @@

Parameters

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/XstreamDRMConfiguration.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/XstreamDRMConfiguration.html index dd0cbd2e9331..52c3f19f6abb 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/XstreamDRMConfiguration.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Classes/XstreamDRMConfiguration.html @@ -1172,7 +1172,7 @@

Parameters

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Content Protection.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Content Protection.html index a3a41faf7cee..7c2deda217f2 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Content Protection.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Content Protection.html @@ -1603,7 +1603,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Enums/ABRStrategyType.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Enums/ABRStrategyType.html index 9d40f58466ed..6ad35480d609 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Enums/ABRStrategyType.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Enums/ABRStrategyType.html @@ -1132,7 +1132,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Enums/AdIntegration.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Enums/AdIntegration.html index f9df8f6b7bb4..416b377811f4 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Enums/AdIntegration.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Enums/AdIntegration.html @@ -1036,7 +1036,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Enums/AdIntegrationKind.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Enums/AdIntegrationKind.html index 9fcd91f55fba..973510e861a7 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Enums/AdIntegrationKind.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Enums/AdIntegrationKind.html @@ -1144,7 +1144,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Enums/AspectRatio.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Enums/AspectRatio.html index 6694628fd3d5..5a4c011f2f35 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Enums/AspectRatio.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Enums/AspectRatio.html @@ -1104,7 +1104,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Enums/CacheStatus.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Enums/CacheStatus.html index 29461882ee1b..33208f7b923a 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Enums/CacheStatus.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Enums/CacheStatus.html @@ -1043,7 +1043,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Enums/CachingTaskStatus.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Enums/CachingTaskStatus.html index bfecfca3888a..423005113010 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Enums/CachingTaskStatus.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Enums/CachingTaskStatus.html @@ -1043,7 +1043,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Enums/CastStrategy.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Enums/CastStrategy.html index c021b6be7a75..6996f8b0c9ff 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Enums/CastStrategy.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Enums/CastStrategy.html @@ -1117,7 +1117,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Enums/ChromecastMetadataType.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Enums/ChromecastMetadataType.html index b92504720d3b..c23e7350e19f 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Enums/ChromecastMetadataType.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Enums/ChromecastMetadataType.html @@ -1036,7 +1036,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Enums/DRMIntegration.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Enums/DRMIntegration.html index c3b1510e11ef..dc6106250cc7 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Enums/DRMIntegration.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Enums/DRMIntegration.html @@ -1036,7 +1036,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Enums/ErrorCategory.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Enums/ErrorCategory.html index 616f3a86871f..3756a82b44e2 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Enums/ErrorCategory.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Enums/ErrorCategory.html @@ -1386,7 +1386,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Enums/ErrorCode.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Enums/ErrorCode.html index 254d31cfd90f..8f056d1f4a0e 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Enums/ErrorCode.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Enums/ErrorCode.html @@ -1035,7 +1035,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Enums/KeySystemId.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Enums/KeySystemId.html index e85a799371fa..2265772fb046 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Enums/KeySystemId.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Enums/KeySystemId.html @@ -1036,7 +1036,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Enums/LicenseType.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Enums/LicenseType.html index 23d69f8ceafd..bacd84c082c5 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Enums/LicenseType.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Enums/LicenseType.html @@ -1036,7 +1036,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Enums/OmidFriendlyObstructionPurpose.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Enums/OmidFriendlyObstructionPurpose.html index 327382f89dd2..5b6394cec34e 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Enums/OmidFriendlyObstructionPurpose.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Enums/OmidFriendlyObstructionPurpose.html @@ -1121,7 +1121,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Enums/PictureInPictureCorner.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Enums/PictureInPictureCorner.html index b22508481ffa..a032e36146f2 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Enums/PictureInPictureCorner.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Enums/PictureInPictureCorner.html @@ -1046,7 +1046,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Enums/PlayerCastState.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Enums/PlayerCastState.html index 268527ba47fd..1020ea7a1694 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Enums/PlayerCastState.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Enums/PlayerCastState.html @@ -1144,7 +1144,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Enums/Preload.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Enums/Preload.html index 66bb09c3e136..a2aa0874b13f 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Enums/Preload.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Enums/Preload.html @@ -1121,7 +1121,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Enums/PresentationMode.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Enums/PresentationMode.html index 3e26affc696b..a676f45d42a3 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Enums/PresentationMode.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Enums/PresentationMode.html @@ -1116,7 +1116,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Enums/ReadyState.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Enums/ReadyState.html index 8945a0ed0774..98131015b4f6 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Enums/ReadyState.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Enums/ReadyState.html @@ -1143,7 +1143,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Enums/SSAIIntegrationId.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Enums/SSAIIntegrationId.html index 53366283f0a8..e68f7f473d9e 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Enums/SSAIIntegrationId.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Enums/SSAIIntegrationId.html @@ -1090,7 +1090,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Enums/StreamType.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Enums/StreamType.html index 16a6805ec92e..27e538eb2869 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Enums/StreamType.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Enums/StreamType.html @@ -1090,7 +1090,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Enums/THEOErrorCode.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Enums/THEOErrorCode.html index 2f48bfe5c91c..7e955ad1d8da 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Enums/THEOErrorCode.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Enums/THEOErrorCode.html @@ -2511,7 +2511,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Enums/TextTrackFormat.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Enums/TextTrackFormat.html index 73a06a319ebd..6220b748dbfd 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Enums/TextTrackFormat.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Enums/TextTrackFormat.html @@ -1100,7 +1100,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Enums/TextTrackKind.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Enums/TextTrackKind.html index 7f1fcdc66ee1..03c294eb95c2 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Enums/TextTrackKind.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Enums/TextTrackKind.html @@ -1176,7 +1176,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Enums/TextTrackMode.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Enums/TextTrackMode.html index 436f0fb6311b..9d14cbb67efb 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Enums/TextTrackMode.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Enums/TextTrackMode.html @@ -1035,7 +1035,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Error API.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Error API.html index e78956ef88b6..9784e4513883 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Error API.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Error API.html @@ -1166,7 +1166,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Extensions/Notification.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Extensions/Notification.html index b63752a0d91b..11383a6920f9 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Extensions/Notification.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Extensions/Notification.html @@ -1027,7 +1027,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Extensions/Notification/Name.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Extensions/Notification/Name.html index e601c292591b..935f1703370d 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Extensions/Notification/Name.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Extensions/Notification/Name.html @@ -1036,7 +1036,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/External Content Protection integration API.html b/theoplayer/static/theoplayer/v10/api-reference/ios/External Content Protection integration API.html index 75c533740c2f..5e8885372717 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/External Content Protection integration API.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/External Content Protection integration API.html @@ -1362,7 +1362,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Fullscreen API.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Fullscreen API.html index 45f490a5dc7a..08edc248fa25 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Fullscreen API.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Fullscreen API.html @@ -1117,7 +1117,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Fullscreen Events.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Fullscreen Events.html index 179e755b8724..c7fc3d2dcf8c 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Fullscreen Events.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Fullscreen Events.html @@ -1053,7 +1053,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleCast/Classes.html b/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleCast/Classes.html index 015eeda83d95..38d39394420e 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleCast/Classes.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleCast/Classes.html @@ -208,7 +208,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleCast/Classes/CastIntegrationHelper.html b/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleCast/Classes/CastIntegrationHelper.html index c1ef0fbd8341..cef45c364836 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleCast/Classes/CastIntegrationHelper.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleCast/Classes/CastIntegrationHelper.html @@ -248,7 +248,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleCast/Classes/GoogleCastConfiguration.html b/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleCast/Classes/GoogleCastConfiguration.html index 12977af3613c..204da325d48a 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleCast/Classes/GoogleCastConfiguration.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleCast/Classes/GoogleCastConfiguration.html @@ -188,7 +188,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleCast/Classes/GoogleCastConfiguration/Builder.html b/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleCast/Classes/GoogleCastConfiguration/Builder.html index 47f27c688df2..54c114ea4adb 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleCast/Classes/GoogleCastConfiguration/Builder.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleCast/Classes/GoogleCastConfiguration/Builder.html @@ -215,7 +215,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleCast/Classes/GoogleCastIntegrationFactory.html b/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleCast/Classes/GoogleCastIntegrationFactory.html index 9b18d91dfbab..7c16c9ebb661 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleCast/Classes/GoogleCastIntegrationFactory.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleCast/Classes/GoogleCastIntegrationFactory.html @@ -185,7 +185,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleCast/Extensions.html b/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleCast/Extensions.html index dd8602bc8795..8c57bd0d9218 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleCast/Extensions.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleCast/Extensions.html @@ -365,7 +365,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleCast/Extensions/Cast.html b/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleCast/Extensions/Cast.html index 59498c612113..82d81027709e 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleCast/Extensions/Cast.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleCast/Extensions/Cast.html @@ -159,7 +159,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleCast/Extensions/THEOplayerConfiguration.html b/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleCast/Extensions/THEOplayerConfiguration.html index 31cf67622bbd..4c2b6a360b2f 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleCast/Extensions/THEOplayerConfiguration.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleCast/Extensions/THEOplayerConfiguration.html @@ -159,7 +159,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleCast/Extensions/THEOplayerConfigurationBuilder.html b/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleCast/Extensions/THEOplayerConfigurationBuilder.html index 86648ec7b8a2..6d4f482b00b0 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleCast/Extensions/THEOplayerConfigurationBuilder.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleCast/Extensions/THEOplayerConfigurationBuilder.html @@ -159,7 +159,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleCast/Protocols.html b/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleCast/Protocols.html index bb59d3b6724c..22f38558a0fb 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleCast/Protocols.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleCast/Protocols.html @@ -152,7 +152,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleCast/Protocols/CastIntegration.html b/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleCast/Protocols/CastIntegration.html index 33586e071a68..2fa6e4ccc333 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleCast/Protocols/CastIntegration.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleCast/Protocols/CastIntegration.html @@ -560,7 +560,7 @@

Parameters

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleCast/docsets/.docset/Contents/Resources/Documents/Classes.html b/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleCast/docsets/.docset/Contents/Resources/Documents/Classes.html index 015eeda83d95..38d39394420e 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleCast/docsets/.docset/Contents/Resources/Documents/Classes.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleCast/docsets/.docset/Contents/Resources/Documents/Classes.html @@ -208,7 +208,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleCast/docsets/.docset/Contents/Resources/Documents/Classes/CastIntegrationHelper.html b/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleCast/docsets/.docset/Contents/Resources/Documents/Classes/CastIntegrationHelper.html index c1ef0fbd8341..cef45c364836 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleCast/docsets/.docset/Contents/Resources/Documents/Classes/CastIntegrationHelper.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleCast/docsets/.docset/Contents/Resources/Documents/Classes/CastIntegrationHelper.html @@ -248,7 +248,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleCast/docsets/.docset/Contents/Resources/Documents/Classes/GoogleCastConfiguration.html b/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleCast/docsets/.docset/Contents/Resources/Documents/Classes/GoogleCastConfiguration.html index 12977af3613c..204da325d48a 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleCast/docsets/.docset/Contents/Resources/Documents/Classes/GoogleCastConfiguration.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleCast/docsets/.docset/Contents/Resources/Documents/Classes/GoogleCastConfiguration.html @@ -188,7 +188,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleCast/docsets/.docset/Contents/Resources/Documents/Classes/GoogleCastConfiguration/Builder.html b/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleCast/docsets/.docset/Contents/Resources/Documents/Classes/GoogleCastConfiguration/Builder.html index 47f27c688df2..54c114ea4adb 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleCast/docsets/.docset/Contents/Resources/Documents/Classes/GoogleCastConfiguration/Builder.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleCast/docsets/.docset/Contents/Resources/Documents/Classes/GoogleCastConfiguration/Builder.html @@ -215,7 +215,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleCast/docsets/.docset/Contents/Resources/Documents/Classes/GoogleCastIntegrationFactory.html b/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleCast/docsets/.docset/Contents/Resources/Documents/Classes/GoogleCastIntegrationFactory.html index 9b18d91dfbab..7c16c9ebb661 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleCast/docsets/.docset/Contents/Resources/Documents/Classes/GoogleCastIntegrationFactory.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleCast/docsets/.docset/Contents/Resources/Documents/Classes/GoogleCastIntegrationFactory.html @@ -185,7 +185,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleCast/docsets/.docset/Contents/Resources/Documents/Extensions.html b/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleCast/docsets/.docset/Contents/Resources/Documents/Extensions.html index dd8602bc8795..8c57bd0d9218 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleCast/docsets/.docset/Contents/Resources/Documents/Extensions.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleCast/docsets/.docset/Contents/Resources/Documents/Extensions.html @@ -365,7 +365,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleCast/docsets/.docset/Contents/Resources/Documents/Extensions/Cast.html b/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleCast/docsets/.docset/Contents/Resources/Documents/Extensions/Cast.html index 59498c612113..82d81027709e 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleCast/docsets/.docset/Contents/Resources/Documents/Extensions/Cast.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleCast/docsets/.docset/Contents/Resources/Documents/Extensions/Cast.html @@ -159,7 +159,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleCast/docsets/.docset/Contents/Resources/Documents/Extensions/THEOplayerConfiguration.html b/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleCast/docsets/.docset/Contents/Resources/Documents/Extensions/THEOplayerConfiguration.html index 31cf67622bbd..4c2b6a360b2f 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleCast/docsets/.docset/Contents/Resources/Documents/Extensions/THEOplayerConfiguration.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleCast/docsets/.docset/Contents/Resources/Documents/Extensions/THEOplayerConfiguration.html @@ -159,7 +159,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleCast/docsets/.docset/Contents/Resources/Documents/Extensions/THEOplayerConfigurationBuilder.html b/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleCast/docsets/.docset/Contents/Resources/Documents/Extensions/THEOplayerConfigurationBuilder.html index 86648ec7b8a2..6d4f482b00b0 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleCast/docsets/.docset/Contents/Resources/Documents/Extensions/THEOplayerConfigurationBuilder.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleCast/docsets/.docset/Contents/Resources/Documents/Extensions/THEOplayerConfigurationBuilder.html @@ -159,7 +159,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleCast/docsets/.docset/Contents/Resources/Documents/Protocols.html b/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleCast/docsets/.docset/Contents/Resources/Documents/Protocols.html index bb59d3b6724c..22f38558a0fb 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleCast/docsets/.docset/Contents/Resources/Documents/Protocols.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleCast/docsets/.docset/Contents/Resources/Documents/Protocols.html @@ -152,7 +152,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleCast/docsets/.docset/Contents/Resources/Documents/Protocols/CastIntegration.html b/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleCast/docsets/.docset/Contents/Resources/Documents/Protocols/CastIntegration.html index 33586e071a68..2fa6e4ccc333 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleCast/docsets/.docset/Contents/Resources/Documents/Protocols/CastIntegration.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleCast/docsets/.docset/Contents/Resources/Documents/Protocols/CastIntegration.html @@ -560,7 +560,7 @@

Parameters

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleCast/docsets/.docset/Contents/Resources/Documents/img/carat.png b/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleCast/docsets/.docset/Contents/Resources/Documents/img/carat.png old mode 100755 new mode 100644 diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleCast/docsets/.docset/Contents/Resources/Documents/img/dash.png b/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleCast/docsets/.docset/Contents/Resources/Documents/img/dash.png old mode 100755 new mode 100644 diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleCast/docsets/.docset/Contents/Resources/Documents/index.html b/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleCast/docsets/.docset/Contents/Resources/Documents/index.html index 61482ef73983..b823e7d6fbaa 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleCast/docsets/.docset/Contents/Resources/Documents/index.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleCast/docsets/.docset/Contents/Resources/Documents/index.html @@ -132,7 +132,7 @@

Sample Code

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleCast/docsets/.docset/Contents/Resources/Documents/js/jazzy.js b/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleCast/docsets/.docset/Contents/Resources/Documents/js/jazzy.js old mode 100755 new mode 100644 diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleCast/img/carat.png b/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleCast/img/carat.png old mode 100755 new mode 100644 diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleCast/img/dash.png b/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleCast/img/dash.png old mode 100755 new mode 100644 diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleCast/index.html b/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleCast/index.html index 61482ef73983..b823e7d6fbaa 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleCast/index.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleCast/index.html @@ -132,7 +132,7 @@

Sample Code

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleCast/js/jazzy.js b/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleCast/js/jazzy.js old mode 100755 new mode 100644 diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleCast/undocumented.json b/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleCast/undocumented.json index 71021682019e..8a59525bc953 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleCast/undocumented.json +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleCast/undocumented.json @@ -1,4 +1,4 @@ { "warnings": [], - "source_directory": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios" + "source_directory": "/Users/distiller/project/ios" } \ No newline at end of file diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleIMA/Classes.html b/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleIMA/Classes.html index cff4780cd6bd..e9106e575aea 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleIMA/Classes.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleIMA/Classes.html @@ -250,7 +250,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleIMA/Classes/GoogleIMAConfiguration.html b/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleIMA/Classes/GoogleIMAConfiguration.html index 54ea16b2e960..4c10517a7aeb 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleIMA/Classes/GoogleIMAConfiguration.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleIMA/Classes/GoogleIMAConfiguration.html @@ -194,7 +194,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleIMA/Classes/GoogleIMAConfiguration/Builder.html b/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleIMA/Classes/GoogleIMAConfiguration/Builder.html index 364774f39527..97d79be67105 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleIMA/Classes/GoogleIMAConfiguration/Builder.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleIMA/Classes/GoogleIMAConfiguration/Builder.html @@ -221,7 +221,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleIMA/Classes/GoogleIMAIntegrationFactory.html b/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleIMA/Classes/GoogleIMAIntegrationFactory.html index 794d78477a27..71ce27d054f9 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleIMA/Classes/GoogleIMAIntegrationFactory.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleIMA/Classes/GoogleIMAIntegrationFactory.html @@ -229,7 +229,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleIMA/Classes/GoogleImaAdErrorEvent.html b/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleIMA/Classes/GoogleImaAdErrorEvent.html index 8fe8bb173bb6..d006ca9ec5d6 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleIMA/Classes/GoogleImaAdErrorEvent.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleIMA/Classes/GoogleImaAdErrorEvent.html @@ -166,7 +166,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleIMA/Classes/NativeGoogleImaAdDescription.html b/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleIMA/Classes/NativeGoogleImaAdDescription.html index 456925feab0d..ac84c00f6b64 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleIMA/Classes/NativeGoogleImaAdDescription.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleIMA/Classes/NativeGoogleImaAdDescription.html @@ -424,7 +424,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleIMA/Extensions.html b/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleIMA/Extensions.html index 8147b8e46e64..8a27b61b3f4a 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleIMA/Extensions.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleIMA/Extensions.html @@ -361,7 +361,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleIMA/Extensions/Ads.html b/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleIMA/Extensions/Ads.html index 6f5ca589f11e..1c95932bb1ea 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleIMA/Extensions/Ads.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleIMA/Extensions/Ads.html @@ -192,7 +192,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleIMA/Extensions/THEOplayerConfiguration.html b/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleIMA/Extensions/THEOplayerConfiguration.html index a955d39aa434..e5a86090315f 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleIMA/Extensions/THEOplayerConfiguration.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleIMA/Extensions/THEOplayerConfiguration.html @@ -165,7 +165,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleIMA/Extensions/THEOplayerConfigurationBuilder.html b/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleIMA/Extensions/THEOplayerConfigurationBuilder.html index 584d75632b95..2a8937a64bbb 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleIMA/Extensions/THEOplayerConfigurationBuilder.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleIMA/Extensions/THEOplayerConfigurationBuilder.html @@ -165,7 +165,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleIMA/Protocols.html b/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleIMA/Protocols.html index b8805e566615..4d1abbd0df68 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleIMA/Protocols.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleIMA/Protocols.html @@ -185,7 +185,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleIMA/Protocols/GoogleImaIntegration.html b/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleIMA/Protocols/GoogleImaIntegration.html index d38e998fb0d9..3a432820404a 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleIMA/Protocols/GoogleImaIntegration.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleIMA/Protocols/GoogleImaIntegration.html @@ -314,7 +314,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleIMA/Protocols/NativeGoogleImaAd.html b/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleIMA/Protocols/NativeGoogleImaAd.html index 001075ebefde..0ed3bcf2df5a 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleIMA/Protocols/NativeGoogleImaAd.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleIMA/Protocols/NativeGoogleImaAd.html @@ -164,7 +164,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleIMA/docsets/.docset/Contents/Resources/Documents/Classes.html b/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleIMA/docsets/.docset/Contents/Resources/Documents/Classes.html index cff4780cd6bd..e9106e575aea 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleIMA/docsets/.docset/Contents/Resources/Documents/Classes.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleIMA/docsets/.docset/Contents/Resources/Documents/Classes.html @@ -250,7 +250,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleIMA/docsets/.docset/Contents/Resources/Documents/Classes/GoogleIMAConfiguration.html b/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleIMA/docsets/.docset/Contents/Resources/Documents/Classes/GoogleIMAConfiguration.html index 54ea16b2e960..4c10517a7aeb 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleIMA/docsets/.docset/Contents/Resources/Documents/Classes/GoogleIMAConfiguration.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleIMA/docsets/.docset/Contents/Resources/Documents/Classes/GoogleIMAConfiguration.html @@ -194,7 +194,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleIMA/docsets/.docset/Contents/Resources/Documents/Classes/GoogleIMAConfiguration/Builder.html b/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleIMA/docsets/.docset/Contents/Resources/Documents/Classes/GoogleIMAConfiguration/Builder.html index 364774f39527..97d79be67105 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleIMA/docsets/.docset/Contents/Resources/Documents/Classes/GoogleIMAConfiguration/Builder.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleIMA/docsets/.docset/Contents/Resources/Documents/Classes/GoogleIMAConfiguration/Builder.html @@ -221,7 +221,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleIMA/docsets/.docset/Contents/Resources/Documents/Classes/GoogleIMAIntegrationFactory.html b/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleIMA/docsets/.docset/Contents/Resources/Documents/Classes/GoogleIMAIntegrationFactory.html index 794d78477a27..71ce27d054f9 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleIMA/docsets/.docset/Contents/Resources/Documents/Classes/GoogleIMAIntegrationFactory.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleIMA/docsets/.docset/Contents/Resources/Documents/Classes/GoogleIMAIntegrationFactory.html @@ -229,7 +229,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleIMA/docsets/.docset/Contents/Resources/Documents/Classes/GoogleImaAdErrorEvent.html b/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleIMA/docsets/.docset/Contents/Resources/Documents/Classes/GoogleImaAdErrorEvent.html index 8fe8bb173bb6..d006ca9ec5d6 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleIMA/docsets/.docset/Contents/Resources/Documents/Classes/GoogleImaAdErrorEvent.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleIMA/docsets/.docset/Contents/Resources/Documents/Classes/GoogleImaAdErrorEvent.html @@ -166,7 +166,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleIMA/docsets/.docset/Contents/Resources/Documents/Classes/NativeGoogleImaAdDescription.html b/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleIMA/docsets/.docset/Contents/Resources/Documents/Classes/NativeGoogleImaAdDescription.html index 456925feab0d..ac84c00f6b64 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleIMA/docsets/.docset/Contents/Resources/Documents/Classes/NativeGoogleImaAdDescription.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleIMA/docsets/.docset/Contents/Resources/Documents/Classes/NativeGoogleImaAdDescription.html @@ -424,7 +424,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleIMA/docsets/.docset/Contents/Resources/Documents/Extensions.html b/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleIMA/docsets/.docset/Contents/Resources/Documents/Extensions.html index 8147b8e46e64..8a27b61b3f4a 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleIMA/docsets/.docset/Contents/Resources/Documents/Extensions.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleIMA/docsets/.docset/Contents/Resources/Documents/Extensions.html @@ -361,7 +361,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleIMA/docsets/.docset/Contents/Resources/Documents/Extensions/Ads.html b/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleIMA/docsets/.docset/Contents/Resources/Documents/Extensions/Ads.html index 6f5ca589f11e..1c95932bb1ea 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleIMA/docsets/.docset/Contents/Resources/Documents/Extensions/Ads.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleIMA/docsets/.docset/Contents/Resources/Documents/Extensions/Ads.html @@ -192,7 +192,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleIMA/docsets/.docset/Contents/Resources/Documents/Extensions/THEOplayerConfiguration.html b/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleIMA/docsets/.docset/Contents/Resources/Documents/Extensions/THEOplayerConfiguration.html index a955d39aa434..e5a86090315f 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleIMA/docsets/.docset/Contents/Resources/Documents/Extensions/THEOplayerConfiguration.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleIMA/docsets/.docset/Contents/Resources/Documents/Extensions/THEOplayerConfiguration.html @@ -165,7 +165,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleIMA/docsets/.docset/Contents/Resources/Documents/Extensions/THEOplayerConfigurationBuilder.html b/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleIMA/docsets/.docset/Contents/Resources/Documents/Extensions/THEOplayerConfigurationBuilder.html index 584d75632b95..2a8937a64bbb 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleIMA/docsets/.docset/Contents/Resources/Documents/Extensions/THEOplayerConfigurationBuilder.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleIMA/docsets/.docset/Contents/Resources/Documents/Extensions/THEOplayerConfigurationBuilder.html @@ -165,7 +165,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleIMA/docsets/.docset/Contents/Resources/Documents/Protocols.html b/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleIMA/docsets/.docset/Contents/Resources/Documents/Protocols.html index b8805e566615..4d1abbd0df68 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleIMA/docsets/.docset/Contents/Resources/Documents/Protocols.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleIMA/docsets/.docset/Contents/Resources/Documents/Protocols.html @@ -185,7 +185,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleIMA/docsets/.docset/Contents/Resources/Documents/Protocols/GoogleImaIntegration.html b/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleIMA/docsets/.docset/Contents/Resources/Documents/Protocols/GoogleImaIntegration.html index d38e998fb0d9..3a432820404a 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleIMA/docsets/.docset/Contents/Resources/Documents/Protocols/GoogleImaIntegration.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleIMA/docsets/.docset/Contents/Resources/Documents/Protocols/GoogleImaIntegration.html @@ -314,7 +314,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleIMA/docsets/.docset/Contents/Resources/Documents/Protocols/NativeGoogleImaAd.html b/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleIMA/docsets/.docset/Contents/Resources/Documents/Protocols/NativeGoogleImaAd.html index 001075ebefde..0ed3bcf2df5a 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleIMA/docsets/.docset/Contents/Resources/Documents/Protocols/NativeGoogleImaAd.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleIMA/docsets/.docset/Contents/Resources/Documents/Protocols/NativeGoogleImaAd.html @@ -164,7 +164,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleIMA/docsets/.docset/Contents/Resources/Documents/img/carat.png b/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleIMA/docsets/.docset/Contents/Resources/Documents/img/carat.png old mode 100755 new mode 100644 diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleIMA/docsets/.docset/Contents/Resources/Documents/img/dash.png b/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleIMA/docsets/.docset/Contents/Resources/Documents/img/dash.png old mode 100755 new mode 100644 diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleIMA/docsets/.docset/Contents/Resources/Documents/index.html b/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleIMA/docsets/.docset/Contents/Resources/Documents/index.html index 70e520abb817..7094a5ac3c2f 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleIMA/docsets/.docset/Contents/Resources/Documents/index.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleIMA/docsets/.docset/Contents/Resources/Documents/index.html @@ -146,7 +146,7 @@

Or, add a Google DAI source< diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleIMA/docsets/.docset/Contents/Resources/Documents/js/jazzy.js b/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleIMA/docsets/.docset/Contents/Resources/Documents/js/jazzy.js old mode 100755 new mode 100644 diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleIMA/img/carat.png b/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleIMA/img/carat.png old mode 100755 new mode 100644 diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleIMA/img/dash.png b/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleIMA/img/dash.png old mode 100755 new mode 100644 diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleIMA/index.html b/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleIMA/index.html index 70e520abb817..7094a5ac3c2f 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleIMA/index.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleIMA/index.html @@ -146,7 +146,7 @@

Or, add a Google DAI source< diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleIMA/js/jazzy.js b/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleIMA/js/jazzy.js old mode 100755 new mode 100644 diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleIMA/undocumented.json b/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleIMA/undocumented.json index 71021682019e..8a59525bc953 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleIMA/undocumented.json +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/GoogleIMA/undocumented.json @@ -1,4 +1,4 @@ { "warnings": [], - "source_directory": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios" + "source_directory": "/Users/distiller/project/ios" } \ No newline at end of file diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Millicast/Classes.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Millicast/Classes.html index d525b43dcf91..e8d63abbad9a 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Millicast/Classes.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Millicast/Classes.html @@ -193,7 +193,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Millicast/Classes/MillicastErrorEvent.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Millicast/Classes/MillicastErrorEvent.html index 191f09e7cafd..85a854f35885 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Millicast/Classes/MillicastErrorEvent.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Millicast/Classes/MillicastErrorEvent.html @@ -225,7 +225,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Millicast/Classes/MillicastIntegrationFactory.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Millicast/Classes/MillicastIntegrationFactory.html index ab0b4aa7275a..b603826c6c09 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Millicast/Classes/MillicastIntegrationFactory.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Millicast/Classes/MillicastIntegrationFactory.html @@ -171,7 +171,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Millicast/Classes/MillicastSource.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Millicast/Classes/MillicastSource.html index 4232ce9ff4fb..325dbb156919 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Millicast/Classes/MillicastSource.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Millicast/Classes/MillicastSource.html @@ -293,7 +293,7 @@

Parameters

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Millicast/Extensions.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Millicast/Extensions.html index e996c8b5b725..8d69164a4a9e 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Millicast/Extensions.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Millicast/Extensions.html @@ -135,7 +135,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Millicast/Extensions/THEOplayer.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Millicast/Extensions/THEOplayer.html index b79256b8567c..a3e9d7f55588 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Millicast/Extensions/THEOplayer.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Millicast/Extensions/THEOplayer.html @@ -143,7 +143,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Millicast/Protocols.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Millicast/Protocols.html index 6865c3ec4ad6..8b5bc5ce031c 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Millicast/Protocols.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Millicast/Protocols.html @@ -135,7 +135,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Millicast/Structs.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Millicast/Structs.html index e12bc7ef2ba9..0b3f77f36b21 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Millicast/Structs.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Millicast/Structs.html @@ -136,7 +136,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Millicast/Structs/MillicastEventTypes.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Millicast/Structs/MillicastEventTypes.html index 02122f5b3a4c..61c3608825ea 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Millicast/Structs/MillicastEventTypes.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Millicast/Structs/MillicastEventTypes.html @@ -144,7 +144,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Millicast/docsets/.docset/Contents/Resources/Documents/Classes.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Millicast/docsets/.docset/Contents/Resources/Documents/Classes.html index d525b43dcf91..e8d63abbad9a 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Millicast/docsets/.docset/Contents/Resources/Documents/Classes.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Millicast/docsets/.docset/Contents/Resources/Documents/Classes.html @@ -193,7 +193,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Millicast/docsets/.docset/Contents/Resources/Documents/Classes/MillicastErrorEvent.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Millicast/docsets/.docset/Contents/Resources/Documents/Classes/MillicastErrorEvent.html index 191f09e7cafd..85a854f35885 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Millicast/docsets/.docset/Contents/Resources/Documents/Classes/MillicastErrorEvent.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Millicast/docsets/.docset/Contents/Resources/Documents/Classes/MillicastErrorEvent.html @@ -225,7 +225,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Millicast/docsets/.docset/Contents/Resources/Documents/Classes/MillicastIntegrationFactory.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Millicast/docsets/.docset/Contents/Resources/Documents/Classes/MillicastIntegrationFactory.html index ab0b4aa7275a..b603826c6c09 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Millicast/docsets/.docset/Contents/Resources/Documents/Classes/MillicastIntegrationFactory.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Millicast/docsets/.docset/Contents/Resources/Documents/Classes/MillicastIntegrationFactory.html @@ -171,7 +171,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Millicast/docsets/.docset/Contents/Resources/Documents/Classes/MillicastSource.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Millicast/docsets/.docset/Contents/Resources/Documents/Classes/MillicastSource.html index 4232ce9ff4fb..325dbb156919 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Millicast/docsets/.docset/Contents/Resources/Documents/Classes/MillicastSource.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Millicast/docsets/.docset/Contents/Resources/Documents/Classes/MillicastSource.html @@ -293,7 +293,7 @@

Parameters

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Millicast/docsets/.docset/Contents/Resources/Documents/Extensions.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Millicast/docsets/.docset/Contents/Resources/Documents/Extensions.html index e996c8b5b725..8d69164a4a9e 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Millicast/docsets/.docset/Contents/Resources/Documents/Extensions.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Millicast/docsets/.docset/Contents/Resources/Documents/Extensions.html @@ -135,7 +135,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Millicast/docsets/.docset/Contents/Resources/Documents/Extensions/THEOplayer.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Millicast/docsets/.docset/Contents/Resources/Documents/Extensions/THEOplayer.html index b79256b8567c..a3e9d7f55588 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Millicast/docsets/.docset/Contents/Resources/Documents/Extensions/THEOplayer.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Millicast/docsets/.docset/Contents/Resources/Documents/Extensions/THEOplayer.html @@ -143,7 +143,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Millicast/docsets/.docset/Contents/Resources/Documents/Protocols.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Millicast/docsets/.docset/Contents/Resources/Documents/Protocols.html index 6865c3ec4ad6..8b5bc5ce031c 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Millicast/docsets/.docset/Contents/Resources/Documents/Protocols.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Millicast/docsets/.docset/Contents/Resources/Documents/Protocols.html @@ -135,7 +135,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Millicast/docsets/.docset/Contents/Resources/Documents/Structs.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Millicast/docsets/.docset/Contents/Resources/Documents/Structs.html index e12bc7ef2ba9..0b3f77f36b21 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Millicast/docsets/.docset/Contents/Resources/Documents/Structs.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Millicast/docsets/.docset/Contents/Resources/Documents/Structs.html @@ -136,7 +136,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Millicast/docsets/.docset/Contents/Resources/Documents/Structs/MillicastEventTypes.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Millicast/docsets/.docset/Contents/Resources/Documents/Structs/MillicastEventTypes.html index 02122f5b3a4c..61c3608825ea 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Millicast/docsets/.docset/Contents/Resources/Documents/Structs/MillicastEventTypes.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Millicast/docsets/.docset/Contents/Resources/Documents/Structs/MillicastEventTypes.html @@ -144,7 +144,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Millicast/docsets/.docset/Contents/Resources/Documents/img/carat.png b/theoplayer/static/theoplayer/v10/api-reference/ios/Millicast/docsets/.docset/Contents/Resources/Documents/img/carat.png old mode 100755 new mode 100644 diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Millicast/docsets/.docset/Contents/Resources/Documents/img/dash.png b/theoplayer/static/theoplayer/v10/api-reference/ios/Millicast/docsets/.docset/Contents/Resources/Documents/img/dash.png old mode 100755 new mode 100644 diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Millicast/docsets/.docset/Contents/Resources/Documents/index.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Millicast/docsets/.docset/Contents/Resources/Documents/index.html index 3c500ee535d1..ca2b552702a1 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Millicast/docsets/.docset/Contents/Resources/Documents/index.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Millicast/docsets/.docset/Contents/Resources/Documents/index.html @@ -115,7 +115,7 @@

Listen to error events

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Millicast/docsets/.docset/Contents/Resources/Documents/js/jazzy.js b/theoplayer/static/theoplayer/v10/api-reference/ios/Millicast/docsets/.docset/Contents/Resources/Documents/js/jazzy.js old mode 100755 new mode 100644 diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Millicast/img/carat.png b/theoplayer/static/theoplayer/v10/api-reference/ios/Millicast/img/carat.png old mode 100755 new mode 100644 diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Millicast/img/dash.png b/theoplayer/static/theoplayer/v10/api-reference/ios/Millicast/img/dash.png old mode 100755 new mode 100644 diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Millicast/index.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Millicast/index.html index 3c500ee535d1..ca2b552702a1 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Millicast/index.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Millicast/index.html @@ -115,7 +115,7 @@

Listen to error events

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Millicast/js/jazzy.js b/theoplayer/static/theoplayer/v10/api-reference/ios/Millicast/js/jazzy.js old mode 100755 new mode 100644 diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Millicast/undocumented.json b/theoplayer/static/theoplayer/v10/api-reference/ios/Millicast/undocumented.json index 71021682019e..8a59525bc953 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Millicast/undocumented.json +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Millicast/undocumented.json @@ -1,4 +1,4 @@ { "warnings": [], - "source_directory": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios" + "source_directory": "/Users/distiller/project/ios" } \ No newline at end of file diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Network Events.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Network Events.html index cfefffffafc3..2bb8d5efee87 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Network Events.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Network Events.html @@ -1054,7 +1054,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Other Classes.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Other Classes.html index bbe424da399b..397393e6865e 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Other Classes.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Other Classes.html @@ -1811,7 +1811,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Other Extensions.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Other Extensions.html index a2a432ac31fe..392f8b02ee95 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Other Extensions.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Other Extensions.html @@ -1018,7 +1018,7 @@

Other Extensions

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Other Protocols.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Other Protocols.html index 12801213fab0..799687cb09b3 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Other Protocols.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Other Protocols.html @@ -1231,7 +1231,8 @@

Declaration

Declaration

Swift

-
public protocol ManifestInterceptor : AVAssetResourceLoaderDelegate
+
@available(*, deprecated, message: "This API is deprecated. For manifest interception, please use the `NetworkAPI` instead. The API can be accessed from `player.network` or `cachingTask.network`.")
+public protocol ManifestInterceptor : AVAssetResourceLoaderDelegate
@@ -1272,7 +1273,8 @@

Declaration

Declaration

Swift

-
public protocol DeveloperSettings
+
@available(*, deprecated, message: "This API is deprecated. For manifest interception, please use the `NetworkAPI` instead. The API can be accessed from `player.network` or `cachingTask.network`.")
+public protocol DeveloperSettings
@@ -1288,7 +1290,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Other Structs.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Other Structs.html index a1d34e10971a..312178d97dd0 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Other Structs.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Other Structs.html @@ -1027,7 +1027,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Picture-In-Picture.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Picture-In-Picture.html index 8c68324539cc..69623978b02b 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Picture-In-Picture.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Picture-In-Picture.html @@ -1159,7 +1159,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Player Events.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Player Events.html index 082fde5ddf5d..628a6a6b7ae4 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Player Events.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Player Events.html @@ -1828,7 +1828,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/ABRConfiguration.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/ABRConfiguration.html index 08cc69adb60d..9e721433c56b 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/ABRConfiguration.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/ABRConfiguration.html @@ -1116,7 +1116,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/AVPictureInPictureControllerDelegateExtended.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/AVPictureInPictureControllerDelegateExtended.html index a7b39180c2c6..69068502fd46 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/AVPictureInPictureControllerDelegateExtended.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/AVPictureInPictureControllerDelegateExtended.html @@ -1066,7 +1066,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/AVPlayerError.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/AVPlayerError.html index 51aee09d6072..8abc3af5beed 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/AVPlayerError.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/AVPlayerError.html @@ -1089,7 +1089,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/Ad.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/Ad.html index 691b81273127..f986bf8453fb 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/Ad.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/Ad.html @@ -1402,7 +1402,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/AdBreak.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/AdBreak.html index 824ae8129ce5..8fbe0b4580d1 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/AdBreak.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/AdBreak.html @@ -1205,7 +1205,7 @@

Return Value

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/AdDescription.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/AdDescription.html index 8ee847c1aeec..ce9febcfa3b8 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/AdDescription.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/AdDescription.html @@ -1040,7 +1040,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/Ads.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/Ads.html index 56d0bd1e86c7..d9ad9c358adc 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/Ads.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/Ads.html @@ -1457,7 +1457,7 @@

Parameters

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/AirPlay.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/AirPlay.html index dbd61cacb4fa..8e65f8371dba 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/AirPlay.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/AirPlay.html @@ -1116,7 +1116,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/AudioTrack.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/AudioTrack.html index 4fae5d94064a..e795f6a45e12 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/AudioTrack.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/AudioTrack.html @@ -1043,7 +1043,7 @@

Declaration

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/AudioTrackList.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/AudioTrackList.html index 07d70fea75fe..8319b976dd24 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/AudioTrackList.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/AudioTrackList.html @@ -1133,7 +1133,7 @@

Parameters

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/BackgroundPlaybackDelegate.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/BackgroundPlaybackDelegate.html index f4f111835885..2422be20265e 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/BackgroundPlaybackDelegate.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/BackgroundPlaybackDelegate.html @@ -1043,7 +1043,7 @@

Return Value

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/Cache.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/Cache.html index 83ac2043d5cb..79f0566e46a7 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/Cache.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/Cache.html @@ -1254,7 +1254,7 @@

Parameters

diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/CachingTask.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/CachingTask.html index 1c483d97962d..bd7cad54e156 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/CachingTask.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/CachingTask.html @@ -1373,6 +1373,33 @@

Declaration

+
  • +
    + + + + network + +
    +
    +
    +
    +
    +
    +

    The Network API.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    var network: Network { get }
    + +
    +
    +
    +
    +
  • @@ -1507,7 +1534,7 @@

    Parameters

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/CachingTaskLicense.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/CachingTaskLicense.html index b869ce4e3a3e..b5612993f0ce 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/CachingTaskLicense.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/CachingTaskLicense.html @@ -1086,7 +1086,7 @@

    Parameters

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/Cast.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/Cast.html index 4da4a3b3a021..33ba0740f09d 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/Cast.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/Cast.html @@ -1089,7 +1089,7 @@

    Declaration

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/Chromecast.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/Chromecast.html index 6fa3d3392cea..e7af976ff5a8 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/Chromecast.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/Chromecast.html @@ -1381,7 +1381,7 @@

    Parameters

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/CompanionAd.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/CompanionAd.html index b3fd48448ff2..d2923b7755df 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/CompanionAd.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/CompanionAd.html @@ -1202,7 +1202,7 @@

    Declaration

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/ContentProtectionError.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/ContentProtectionError.html index 23a82fd3ec89..b7c6a96cfcea 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/ContentProtectionError.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/ContentProtectionError.html @@ -1178,7 +1178,7 @@

    Declaration

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/ContentProtectionIntegration.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/ContentProtectionIntegration.html index 1091dc270bbf..a9b61b354061 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/ContentProtectionIntegration.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/ContentProtectionIntegration.html @@ -1374,7 +1374,7 @@

    Parameters

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/CustomServerSideAdInsertionConfiguration.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/CustomServerSideAdInsertionConfiguration.html index 237fb715ee68..527dbe388faa 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/CustomServerSideAdInsertionConfiguration.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/CustomServerSideAdInsertionConfiguration.html @@ -1064,7 +1064,7 @@

    Declaration

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/DRMConfiguration.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/DRMConfiguration.html index b9b7cc45b146..13f1131534cd 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/DRMConfiguration.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/DRMConfiguration.html @@ -1158,7 +1158,7 @@

    Declaration

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/DateRangeCue.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/DateRangeCue.html index 2fd176da1fb4..e5dfda2dd379 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/DateRangeCue.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/DateRangeCue.html @@ -1283,7 +1283,7 @@

    Declaration

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/DeveloperSettings.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/DeveloperSettings.html index eca731f94476..9d0d59a29604 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/DeveloperSettings.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/DeveloperSettings.html @@ -986,7 +986,8 @@

    DeveloperSettings

    -
    public protocol DeveloperSettings
    +
    @available(*, deprecated, message: "This API is deprecated. For manifest interception, please use the `NetworkAPI` instead. The API can be accessed from `player.network` or `cachingTask.network`.")
    +public protocol DeveloperSettings
    @@ -1041,7 +1042,8 @@

    DeveloperSettings

    Declaration

    Swift

    -
    var manifestInterceptor: ManifestInterceptor? { get set }
    +
    @available(*, deprecated, message: "This API is deprecated. For manifest interception, please use the `NetworkAPI` instead. The API can be accessed from `player.network` or `cachingTask.network`.")
    +var manifestInterceptor: ManifestInterceptor? { get set }
    @@ -1057,7 +1059,7 @@

    Declaration

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/EventDispatcherProtocol.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/EventDispatcherProtocol.html index 11cfdeab6629..99300edfeb33 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/EventDispatcherProtocol.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/EventDispatcherProtocol.html @@ -1141,7 +1141,7 @@

    Parameters

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/EventProtocol.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/EventProtocol.html index 0a1b7aa52dfe..49a52aa0da1a 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/EventProtocol.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/EventProtocol.html @@ -1062,7 +1062,7 @@

    Declaration

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/Fullscreen.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/Fullscreen.html index 928bd95372c0..858fcebe147b 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/Fullscreen.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/Fullscreen.html @@ -1287,7 +1287,7 @@

    Parameters

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/FullscreenPresentationDelegate.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/FullscreenPresentationDelegate.html index 9d3b749979be..24b9bc0329e9 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/FullscreenPresentationDelegate.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/FullscreenPresentationDelegate.html @@ -1134,7 +1134,7 @@

    Parameters

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/GoogleDAI.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/GoogleDAI.html index e7fe8facfe3f..a0368608bed1 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/GoogleDAI.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/GoogleDAI.html @@ -1137,7 +1137,7 @@

    Return Value

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/GoogleImaAd.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/GoogleImaAd.html index 7595b90289e1..08c8def7bead 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/GoogleImaAd.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/GoogleImaAd.html @@ -1224,7 +1224,7 @@

    Declaration

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/LinearAd.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/LinearAd.html index 1e91ef02bee6..986d11c25f1a 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/LinearAd.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/LinearAd.html @@ -1062,7 +1062,7 @@

    Declaration

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/ManifestInterceptor.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/ManifestInterceptor.html index c4c02e7914e7..7e48112568d3 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/ManifestInterceptor.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/ManifestInterceptor.html @@ -986,7 +986,8 @@

    ManifestInterceptor

    -
    public protocol ManifestInterceptor : AVAssetResourceLoaderDelegate
    +
    @available(*, deprecated, message: "This API is deprecated. For manifest interception, please use the `NetworkAPI` instead. The API can be accessed from `player.network` or `cachingTask.network`.")
    +public protocol ManifestInterceptor : AVAssetResourceLoaderDelegate
    @@ -1047,7 +1048,7 @@

    Declaration

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/MediaFile.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/MediaFile.html index 8997f2e9cece..fe7adebaf269 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/MediaFile.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/MediaFile.html @@ -1156,7 +1156,7 @@

    Declaration

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/MediaPlaylistInterceptor.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/MediaPlaylistInterceptor.html index 94f80a08edc8..9107a3e54dd7 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/MediaPlaylistInterceptor.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/MediaPlaylistInterceptor.html @@ -1180,7 +1180,7 @@

    Declaration

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/MediaTrack.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/MediaTrack.html index f7f9496f0473..1be5a97db867 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/MediaTrack.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/MediaTrack.html @@ -1167,7 +1167,7 @@

    Declaration

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/MediaTrackList.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/MediaTrackList.html index 0c254e3aac9d..bd5762976c3b 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/MediaTrackList.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/MediaTrackList.html @@ -1135,7 +1135,7 @@

    Return Value

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/NetworkAPI.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/NetworkAPI.html index 6786b677a44f..b999f234e84c 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/NetworkAPI.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/NetworkAPI.html @@ -1104,7 +1104,7 @@

    Declaration

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/NetworkError.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/NetworkError.html index 93fbfdef642a..5693a380b76c 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/NetworkError.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/NetworkError.html @@ -1094,7 +1094,7 @@

    Declaration

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/NonLinearAd.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/NonLinearAd.html index ced38df8d70c..4c6f5d15200c 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/NonLinearAd.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/NonLinearAd.html @@ -1035,7 +1035,7 @@

    Declaration

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/Omid.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/Omid.html index 49c911769175..a3e952ad5bed 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/Omid.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/Omid.html @@ -1081,7 +1081,7 @@

    Declaration

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/PictureInPicture.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/PictureInPicture.html index ce7b10e98d3f..5ab56db670e6 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/PictureInPicture.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/PictureInPicture.html @@ -1460,7 +1460,7 @@

    Parameters

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/Quality.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/Quality.html index 310566206024..2c6f14aeffe3 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/Quality.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/Quality.html @@ -1062,7 +1062,7 @@

    Declaration

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/QualityList.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/QualityList.html index 6c283f26419c..dd47526e9900 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/QualityList.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/QualityList.html @@ -1135,7 +1135,7 @@

    Return Value

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/ServerSideAdInsertionConfiguration.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/ServerSideAdInsertionConfiguration.html index 6d0d95d76a45..28afd026f842 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/ServerSideAdInsertionConfiguration.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/ServerSideAdInsertionConfiguration.html @@ -1045,7 +1045,7 @@

    Declaration

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/ServerSideAdIntegrationController.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/ServerSideAdIntegrationController.html index 47ec232f962f..2be76dca95de 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/ServerSideAdIntegrationController.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/ServerSideAdIntegrationController.html @@ -1797,7 +1797,7 @@

    Parameters

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/ServerSideAdIntegrationHandler.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/ServerSideAdIntegrationHandler.html index 1270c1102dfb..70cae14e539e 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/ServerSideAdIntegrationHandler.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/ServerSideAdIntegrationHandler.html @@ -1216,7 +1216,7 @@

    Declaration

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/THEOBaseError.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/THEOBaseError.html index e72806fc55d3..52cc9ef6ae11 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/THEOBaseError.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/THEOBaseError.html @@ -1094,7 +1094,7 @@

    Declaration

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/THEOError.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/THEOError.html index e588f45aba6e..3909d0d4c64b 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/THEOError.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/THEOError.html @@ -1116,7 +1116,7 @@

    Declaration

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/TextTrack.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/TextTrack.html index 8eb575ba2f71..52c9c2101e69 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/TextTrack.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/TextTrack.html @@ -1348,7 +1348,7 @@

    Parameters

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/TextTrackCue.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/TextTrackCue.html index f89c36029bd1..79363211412a 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/TextTrackCue.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/TextTrackCue.html @@ -1363,7 +1363,7 @@

    Parameters

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/TextTrackList.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/TextTrackList.html index a903a5b6d3a9..d099b8999c71 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/TextTrackList.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/TextTrackList.html @@ -1260,7 +1260,7 @@

    Parameters

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/TextTrackStyle.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/TextTrackStyle.html index c23c0230dab9..cb03f4c7c0b6 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/TextTrackStyle.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/TextTrackStyle.html @@ -1215,7 +1215,7 @@

    Declaration

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/Track.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/Track.html index 514bcb4827cd..7fd0cfa6c945 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/Track.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/Track.html @@ -1224,7 +1224,7 @@

    Declaration

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/UniversalAdId.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/UniversalAdId.html index 58b87dc1e683..01cee01379d5 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/UniversalAdId.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/UniversalAdId.html @@ -1062,7 +1062,7 @@

    Declaration

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/VideoQuality.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/VideoQuality.html index e6732ed67e10..fa6abae72d02 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/VideoQuality.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/VideoQuality.html @@ -1062,7 +1062,7 @@

    Declaration

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/VideoTrackList.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/VideoTrackList.html index 73a044e9be8c..43aa5cabde8e 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/VideoTrackList.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/VideoTrackList.html @@ -1133,7 +1133,7 @@

    Parameters

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/WebVttCue.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/WebVttCue.html index 51205c0b460d..d6278c0b401f 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/WebVttCue.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Protocols/WebVttCue.html @@ -1283,7 +1283,7 @@

    Declaration

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/SSAI.html b/theoplayer/static/theoplayer/v10/api-reference/ios/SSAI.html index 7fb740c78d11..9a26e886bf7e 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/SSAI.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/SSAI.html @@ -1311,7 +1311,7 @@

    Declaration

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Source Description API.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Source Description API.html index ca587cd24661..c77dee0f8e80 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Source Description API.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Source Description API.html @@ -1123,7 +1123,7 @@

    Declaration

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Structs/AdsEventTypes.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Structs/AdsEventTypes.html index ba089bd4fa07..8c27f4f60180 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Structs/AdsEventTypes.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Structs/AdsEventTypes.html @@ -1521,7 +1521,7 @@

    Declaration

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Structs/AirPlayEventTypes.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Structs/AirPlayEventTypes.html index d2d81754cc2a..f627816f54a9 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Structs/AirPlayEventTypes.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Structs/AirPlayEventTypes.html @@ -1035,7 +1035,7 @@

    Declaration

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Structs/AudioTrackListEventTypes.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Structs/AudioTrackListEventTypes.html index 2a50b74f8aac..9499e0acd940 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Structs/AudioTrackListEventTypes.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Structs/AudioTrackListEventTypes.html @@ -1089,7 +1089,7 @@

    Declaration

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Structs/CacheEventTypes.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Structs/CacheEventTypes.html index 85a77e7370e0..b67283f8e94b 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Structs/CacheEventTypes.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Structs/CacheEventTypes.html @@ -1035,7 +1035,7 @@

    Declaration

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Structs/CachingTaskEventTypes.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Structs/CachingTaskEventTypes.html index f3679d880800..ceecb9eac5ce 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Structs/CachingTaskEventTypes.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Structs/CachingTaskEventTypes.html @@ -1062,7 +1062,7 @@

    Declaration

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Structs/ChromecastEventTypes.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Structs/ChromecastEventTypes.html index 989e9ca3e5b3..78a62123e579 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Structs/ChromecastEventTypes.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Structs/ChromecastEventTypes.html @@ -1062,7 +1062,7 @@

    Declaration

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Structs/MediaTrackEventTypes.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Structs/MediaTrackEventTypes.html index 5311bde7f02e..19536c0e843f 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Structs/MediaTrackEventTypes.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Structs/MediaTrackEventTypes.html @@ -1035,7 +1035,7 @@

    Declaration

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Structs/NetworkEventTypes.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Structs/NetworkEventTypes.html index 4772254d4bed..d3fe00b1f1b3 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Structs/NetworkEventTypes.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Structs/NetworkEventTypes.html @@ -1089,7 +1089,7 @@

    Declaration

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Structs/PlayerEventTypes.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Structs/PlayerEventTypes.html index 824cdbcbcf3e..91f2985c1c57 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Structs/PlayerEventTypes.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Structs/PlayerEventTypes.html @@ -1737,7 +1737,7 @@

    Declaration

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Structs/THEOAdDescription.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Structs/THEOAdDescription.html index 716c7621460b..f5feb80e53b0 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Structs/THEOAdDescription.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Structs/THEOAdDescription.html @@ -1460,7 +1460,7 @@

    Declaration

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Structs/THEOAdDescription/LayoutOverride.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Structs/THEOAdDescription/LayoutOverride.html index fa236fa399fa..88efe270f8be 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Structs/THEOAdDescription/LayoutOverride.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Structs/THEOAdDescription/LayoutOverride.html @@ -1091,7 +1091,7 @@

    Declaration

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Structs/TextTrackCueEventTypes.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Structs/TextTrackCueEventTypes.html index ca267ee6a666..5f573f1af4dc 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Structs/TextTrackCueEventTypes.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Structs/TextTrackCueEventTypes.html @@ -1089,7 +1089,7 @@

    Declaration

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Structs/TextTrackEventTypes.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Structs/TextTrackEventTypes.html index f50455e0f2c2..f242f01d5cd1 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Structs/TextTrackEventTypes.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Structs/TextTrackEventTypes.html @@ -1143,7 +1143,7 @@

    Declaration

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Structs/TextTrackListEventTypes.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Structs/TextTrackListEventTypes.html index 6ed8ad5d944a..d0cfdb95d398 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Structs/TextTrackListEventTypes.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Structs/TextTrackListEventTypes.html @@ -1089,7 +1089,7 @@

    Declaration

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Structs/TrackEventTypes.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Structs/TrackEventTypes.html index ea9ae7e1041f..93080ce821aa 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Structs/TrackEventTypes.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Structs/TrackEventTypes.html @@ -1035,7 +1035,7 @@

    Declaration

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Structs/VideoTrackListEventTypes.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Structs/VideoTrackListEventTypes.html index eb9af6e99e81..0d650659c884 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Structs/VideoTrackListEventTypes.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Structs/VideoTrackListEventTypes.html @@ -1089,7 +1089,7 @@

    Declaration

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/Classes.html b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/Classes.html index 30d5eaeb32be..d502a5a415e5 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/Classes.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/Classes.html @@ -417,7 +417,7 @@

    Declaration

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/Classes/InterstitialErrorEvent.html b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/Classes/InterstitialErrorEvent.html index 78229c1b00cb..aa839b7666a1 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/Classes/InterstitialErrorEvent.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/Classes/InterstitialErrorEvent.html @@ -203,7 +203,7 @@

    Declaration

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/Classes/InterstitialEvent.html b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/Classes/InterstitialEvent.html index 0bf20a9cf73d..b4542bcc11ed 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/Classes/InterstitialEvent.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/Classes/InterstitialEvent.html @@ -201,7 +201,7 @@

    Declaration

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/Classes/THEOadsEvent.html b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/Classes/THEOadsEvent.html index b6b1686d81d7..2ac9f16eb952 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/Classes/THEOadsEvent.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/Classes/THEOadsEvent.html @@ -229,7 +229,7 @@

    Declaration

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/Classes/THEOadsIntegrationFactory.html b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/Classes/THEOadsIntegrationFactory.html index f28c115dedf5..f4d25031e856 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/Classes/THEOadsIntegrationFactory.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/Classes/THEOadsIntegrationFactory.html @@ -228,7 +228,7 @@

    Declaration

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/Enums.html b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/Enums.html index 73b3cb84dd92..0fb9a69b524e 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/Enums.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/Enums.html @@ -223,7 +223,7 @@

    Declaration

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/Enums/InterstitialType.html b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/Enums/InterstitialType.html index 8857d36f4834..3ad1230b7a1e 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/Enums/InterstitialType.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/Enums/InterstitialType.html @@ -228,7 +228,7 @@

    Declaration

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/Enums/THEOadsLayout.html b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/Enums/THEOadsLayout.html index 24f36abde3a9..0ad151b8dd63 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/Enums/THEOadsLayout.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/Enums/THEOadsLayout.html @@ -254,7 +254,7 @@

    Declaration

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/Extensions.html b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/Extensions.html index 97a425531cde..f0f2ec914f54 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/Extensions.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/Extensions.html @@ -327,7 +327,7 @@

    Declaration

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/Extensions/Ads.html b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/Extensions/Ads.html index 15610c3b5434..8987d4f63f01 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/Extensions/Ads.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/Extensions/Ads.html @@ -202,7 +202,7 @@

    Declaration

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/Extensions/THEOplayer.html b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/Extensions/THEOplayer.html index 8ddc674abe74..1b5701415c29 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/Extensions/THEOplayer.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/Extensions/THEOplayer.html @@ -202,7 +202,7 @@

    Declaration

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/Protocols.html b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/Protocols.html index 215d2e0ad3fe..b28dc11091a7 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/Protocols.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/Protocols.html @@ -335,7 +335,7 @@

    Declaration

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/Protocols/AdBreakInterstitial.html b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/Protocols/AdBreakInterstitial.html index 732d6a700ae1..4532c564f391 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/Protocols/AdBreakInterstitial.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/Protocols/AdBreakInterstitial.html @@ -267,7 +267,7 @@

    Declaration

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/Protocols/Interstitial.html b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/Protocols/Interstitial.html index cb0bfc7f3f58..26ae40116c97 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/Protocols/Interstitial.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/Protocols/Interstitial.html @@ -316,7 +316,7 @@

    Declaration

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/Protocols/OverlayInterstitial.html b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/Protocols/OverlayInterstitial.html index fbe28a24ac3c..023ae7a672b0 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/Protocols/OverlayInterstitial.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/Protocols/OverlayInterstitial.html @@ -284,7 +284,7 @@

    Declaration

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/Protocols/OverlayPosition.html b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/Protocols/OverlayPosition.html index 71d540dfc5ef..1b398a71b6b1 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/Protocols/OverlayPosition.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/Protocols/OverlayPosition.html @@ -280,7 +280,7 @@

    Declaration

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/Protocols/OverlaySize.html b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/Protocols/OverlaySize.html index fd4c7efaa1c1..ea40b7d3c16b 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/Protocols/OverlaySize.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/Protocols/OverlaySize.html @@ -228,7 +228,7 @@

    Declaration

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/Protocols/THEOadsIntegration.html b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/Protocols/THEOadsIntegration.html index 168e83b30845..b3ed904782cb 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/Protocols/THEOadsIntegration.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/Protocols/THEOadsIntegration.html @@ -382,7 +382,7 @@

    Parameters

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/Structs.html b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/Structs.html index b8b36d5b9a79..1bb7ebdf2caf 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/Structs.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/Structs.html @@ -194,7 +194,7 @@

    Declaration

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/Structs/THEOadsEventTypes.html b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/Structs/THEOadsEventTypes.html index a86c0e9d6a51..d5caa3e901e2 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/Structs/THEOadsEventTypes.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/Structs/THEOadsEventTypes.html @@ -337,7 +337,7 @@

    Declaration

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/docsets/.docset/Contents/Resources/Documents/Classes.html b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/docsets/.docset/Contents/Resources/Documents/Classes.html index 30d5eaeb32be..d502a5a415e5 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/docsets/.docset/Contents/Resources/Documents/Classes.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/docsets/.docset/Contents/Resources/Documents/Classes.html @@ -417,7 +417,7 @@

    Declaration

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/docsets/.docset/Contents/Resources/Documents/Classes/InterstitialErrorEvent.html b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/docsets/.docset/Contents/Resources/Documents/Classes/InterstitialErrorEvent.html index 78229c1b00cb..aa839b7666a1 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/docsets/.docset/Contents/Resources/Documents/Classes/InterstitialErrorEvent.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/docsets/.docset/Contents/Resources/Documents/Classes/InterstitialErrorEvent.html @@ -203,7 +203,7 @@

    Declaration

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/docsets/.docset/Contents/Resources/Documents/Classes/InterstitialEvent.html b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/docsets/.docset/Contents/Resources/Documents/Classes/InterstitialEvent.html index 0bf20a9cf73d..b4542bcc11ed 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/docsets/.docset/Contents/Resources/Documents/Classes/InterstitialEvent.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/docsets/.docset/Contents/Resources/Documents/Classes/InterstitialEvent.html @@ -201,7 +201,7 @@

    Declaration

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/docsets/.docset/Contents/Resources/Documents/Classes/THEOadsEvent.html b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/docsets/.docset/Contents/Resources/Documents/Classes/THEOadsEvent.html index b6b1686d81d7..2ac9f16eb952 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/docsets/.docset/Contents/Resources/Documents/Classes/THEOadsEvent.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/docsets/.docset/Contents/Resources/Documents/Classes/THEOadsEvent.html @@ -229,7 +229,7 @@

    Declaration

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/docsets/.docset/Contents/Resources/Documents/Classes/THEOadsIntegrationFactory.html b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/docsets/.docset/Contents/Resources/Documents/Classes/THEOadsIntegrationFactory.html index f28c115dedf5..f4d25031e856 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/docsets/.docset/Contents/Resources/Documents/Classes/THEOadsIntegrationFactory.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/docsets/.docset/Contents/Resources/Documents/Classes/THEOadsIntegrationFactory.html @@ -228,7 +228,7 @@

    Declaration

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/docsets/.docset/Contents/Resources/Documents/Enums.html b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/docsets/.docset/Contents/Resources/Documents/Enums.html index 73b3cb84dd92..0fb9a69b524e 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/docsets/.docset/Contents/Resources/Documents/Enums.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/docsets/.docset/Contents/Resources/Documents/Enums.html @@ -223,7 +223,7 @@

    Declaration

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/docsets/.docset/Contents/Resources/Documents/Enums/InterstitialType.html b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/docsets/.docset/Contents/Resources/Documents/Enums/InterstitialType.html index 8857d36f4834..3ad1230b7a1e 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/docsets/.docset/Contents/Resources/Documents/Enums/InterstitialType.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/docsets/.docset/Contents/Resources/Documents/Enums/InterstitialType.html @@ -228,7 +228,7 @@

    Declaration

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/docsets/.docset/Contents/Resources/Documents/Enums/THEOadsLayout.html b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/docsets/.docset/Contents/Resources/Documents/Enums/THEOadsLayout.html index 24f36abde3a9..0ad151b8dd63 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/docsets/.docset/Contents/Resources/Documents/Enums/THEOadsLayout.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/docsets/.docset/Contents/Resources/Documents/Enums/THEOadsLayout.html @@ -254,7 +254,7 @@

    Declaration

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/docsets/.docset/Contents/Resources/Documents/Extensions.html b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/docsets/.docset/Contents/Resources/Documents/Extensions.html index 97a425531cde..f0f2ec914f54 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/docsets/.docset/Contents/Resources/Documents/Extensions.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/docsets/.docset/Contents/Resources/Documents/Extensions.html @@ -327,7 +327,7 @@

    Declaration

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/docsets/.docset/Contents/Resources/Documents/Extensions/Ads.html b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/docsets/.docset/Contents/Resources/Documents/Extensions/Ads.html index 15610c3b5434..8987d4f63f01 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/docsets/.docset/Contents/Resources/Documents/Extensions/Ads.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/docsets/.docset/Contents/Resources/Documents/Extensions/Ads.html @@ -202,7 +202,7 @@

    Declaration

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/docsets/.docset/Contents/Resources/Documents/Extensions/THEOplayer.html b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/docsets/.docset/Contents/Resources/Documents/Extensions/THEOplayer.html index 8ddc674abe74..1b5701415c29 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/docsets/.docset/Contents/Resources/Documents/Extensions/THEOplayer.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/docsets/.docset/Contents/Resources/Documents/Extensions/THEOplayer.html @@ -202,7 +202,7 @@

    Declaration

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/docsets/.docset/Contents/Resources/Documents/Protocols.html b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/docsets/.docset/Contents/Resources/Documents/Protocols.html index 215d2e0ad3fe..b28dc11091a7 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/docsets/.docset/Contents/Resources/Documents/Protocols.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/docsets/.docset/Contents/Resources/Documents/Protocols.html @@ -335,7 +335,7 @@

    Declaration

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/docsets/.docset/Contents/Resources/Documents/Protocols/AdBreakInterstitial.html b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/docsets/.docset/Contents/Resources/Documents/Protocols/AdBreakInterstitial.html index 732d6a700ae1..4532c564f391 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/docsets/.docset/Contents/Resources/Documents/Protocols/AdBreakInterstitial.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/docsets/.docset/Contents/Resources/Documents/Protocols/AdBreakInterstitial.html @@ -267,7 +267,7 @@

    Declaration

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/docsets/.docset/Contents/Resources/Documents/Protocols/Interstitial.html b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/docsets/.docset/Contents/Resources/Documents/Protocols/Interstitial.html index cb0bfc7f3f58..26ae40116c97 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/docsets/.docset/Contents/Resources/Documents/Protocols/Interstitial.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/docsets/.docset/Contents/Resources/Documents/Protocols/Interstitial.html @@ -316,7 +316,7 @@

    Declaration

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/docsets/.docset/Contents/Resources/Documents/Protocols/OverlayInterstitial.html b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/docsets/.docset/Contents/Resources/Documents/Protocols/OverlayInterstitial.html index fbe28a24ac3c..023ae7a672b0 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/docsets/.docset/Contents/Resources/Documents/Protocols/OverlayInterstitial.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/docsets/.docset/Contents/Resources/Documents/Protocols/OverlayInterstitial.html @@ -284,7 +284,7 @@

    Declaration

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/docsets/.docset/Contents/Resources/Documents/Protocols/OverlayPosition.html b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/docsets/.docset/Contents/Resources/Documents/Protocols/OverlayPosition.html index 71d540dfc5ef..1b398a71b6b1 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/docsets/.docset/Contents/Resources/Documents/Protocols/OverlayPosition.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/docsets/.docset/Contents/Resources/Documents/Protocols/OverlayPosition.html @@ -280,7 +280,7 @@

    Declaration

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/docsets/.docset/Contents/Resources/Documents/Protocols/OverlaySize.html b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/docsets/.docset/Contents/Resources/Documents/Protocols/OverlaySize.html index fd4c7efaa1c1..ea40b7d3c16b 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/docsets/.docset/Contents/Resources/Documents/Protocols/OverlaySize.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/docsets/.docset/Contents/Resources/Documents/Protocols/OverlaySize.html @@ -228,7 +228,7 @@

    Declaration

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/docsets/.docset/Contents/Resources/Documents/Protocols/THEOadsIntegration.html b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/docsets/.docset/Contents/Resources/Documents/Protocols/THEOadsIntegration.html index 168e83b30845..b3ed904782cb 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/docsets/.docset/Contents/Resources/Documents/Protocols/THEOadsIntegration.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/docsets/.docset/Contents/Resources/Documents/Protocols/THEOadsIntegration.html @@ -382,7 +382,7 @@

    Parameters

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/docsets/.docset/Contents/Resources/Documents/Structs.html b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/docsets/.docset/Contents/Resources/Documents/Structs.html index b8b36d5b9a79..1bb7ebdf2caf 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/docsets/.docset/Contents/Resources/Documents/Structs.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/docsets/.docset/Contents/Resources/Documents/Structs.html @@ -194,7 +194,7 @@

    Declaration

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/docsets/.docset/Contents/Resources/Documents/Structs/THEOadsEventTypes.html b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/docsets/.docset/Contents/Resources/Documents/Structs/THEOadsEventTypes.html index a86c0e9d6a51..d5caa3e901e2 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/docsets/.docset/Contents/Resources/Documents/Structs/THEOadsEventTypes.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/docsets/.docset/Contents/Resources/Documents/Structs/THEOadsEventTypes.html @@ -337,7 +337,7 @@

    Declaration

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/docsets/.docset/Contents/Resources/Documents/img/carat.png b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/docsets/.docset/Contents/Resources/Documents/img/carat.png old mode 100755 new mode 100644 diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/docsets/.docset/Contents/Resources/Documents/img/dash.png b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/docsets/.docset/Contents/Resources/Documents/img/dash.png old mode 100755 new mode 100644 diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/docsets/.docset/Contents/Resources/Documents/index.html b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/docsets/.docset/Contents/Resources/Documents/index.html index 2e87744d8a13..44db3b224297 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/docsets/.docset/Contents/Resources/Documents/index.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/docsets/.docset/Contents/Resources/Documents/index.html @@ -179,7 +179,7 @@

    Add a THEOAdDescription diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/docsets/.docset/Contents/Resources/Documents/js/jazzy.js b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/docsets/.docset/Contents/Resources/Documents/js/jazzy.js old mode 100755 new mode 100644 diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/img/carat.png b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/img/carat.png old mode 100755 new mode 100644 diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/img/dash.png b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/img/dash.png old mode 100755 new mode 100644 diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/index.html b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/index.html index 2e87744d8a13..44db3b224297 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/index.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/index.html @@ -179,7 +179,7 @@

    Add a THEOAdDescription diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/js/jazzy.js b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/js/jazzy.js old mode 100755 new mode 100644 diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/undocumented.json b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/undocumented.json index 71021682019e..8a59525bc953 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/undocumented.json +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOads/undocumented.json @@ -1,4 +1,4 @@ { "warnings": [], - "source_directory": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios" + "source_directory": "/Users/distiller/project/ios" } \ No newline at end of file diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/Classes.html b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/Classes.html index 9da1ea572c72..2e0fc27eec22 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/Classes.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/Classes.html @@ -426,7 +426,7 @@

    Declaration

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/Classes/DistributionLoadStartEvent.html b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/Classes/DistributionLoadStartEvent.html index e4f259775c20..4780bf6b8215 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/Classes/DistributionLoadStartEvent.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/Classes/DistributionLoadStartEvent.html @@ -208,7 +208,7 @@

    Declaration

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/Classes/DistributionOfflineEvent.html b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/Classes/DistributionOfflineEvent.html index 4302a2b2762e..32a97feec050 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/Classes/DistributionOfflineEvent.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/Classes/DistributionOfflineEvent.html @@ -208,7 +208,7 @@

    Declaration

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/Classes/EndpointLoadedEvent.html b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/Classes/EndpointLoadedEvent.html index 66199acf1cf9..b4ae0ca5b037 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/Classes/EndpointLoadedEvent.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/Classes/EndpointLoadedEvent.html @@ -211,7 +211,7 @@

    Declaration

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/Classes/IntentToFallbackEvent.html b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/Classes/IntentToFallbackEvent.html index e87a6a9470ae..457e2197f038 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/Classes/IntentToFallbackEvent.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/Classes/IntentToFallbackEvent.html @@ -209,7 +209,7 @@

    Declaration

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/Classes/THEOliveErrorEvent.html b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/Classes/THEOliveErrorEvent.html index 2ca45f844922..60809ee04411 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/Classes/THEOliveErrorEvent.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/Classes/THEOliveErrorEvent.html @@ -208,7 +208,7 @@

    Declaration

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/Classes/THEOliveEvent.html b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/Classes/THEOliveEvent.html index f3512297d89f..3cf1efa274de 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/Classes/THEOliveEvent.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/Classes/THEOliveEvent.html @@ -236,7 +236,7 @@

    Declaration

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/Classes/THEOliveIntegrationFactory.html b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/Classes/THEOliveIntegrationFactory.html index ca938f0cde0a..282e34f336bb 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/Classes/THEOliveIntegrationFactory.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/Classes/THEOliveIntegrationFactory.html @@ -239,7 +239,7 @@

    Declaration

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/Classes/TheoLiveSource.html b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/Classes/TheoLiveSource.html index 9960cd69d8f4..911458333bfc 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/Classes/TheoLiveSource.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/Classes/TheoLiveSource.html @@ -390,7 +390,7 @@

    Declaration

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/Classes/WebrtcOptions.html b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/Classes/WebrtcOptions.html index de9759836284..275501a04b2f 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/Classes/WebrtcOptions.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/Classes/WebrtcOptions.html @@ -235,7 +235,7 @@

    Declaration

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/Extensions.html b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/Extensions.html index caa7acd9e375..9cda5ab2ccda 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/Extensions.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/Extensions.html @@ -387,7 +387,7 @@

    Declaration

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/Extensions/Distribution.html b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/Extensions/Distribution.html index 693041053d8e..c587167c173b 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/Extensions/Distribution.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/Extensions/Distribution.html @@ -208,7 +208,7 @@

    Declaration

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/Extensions/THEOliveIntegrationImplementation.html b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/Extensions/THEOliveIntegrationImplementation.html index 689a10fcf942..c25998cf02ce 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/Extensions/THEOliveIntegrationImplementation.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/Extensions/THEOliveIntegrationImplementation.html @@ -210,7 +210,7 @@

    Declaration

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/Extensions/THEOplayerConfiguration.html b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/Extensions/THEOplayerConfiguration.html index 4d194933c281..8efcb47deef5 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/Extensions/THEOplayerConfiguration.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/Extensions/THEOplayerConfiguration.html @@ -209,7 +209,7 @@

    Declaration

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/Extensions/THEOplayerConfigurationBuilder.html b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/Extensions/THEOplayerConfigurationBuilder.html index 79115be6f2d4..deedeb47dca4 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/Extensions/THEOplayerConfigurationBuilder.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/Extensions/THEOplayerConfigurationBuilder.html @@ -209,7 +209,7 @@

    Declaration

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/Extensions/THEOplayerSDK.html b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/Extensions/THEOplayerSDK.html index 8a217d335812..cc7343b99610 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/Extensions/THEOplayerSDK.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/Extensions/THEOplayerSDK.html @@ -202,7 +202,7 @@

    Declaration

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/Extensions/THEOplayerSDK/THEOplayer.html b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/Extensions/THEOplayerSDK/THEOplayer.html index 360c7f2a9835..f1b77bcb91dc 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/Extensions/THEOplayerSDK/THEOplayer.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/Extensions/THEOplayerSDK/THEOplayer.html @@ -215,7 +215,7 @@

    Declaration

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/Protocols.html b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/Protocols.html index 953b2a16e00a..90e0a0dc3b5a 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/Protocols.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/Protocols.html @@ -283,7 +283,7 @@

    Declaration

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/Protocols/EndpointAPI.html b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/Protocols/EndpointAPI.html index c0567590ead9..25e7cbd522d3 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/Protocols/EndpointAPI.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/Protocols/EndpointAPI.html @@ -364,7 +364,7 @@

    Declaration

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/Protocols/THEOlive.html b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/Protocols/THEOlive.html index 4a6683a77381..a4a9a9146769 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/Protocols/THEOlive.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/Protocols/THEOlive.html @@ -308,7 +308,7 @@

    Parameters

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/Protocols/THEOliveAPI.html b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/Protocols/THEOliveAPI.html index c2ebc3574b13..d1259dbc15d9 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/Protocols/THEOliveAPI.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/Protocols/THEOliveAPI.html @@ -339,7 +339,7 @@

    Declaration

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/Structs.html b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/Structs.html index 1c16f84048a2..39748a284bd2 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/Structs.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/Structs.html @@ -318,7 +318,7 @@

    Declaration

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/Structs/EndpointMillicastSource.html b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/Structs/EndpointMillicastSource.html index e83a5f3c6c56..b3db247e8f53 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/Structs/EndpointMillicastSource.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/Structs/EndpointMillicastSource.html @@ -338,7 +338,7 @@

    Declaration

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/Structs/HESPLatencies.html b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/Structs/HESPLatencies.html index 080cb87d8f7a..ee90dbbb6734 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/Structs/HESPLatencies.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/Structs/HESPLatencies.html @@ -364,7 +364,7 @@

    Declaration

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/Structs/PlayoutDelay.html b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/Structs/PlayoutDelay.html index b9b9b865bfa6..c7bcdfe3ec22 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/Structs/PlayoutDelay.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/Structs/PlayoutDelay.html @@ -268,7 +268,7 @@

    Declaration

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/Structs/THEOliveConfiguration.html b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/Structs/THEOliveConfiguration.html index 5eb978ff5ebc..40d3c4f013d7 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/Structs/THEOliveConfiguration.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/Structs/THEOliveConfiguration.html @@ -334,7 +334,7 @@

    Parameters

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/Structs/THEOliveEventTypes.html b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/Structs/THEOliveEventTypes.html index 9e9ef2ba723f..b67e2554550c 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/Structs/THEOliveEventTypes.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/Structs/THEOliveEventTypes.html @@ -318,7 +318,7 @@

    Declaration

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/docsets/.docset/Contents/Resources/Documents/Classes.html b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/docsets/.docset/Contents/Resources/Documents/Classes.html index 9da1ea572c72..2e0fc27eec22 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/docsets/.docset/Contents/Resources/Documents/Classes.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/docsets/.docset/Contents/Resources/Documents/Classes.html @@ -426,7 +426,7 @@

    Declaration

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/docsets/.docset/Contents/Resources/Documents/Classes/DistributionLoadStartEvent.html b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/docsets/.docset/Contents/Resources/Documents/Classes/DistributionLoadStartEvent.html index e4f259775c20..4780bf6b8215 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/docsets/.docset/Contents/Resources/Documents/Classes/DistributionLoadStartEvent.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/docsets/.docset/Contents/Resources/Documents/Classes/DistributionLoadStartEvent.html @@ -208,7 +208,7 @@

    Declaration

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/docsets/.docset/Contents/Resources/Documents/Classes/DistributionOfflineEvent.html b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/docsets/.docset/Contents/Resources/Documents/Classes/DistributionOfflineEvent.html index 4302a2b2762e..32a97feec050 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/docsets/.docset/Contents/Resources/Documents/Classes/DistributionOfflineEvent.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/docsets/.docset/Contents/Resources/Documents/Classes/DistributionOfflineEvent.html @@ -208,7 +208,7 @@

    Declaration

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/docsets/.docset/Contents/Resources/Documents/Classes/EndpointLoadedEvent.html b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/docsets/.docset/Contents/Resources/Documents/Classes/EndpointLoadedEvent.html index 66199acf1cf9..b4ae0ca5b037 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/docsets/.docset/Contents/Resources/Documents/Classes/EndpointLoadedEvent.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/docsets/.docset/Contents/Resources/Documents/Classes/EndpointLoadedEvent.html @@ -211,7 +211,7 @@

    Declaration

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/docsets/.docset/Contents/Resources/Documents/Classes/IntentToFallbackEvent.html b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/docsets/.docset/Contents/Resources/Documents/Classes/IntentToFallbackEvent.html index e87a6a9470ae..457e2197f038 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/docsets/.docset/Contents/Resources/Documents/Classes/IntentToFallbackEvent.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/docsets/.docset/Contents/Resources/Documents/Classes/IntentToFallbackEvent.html @@ -209,7 +209,7 @@

    Declaration

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/docsets/.docset/Contents/Resources/Documents/Classes/THEOliveErrorEvent.html b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/docsets/.docset/Contents/Resources/Documents/Classes/THEOliveErrorEvent.html index 2ca45f844922..60809ee04411 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/docsets/.docset/Contents/Resources/Documents/Classes/THEOliveErrorEvent.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/docsets/.docset/Contents/Resources/Documents/Classes/THEOliveErrorEvent.html @@ -208,7 +208,7 @@

    Declaration

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/docsets/.docset/Contents/Resources/Documents/Classes/THEOliveEvent.html b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/docsets/.docset/Contents/Resources/Documents/Classes/THEOliveEvent.html index f3512297d89f..3cf1efa274de 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/docsets/.docset/Contents/Resources/Documents/Classes/THEOliveEvent.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/docsets/.docset/Contents/Resources/Documents/Classes/THEOliveEvent.html @@ -236,7 +236,7 @@

    Declaration

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/docsets/.docset/Contents/Resources/Documents/Classes/THEOliveIntegrationFactory.html b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/docsets/.docset/Contents/Resources/Documents/Classes/THEOliveIntegrationFactory.html index ca938f0cde0a..282e34f336bb 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/docsets/.docset/Contents/Resources/Documents/Classes/THEOliveIntegrationFactory.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/docsets/.docset/Contents/Resources/Documents/Classes/THEOliveIntegrationFactory.html @@ -239,7 +239,7 @@

    Declaration

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/docsets/.docset/Contents/Resources/Documents/Classes/TheoLiveSource.html b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/docsets/.docset/Contents/Resources/Documents/Classes/TheoLiveSource.html index 9960cd69d8f4..911458333bfc 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/docsets/.docset/Contents/Resources/Documents/Classes/TheoLiveSource.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/docsets/.docset/Contents/Resources/Documents/Classes/TheoLiveSource.html @@ -390,7 +390,7 @@

    Declaration

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/docsets/.docset/Contents/Resources/Documents/Classes/WebrtcOptions.html b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/docsets/.docset/Contents/Resources/Documents/Classes/WebrtcOptions.html index de9759836284..275501a04b2f 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/docsets/.docset/Contents/Resources/Documents/Classes/WebrtcOptions.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/docsets/.docset/Contents/Resources/Documents/Classes/WebrtcOptions.html @@ -235,7 +235,7 @@

    Declaration

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/docsets/.docset/Contents/Resources/Documents/Extensions.html b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/docsets/.docset/Contents/Resources/Documents/Extensions.html index caa7acd9e375..9cda5ab2ccda 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/docsets/.docset/Contents/Resources/Documents/Extensions.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/docsets/.docset/Contents/Resources/Documents/Extensions.html @@ -387,7 +387,7 @@

    Declaration

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/docsets/.docset/Contents/Resources/Documents/Extensions/Distribution.html b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/docsets/.docset/Contents/Resources/Documents/Extensions/Distribution.html index 693041053d8e..c587167c173b 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/docsets/.docset/Contents/Resources/Documents/Extensions/Distribution.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/docsets/.docset/Contents/Resources/Documents/Extensions/Distribution.html @@ -208,7 +208,7 @@

    Declaration

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/docsets/.docset/Contents/Resources/Documents/Extensions/THEOliveIntegrationImplementation.html b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/docsets/.docset/Contents/Resources/Documents/Extensions/THEOliveIntegrationImplementation.html index 689a10fcf942..c25998cf02ce 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/docsets/.docset/Contents/Resources/Documents/Extensions/THEOliveIntegrationImplementation.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/docsets/.docset/Contents/Resources/Documents/Extensions/THEOliveIntegrationImplementation.html @@ -210,7 +210,7 @@

    Declaration

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/docsets/.docset/Contents/Resources/Documents/Extensions/THEOplayerConfiguration.html b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/docsets/.docset/Contents/Resources/Documents/Extensions/THEOplayerConfiguration.html index 4d194933c281..8efcb47deef5 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/docsets/.docset/Contents/Resources/Documents/Extensions/THEOplayerConfiguration.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/docsets/.docset/Contents/Resources/Documents/Extensions/THEOplayerConfiguration.html @@ -209,7 +209,7 @@

    Declaration

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/docsets/.docset/Contents/Resources/Documents/Extensions/THEOplayerConfigurationBuilder.html b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/docsets/.docset/Contents/Resources/Documents/Extensions/THEOplayerConfigurationBuilder.html index 79115be6f2d4..deedeb47dca4 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/docsets/.docset/Contents/Resources/Documents/Extensions/THEOplayerConfigurationBuilder.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/docsets/.docset/Contents/Resources/Documents/Extensions/THEOplayerConfigurationBuilder.html @@ -209,7 +209,7 @@

    Declaration

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/docsets/.docset/Contents/Resources/Documents/Extensions/THEOplayerSDK.html b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/docsets/.docset/Contents/Resources/Documents/Extensions/THEOplayerSDK.html index 8a217d335812..cc7343b99610 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/docsets/.docset/Contents/Resources/Documents/Extensions/THEOplayerSDK.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/docsets/.docset/Contents/Resources/Documents/Extensions/THEOplayerSDK.html @@ -202,7 +202,7 @@

    Declaration

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/docsets/.docset/Contents/Resources/Documents/Extensions/THEOplayerSDK/THEOplayer.html b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/docsets/.docset/Contents/Resources/Documents/Extensions/THEOplayerSDK/THEOplayer.html index 360c7f2a9835..f1b77bcb91dc 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/docsets/.docset/Contents/Resources/Documents/Extensions/THEOplayerSDK/THEOplayer.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/docsets/.docset/Contents/Resources/Documents/Extensions/THEOplayerSDK/THEOplayer.html @@ -215,7 +215,7 @@

    Declaration

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/docsets/.docset/Contents/Resources/Documents/Protocols.html b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/docsets/.docset/Contents/Resources/Documents/Protocols.html index 953b2a16e00a..90e0a0dc3b5a 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/docsets/.docset/Contents/Resources/Documents/Protocols.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/docsets/.docset/Contents/Resources/Documents/Protocols.html @@ -283,7 +283,7 @@

    Declaration

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/docsets/.docset/Contents/Resources/Documents/Protocols/EndpointAPI.html b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/docsets/.docset/Contents/Resources/Documents/Protocols/EndpointAPI.html index c0567590ead9..25e7cbd522d3 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/docsets/.docset/Contents/Resources/Documents/Protocols/EndpointAPI.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/docsets/.docset/Contents/Resources/Documents/Protocols/EndpointAPI.html @@ -364,7 +364,7 @@

    Declaration

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/docsets/.docset/Contents/Resources/Documents/Protocols/THEOlive.html b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/docsets/.docset/Contents/Resources/Documents/Protocols/THEOlive.html index 4a6683a77381..a4a9a9146769 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/docsets/.docset/Contents/Resources/Documents/Protocols/THEOlive.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/docsets/.docset/Contents/Resources/Documents/Protocols/THEOlive.html @@ -308,7 +308,7 @@

    Parameters

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/docsets/.docset/Contents/Resources/Documents/Protocols/THEOliveAPI.html b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/docsets/.docset/Contents/Resources/Documents/Protocols/THEOliveAPI.html index c2ebc3574b13..d1259dbc15d9 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/docsets/.docset/Contents/Resources/Documents/Protocols/THEOliveAPI.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/docsets/.docset/Contents/Resources/Documents/Protocols/THEOliveAPI.html @@ -339,7 +339,7 @@

    Declaration

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/docsets/.docset/Contents/Resources/Documents/Structs.html b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/docsets/.docset/Contents/Resources/Documents/Structs.html index 1c16f84048a2..39748a284bd2 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/docsets/.docset/Contents/Resources/Documents/Structs.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/docsets/.docset/Contents/Resources/Documents/Structs.html @@ -318,7 +318,7 @@

    Declaration

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/docsets/.docset/Contents/Resources/Documents/Structs/EndpointMillicastSource.html b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/docsets/.docset/Contents/Resources/Documents/Structs/EndpointMillicastSource.html index e83a5f3c6c56..b3db247e8f53 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/docsets/.docset/Contents/Resources/Documents/Structs/EndpointMillicastSource.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/docsets/.docset/Contents/Resources/Documents/Structs/EndpointMillicastSource.html @@ -338,7 +338,7 @@

    Declaration

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/docsets/.docset/Contents/Resources/Documents/Structs/HESPLatencies.html b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/docsets/.docset/Contents/Resources/Documents/Structs/HESPLatencies.html index 080cb87d8f7a..ee90dbbb6734 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/docsets/.docset/Contents/Resources/Documents/Structs/HESPLatencies.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/docsets/.docset/Contents/Resources/Documents/Structs/HESPLatencies.html @@ -364,7 +364,7 @@

    Declaration

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/docsets/.docset/Contents/Resources/Documents/Structs/PlayoutDelay.html b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/docsets/.docset/Contents/Resources/Documents/Structs/PlayoutDelay.html index b9b9b865bfa6..c7bcdfe3ec22 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/docsets/.docset/Contents/Resources/Documents/Structs/PlayoutDelay.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/docsets/.docset/Contents/Resources/Documents/Structs/PlayoutDelay.html @@ -268,7 +268,7 @@

    Declaration

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/docsets/.docset/Contents/Resources/Documents/Structs/THEOliveConfiguration.html b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/docsets/.docset/Contents/Resources/Documents/Structs/THEOliveConfiguration.html index 5eb978ff5ebc..40d3c4f013d7 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/docsets/.docset/Contents/Resources/Documents/Structs/THEOliveConfiguration.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/docsets/.docset/Contents/Resources/Documents/Structs/THEOliveConfiguration.html @@ -334,7 +334,7 @@

    Parameters

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/docsets/.docset/Contents/Resources/Documents/Structs/THEOliveEventTypes.html b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/docsets/.docset/Contents/Resources/Documents/Structs/THEOliveEventTypes.html index 9e9ef2ba723f..b67e2554550c 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/docsets/.docset/Contents/Resources/Documents/Structs/THEOliveEventTypes.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/docsets/.docset/Contents/Resources/Documents/Structs/THEOliveEventTypes.html @@ -318,7 +318,7 @@

    Declaration

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/docsets/.docset/Contents/Resources/Documents/img/carat.png b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/docsets/.docset/Contents/Resources/Documents/img/carat.png old mode 100755 new mode 100644 diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/docsets/.docset/Contents/Resources/Documents/img/dash.png b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/docsets/.docset/Contents/Resources/Documents/img/dash.png old mode 100755 new mode 100644 diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/docsets/.docset/Contents/Resources/Documents/index.html b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/docsets/.docset/Contents/Resources/Documents/index.html index 366dc406d25f..654087fa97c6 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/docsets/.docset/Contents/Resources/Documents/index.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/docsets/.docset/Contents/Resources/Documents/index.html @@ -177,7 +177,7 @@

    Add a THEOlive source

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/docsets/.docset/Contents/Resources/Documents/js/jazzy.js b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/docsets/.docset/Contents/Resources/Documents/js/jazzy.js old mode 100755 new mode 100644 diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/img/carat.png b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/img/carat.png old mode 100755 new mode 100644 diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/img/dash.png b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/img/dash.png old mode 100755 new mode 100644 diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/index.html b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/index.html index 366dc406d25f..654087fa97c6 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/index.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/index.html @@ -177,7 +177,7 @@

    Add a THEOlive source

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/js/jazzy.js b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/js/jazzy.js old mode 100755 new mode 100644 diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/undocumented.json b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/undocumented.json index 71021682019e..8a59525bc953 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/undocumented.json +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOlive/undocumented.json @@ -1,4 +1,4 @@ { "warnings": [], - "source_directory": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios" + "source_directory": "/Users/distiller/project/ios" } \ No newline at end of file diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOplayer API.html b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOplayer API.html index 6249cab2ba63..76ee738a3484 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/THEOplayer API.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/THEOplayer API.html @@ -1234,7 +1234,7 @@

    Declaration

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Text Track Cue API.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Text Track Cue API.html index eeee0ebf439d..695d8596ee7f 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Text Track Cue API.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Text Track Cue API.html @@ -1224,7 +1224,7 @@

    Declaration

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Text Track Cue Events.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Text Track Cue Events.html index 9b1872b74fc6..6bc9692d1508 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Text Track Cue Events.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Text Track Cue Events.html @@ -1110,7 +1110,7 @@

    Declaration

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Text Track Styling API.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Text Track Styling API.html index 600e8247d6c4..d4d3ce9f34d3 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Text Track Styling API.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Text Track Styling API.html @@ -1270,7 +1270,7 @@

    Declaration

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Track API.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Track API.html index d3ff2d2173b6..8cd4f3cb8bd6 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Track API.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Track API.html @@ -1231,7 +1231,7 @@

    Declaration

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Track Events.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Track Events.html index c874823e282c..0c8022970ac8 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Track Events.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Track Events.html @@ -1229,7 +1229,7 @@

    Declaration

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Track List API.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Track List API.html index 31094270bb0f..cc01719ceb5f 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Track List API.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Track List API.html @@ -1110,7 +1110,7 @@

    Declaration

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Track List Events.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Track List Events.html index ebf52b2ad4e9..e493cf61bdde 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Track List Events.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Track List Events.html @@ -1166,7 +1166,7 @@

    Declaration

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/Util.html b/theoplayer/static/theoplayer/v10/api-reference/ios/Util.html index c0937ada95bc..3866c56d8d12 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/Util.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/Util.html @@ -1054,7 +1054,7 @@

    Declaration

    diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/img/carat.png b/theoplayer/static/theoplayer/v10/api-reference/ios/img/carat.png old mode 100755 new mode 100644 diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/img/dash.png b/theoplayer/static/theoplayer/v10/api-reference/ios/img/dash.png old mode 100755 new mode 100644 diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/index.html b/theoplayer/static/theoplayer/v10/api-reference/ios/index.html index 449c90cf290c..952fb11f0749 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/index.html +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/index.html @@ -1001,7 +1001,7 @@

    Integration API references diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/js/jazzy.js b/theoplayer/static/theoplayer/v10/api-reference/ios/js/jazzy.js old mode 100755 new mode 100644 diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/search.json b/theoplayer/static/theoplayer/v10/api-reference/ios/search.json index ef6be801bfe8..c0d49e90ad55 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/search.json +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/search.json @@ -1 +1 @@ -{"Structs/THEOAdDescription/LayoutOverride.html#/s:13THEOplayerSDK17THEOAdDescriptionV14LayoutOverrideO6singleyA2EmF":{"name":"single","abstract":"

    Override to play all ad breaks using the “single” layout mode.

    ","parent_name":"LayoutOverride"},"Structs/THEOAdDescription/LayoutOverride.html#/s:13THEOplayerSDK17THEOAdDescriptionV14LayoutOverrideO6lShapeyA2EmF":{"name":"lShape","abstract":"

    Override to play all ad breaks using the “L-shape” layout mode.

    ","parent_name":"LayoutOverride"},"Structs/THEOAdDescription/LayoutOverride.html#/s:13THEOplayerSDK17THEOAdDescriptionV14LayoutOverrideO6doubleyA2EmF":{"name":"double","abstract":"

    Override to play all ad breaks using the “double” layout mode.

    ","parent_name":"LayoutOverride"},"Structs/THEOAdDescription.html#/s:13THEOplayerSDK13AdDescriptionP11integrationAA0C11IntegrationOSgvp":{"name":"integration","parent_name":"THEOAdDescription"},"Structs/THEOAdDescription.html#/s:13THEOplayerSDK17THEOAdDescriptionV11networkCodeSSSgvp":{"name":"networkCode","abstract":"

    Default GAM network code to use for ad requests.

    ","parent_name":"THEOAdDescription"},"Structs/THEOAdDescription.html#/s:13THEOplayerSDK17THEOAdDescriptionV14customAssetKeySSSgvp":{"name":"customAssetKey","abstract":"

    Default GAM custom asset key to use for ad requests.

    ","parent_name":"THEOAdDescription"},"Structs/THEOAdDescription.html#/s:13THEOplayerSDK17THEOAdDescriptionV17backdropDoubleBox10Foundation3URLVSgvp":{"name":"backdropDoubleBox","abstract":"

    Default backdrop image URL to be used as a background for ads with a double box layout.

    ","parent_name":"THEOAdDescription"},"Structs/THEOAdDescription.html#/s:13THEOplayerSDK17THEOAdDescriptionV14backdropLShape10Foundation3URLVSgvp":{"name":"backdropLShape","abstract":"

    Default backdrop image URL to be used as a background for ads in L-shape layout.

    ","parent_name":"THEOAdDescription"},"Structs/THEOAdDescription.html#/s:13THEOplayerSDK17THEOAdDescriptionV14overrideLayoutAC0F8OverrideOSgvp":{"name":"overrideLayout","abstract":"

    Overrides the layout of all THEOads ad breaks, if set.

    ","parent_name":"THEOAdDescription"},"Structs/THEOAdDescription.html#/s:13THEOplayerSDK17THEOAdDescriptionV13overrideAdSrc10Foundation3URLVSgvp":{"name":"overrideAdSrc","abstract":"

    Overrides the ad source of all THEOads ad breaks, if set.

    ","parent_name":"THEOAdDescription"},"Structs/THEOAdDescription.html#/s:13THEOplayerSDK17THEOAdDescriptionV15adTagParametersSDyS2SGSgvp":{"name":"adTagParameters","abstract":"

    The ad tag parameters added to the GAM stream request.

    ","parent_name":"THEOAdDescription"},"Structs/THEOAdDescription.html#/s:13THEOplayerSDK17THEOAdDescriptionV23streamActivityMonitorIdSSSgvp":{"name":"streamActivityMonitorId","abstract":"

    The streamActivityMonitorId added to the GAM Pod stream request.

    ","parent_name":"THEOAdDescription"},"Structs/THEOAdDescription.html#/s:13THEOplayerSDK17THEOAdDescriptionV6useId3Sbvp":{"name":"useId3","abstract":"

    Whether to use the ID3-based operating mode.

    ","parent_name":"THEOAdDescription"},"Structs/THEOAdDescription.html#/s:13THEOplayerSDK17THEOAdDescriptionV11sseEndpointSSSgvp":{"name":"sseEndpoint","abstract":"

    The endpoint from where to retrieve the server-sent events.

    ","parent_name":"THEOAdDescription"},"Structs/THEOAdDescription.html#/s:13THEOplayerSDK17THEOAdDescriptionV16retrievePodIdURISSSgvp":{"name":"retrievePodIdURI","abstract":"

    The URI from where to retrieve the PodID’s as returned from the EABN service from Google.

    ","parent_name":"THEOAdDescription"},"Structs/THEOAdDescription.html#/s:13THEOplayerSDK17THEOAdDescriptionV19initializationDelaySdSgvp":{"name":"initializationDelay","abstract":"

    The amount of seconds we wait to initialize THEOads.

    ","parent_name":"THEOAdDescription"},"Structs/THEOAdDescription.html#/s:13THEOplayerSDK17THEOAdDescriptionV12returnToLiveSbvp":{"name":"returnToLive","abstract":"

    Whether to return to the live edge when playing live content, after an ad break ends.

    ","parent_name":"THEOAdDescription"},"Structs/THEOAdDescription.html#/s:13THEOplayerSDK17THEOAdDescriptionV11daiAssetKeySSSgvp":{"name":"daiAssetKey","abstract":"

    The Google DAI asset key which will be used as a fallback source when THEOads is not supported.

    ","parent_name":"THEOAdDescription"},"Structs/THEOAdDescription/LayoutOverride.html":{"name":"LayoutOverride","abstract":"

    Describes how and when the layout of a THEOads ad break should be overridden.

    ","parent_name":"THEOAdDescription"},"Structs/THEOAdDescription.html":{"name":"THEOAdDescription","abstract":"

    Describes how TheoAds should be enabled

    "},"Protocols/DeveloperSettings.html#/s:13THEOplayerSDK17DeveloperSettingsP19manifestInterceptorAA08ManifestF0_pSgvp":{"name":"manifestInterceptor","abstract":"

    Manifest interceptor delegate

    ","parent_name":"DeveloperSettings"},"Protocols/ManifestInterceptor.html#/s:13THEOplayerSDK19ManifestInterceptorP12customSchemeSSvp":{"name":"customScheme","abstract":"

    The custom URL scheme that THEOplayer will use when playing the sources.","parent_name":"ManifestInterceptor"},"Protocols/NetworkAPI.html#/s:13THEOplayerSDK10NetworkAPIP27addMediaPlaylistInterceptoryyAA0fgH0_pF":{"name":"addMediaPlaylistInterceptor(_:)","abstract":"

    Adds a MediaPlaylistInterceptor to manipulate media playlist requests and responses. (Experimental)

    ","parent_name":"NetworkAPI"},"Protocols/NetworkAPI.html#/s:13THEOplayerSDK10NetworkAPIP30removeMediaPlaylistInterceptoryyAA0fgH0_pF":{"name":"removeMediaPlaylistInterceptor(_:)","abstract":"

    Removes a MediaPlaylistInterceptor. (Experimental)

    ","parent_name":"NetworkAPI"},"Protocols/NetworkAPI.html#/s:13THEOplayerSDK10NetworkAPIP21removeAllInterceptorsyyF":{"name":"removeAllInterceptors()","abstract":"

    Removes all MediaPlaylistInterceptors. (Experimental)

    ","parent_name":"NetworkAPI"},"Protocols/MediaPlaylistInterceptor.html#/s:13THEOplayerSDK24MediaPlaylistInterceptorP015shouldInterceptD7Request4typeSbAA03HlsD4TypeO_tF":{"name":"shouldInterceptPlaylistRequest(type:)","abstract":"

    Called to check, if certain playlist request types have to be intercepted.

    ","parent_name":"MediaPlaylistInterceptor"},"Protocols/MediaPlaylistInterceptor.html#/s:13THEOplayerSDK24MediaPlaylistInterceptorP015shouldInterceptD8Response4typeSbAA03HlsD4TypeO_tF":{"name":"shouldInterceptPlaylistResponse(type:)","abstract":"

    Called to check, if certain playlist response types have to be intercepted.

    ","parent_name":"MediaPlaylistInterceptor"},"Protocols/MediaPlaylistInterceptor.html#/s:13THEOplayerSDK24MediaPlaylistInterceptorP012didInterceptD7Request4type7request10Foundation10URLRequestVAA03HlsD4TypeO_AItYaKF":{"name":"didInterceptPlaylistRequest(type:request:)","abstract":"

    Called when the certain playlist request is intercepted.

    ","parent_name":"MediaPlaylistInterceptor"},"Protocols/MediaPlaylistInterceptor.html#/s:13THEOplayerSDK24MediaPlaylistInterceptorP012didInterceptD8Response4type3url8response4data10Foundation4DataVAA03HlsD4TypeO_AI3URLVSo13NSURLResponseCAKtYaKF":{"name":"didInterceptPlaylistResponse(type:url:response:data:)","abstract":"

    Called when the certain playlist response is intercepted.

    ","parent_name":"MediaPlaylistInterceptor"},"Protocols/MediaPlaylistInterceptor.html#/s:13THEOplayerSDK24MediaPlaylistInterceptorP25failedToPerformURLRequest7request8responsey10Foundation0I0V_So13NSURLResponseCtF":{"name":"failedToPerformURLRequest(request:response:)","abstract":"

    Called when a certain URLRequest is failed.

    ","parent_name":"MediaPlaylistInterceptor"},"Protocols/QualityList.html#/s:13THEOplayerSDK11QualityListP5countSivp":{"name":"count","abstract":"

    The number of qualities in the list.

    ","parent_name":"QualityList"},"Protocols/QualityList.html#/s:13THEOplayerSDK11QualityListP3getyAA0C0_pSiF":{"name":"get(_:)","abstract":"

    Returns the Quality object representing the quality at the index position in the media track’s quality list.

    ","parent_name":"QualityList"},"Protocols/QualityList.html#/s:13THEOplayerSDK11QualityListPyAA0C0_pSicip":{"name":"subscript(_:)","abstract":"

    Returns the Quality object representing the quality at the index position in the media track’s quality list.

    ","parent_name":"QualityList"},"Protocols/VideoQuality.html#/s:13THEOplayerSDK12VideoQualityP5widthSivp":{"name":"width","abstract":"

    The video width of the video quality, in pixels.

    ","parent_name":"VideoQuality"},"Protocols/VideoQuality.html#/s:13THEOplayerSDK12VideoQualityP6heightSivp":{"name":"height","abstract":"

    The video height of the video quality, in pixels.

    ","parent_name":"VideoQuality"},"Protocols/Quality.html#/s:13THEOplayerSDK7QualityP9bandwidthSivp":{"name":"bandwidth","abstract":"

    The required bandwidth for the quality, in bits per second.

    ","parent_name":"Quality"},"Protocols/Quality.html#/s:13THEOplayerSDK7QualityP16averageBandwidthSiSgvp":{"name":"averageBandwidth","abstract":"

    The average bandwidth of the quality, in bits per second.

    ","parent_name":"Quality"},"Protocols/GoogleDAI.html#/s:13THEOplayerSDK9GoogleDAIP8snapbackSbvp":{"name":"snapback","abstract":"

    Whether snapback is enabled.

    ","parent_name":"GoogleDAI"},"Protocols/GoogleDAI.html#/s:13THEOplayerSDK9GoogleDAIP11contentTime4fromS2d_tF":{"name":"contentTime(from:)","abstract":"

    Converts stream time (including ads) to content time (excluding ads).","parent_name":"GoogleDAI"},"Protocols/GoogleDAI.html#/s:13THEOplayerSDK9GoogleDAIP10streamTime4fromS2d_tF":{"name":"streamTime(from:)","abstract":"

    Converts content time (excluding ads) to stream time (including ads)","parent_name":"GoogleDAI"},"Protocols/UniversalAdId.html#/s:13THEOplayerSDK13UniversalAdIdP02adE5ValueSSvp":{"name":"adIdValue","abstract":"

    The Universal Ad identifier of the selected creative for the ad.

    ","parent_name":"UniversalAdId"},"Protocols/UniversalAdId.html#/s:13THEOplayerSDK13UniversalAdIdP02adE8RegistrySSvp":{"name":"adIdRegistry","abstract":"

    The registry associated with cataloging the UniversalAdId of the selected creative for the ad.

    ","parent_name":"UniversalAdId"},"Protocols/UniversalAdId.html":{"name":"UniversalAdId","abstract":"

    Represents the list of universal ad ID information of the selected creative for the ad.

    "},"Protocols/GoogleDAI.html":{"name":"GoogleDAI","abstract":"

    Represents information regarding content with dynamically inserted advertisements.

    "},"Protocols/Quality.html":{"name":"Quality","abstract":"

    Represents a quality of a media track.

    "},"Protocols/VideoQuality.html":{"name":"VideoQuality","abstract":"

    Represents a quality of a video track.

    "},"Protocols/QualityList.html":{"name":"QualityList","abstract":"

    List of qualities.

    "},"Protocols/MediaPlaylistInterceptor.html":{"name":"MediaPlaylistInterceptor","abstract":"

    MediaPlaylistInterceptor API (Experimental)

    "},"Protocols/NetworkAPI.html":{"name":"NetworkAPI","abstract":"

    The Network API.

    "},"Protocols/ManifestInterceptor.html":{"name":"ManifestInterceptor","abstract":"

    Manifest interceptor introduces the possibility to intercept/observe the manifest requests made by the player. (master and rendition (child) manifest)

    "},"Protocols/DeveloperSettings.html":{"name":"DeveloperSettings","abstract":"

    Developer Settings API

    "},"Extensions/Notification/Name.html#/s:So18NSNotificationNamea13THEOplayerSDKE09PictureInE5MovedABvpZ":{"name":"PictureInPictureMoved","abstract":"

    Posted when the picture-in-picture has moved to a new corner

    ","parent_name":"Name"},"Extensions/Notification/Name.html":{"name":"Name","parent_name":"Notification"},"Extensions/Notification.html":{"name":"Notification"},"Classes/CachingTaskIdleStateChangeEvent.html#/s:13THEOplayerSDK31CachingTaskIdleStateChangeEventC10idleReasonAA011CacheStatuseJ0Ovp":{"name":"idleReason","abstract":"

    The underlying reason that caused the state change.

    ","parent_name":"CachingTaskIdleStateChangeEvent"},"Classes/CachingTaskErrorStateChangeEvent.html#/s:13THEOplayerSDK32CachingTaskErrorStateChangeEventC5errorAA9THEOError_pSgvp":{"name":"error","abstract":"

    The underlying error that caused the state change.

    ","parent_name":"CachingTaskErrorStateChangeEvent"},"Classes/CachingParametersTrackSelectionBuilder.html#/s:13THEOplayerSDK38CachingParametersTrackSelectionBuilderC05audioeF0SaySSGvp":{"name":"audioTrackSelection","abstract":"

    The list of langugage tags that indicates the preferred audio tracks to be cached. Defaults to [].

    ","parent_name":"CachingParametersTrackSelectionBuilder"},"Classes/CachingParametersTrackSelectionBuilder.html#/s:13THEOplayerSDK38CachingParametersTrackSelectionBuilderC04texteF0SaySSGvp":{"name":"textTrackSelection","abstract":"

    The list of langugage tags that indicates the preferred audio tracks to be cached. Defaults to [].

    ","parent_name":"CachingParametersTrackSelectionBuilder"},"Classes/CachingParametersTrackSelectionBuilder.html#/s:13THEOplayerSDK38CachingParametersTrackSelectionBuilderC5buildAA0cdeF0CyF":{"name":"build()","abstract":"

    Creates a CachingParametersTrackSelection

    ","parent_name":"CachingParametersTrackSelectionBuilder"},"Classes/SourceAbrConfiguration.html#/s:13THEOplayerSDK22SourceAbrConfigurationC10maxBitrateSdSgvp":{"name":"maxBitrate","abstract":"

    The maximum bitrate in bps for the specified source.

    ","parent_name":"SourceAbrConfiguration"},"Classes/MultiplatformDRMConfiguration.html#/s:13THEOplayerSDK29MultiplatformDRMConfigurationC15integrationKindAA14DRMIntegrationOvp":{"name":"integrationKind","abstract":"

    The identifier for the kind of integration

    ","parent_name":"MultiplatformDRMConfiguration"},"Classes/MultiplatformDRMConfiguration.html#/s:13THEOplayerSDK29MultiplatformDRMConfigurationC21integrationParametersSDySSypGSgvp":{"name":"integrationParameters","abstract":"

    Parameters that can be used when integrationKind is set to DRMIntegration/custom

    ","parent_name":"MultiplatformDRMConfiguration"},"Classes/MultiplatformDRMConfiguration.html#/s:13THEOplayerSDK29MultiplatformDRMConfigurationC19customIntegrationIdSSSgvp":{"name":"customIntegrationId","abstract":"

    The identifier for the kind of integration when integrationKind is set to DRMIntegration/custom

    ","parent_name":"MultiplatformDRMConfiguration"},"Classes/MultiplatformDRMConfiguration.html#/s:13THEOplayerSDK29MultiplatformDRMConfigurationC23keySystemConfigurationsAA03KeyF23ConfigurationCollectionCvp":{"name":"keySystemConfigurations","abstract":"

    A set of configurations for different key systems.

    ","parent_name":"MultiplatformDRMConfiguration"},"Classes/MultiplatformDRMConfiguration.html#/s:13THEOplayerSDK29MultiplatformDRMConfigurationC15queryParametersSDyS2SGSgvp":{"name":"queryParameters","abstract":"

    Record of query parameters for the licence acquisition request. Each entry contains a query parameter name with associated value.

    ","parent_name":"MultiplatformDRMConfiguration"},"Classes/MultiplatformDRMConfiguration.html#/s:13THEOplayerSDK29MultiplatformDRMConfigurationC23keySystemConfigurationsAcA03KeyF23ConfigurationCollectionC_tcfc":{"name":"init(keySystemConfigurations:)","abstract":"

    Create a DRM configuration without an integration.

    ","parent_name":"MultiplatformDRMConfiguration"},"Classes/MultiplatformDRMConfiguration.html#/s:13THEOplayerSDK29MultiplatformDRMConfigurationC19customIntegrationId21integrationParameters23keySystemConfigurations05queryI0ACSS_SDySSypGAA03KeyK23ConfigurationCollectionCSDyS2SGSgtcfc":{"name":"init(customIntegrationId:integrationParameters:keySystemConfigurations:queryParameters:)","abstract":"

    Create a config for a custom DRM integration.

    ","parent_name":"MultiplatformDRMConfiguration"},"Classes/MultiplatformDRMConfiguration.html#/s:Se4fromxs7Decoder_p_tKcfc":{"name":"init(from:)","parent_name":"MultiplatformDRMConfiguration"},"Classes/MultiplatformDRMConfiguration.html#/s:SE6encode2toys7Encoder_p_tKF":{"name":"encode(to:)","parent_name":"MultiplatformDRMConfiguration"},"Classes/MultiplatformDRMConfiguration.html#/s:13THEOplayerSDK16DRMConfigurationP11integrationAA14DRMIntegrationOSgvp":{"name":"integration","parent_name":"MultiplatformDRMConfiguration"},"Classes/MultiplatformDRMConfiguration.html#/s:13THEOplayerSDK16DRMConfigurationP7headersSaySDyS2SGGSgvp":{"name":"headers","parent_name":"MultiplatformDRMConfiguration"},"Classes/KeySystemConfigurationCollection.html#/s:13THEOplayerSDK32KeySystemConfigurationCollectionC8fairplayAA0cdE0CSgvp":{"name":"fairplay","abstract":"

    The key system configuration for FairPlay.

    ","parent_name":"KeySystemConfigurationCollection"},"Classes/KeySystemConfigurationCollection.html#/s:13THEOplayerSDK32KeySystemConfigurationCollectionC8widevineAA0cdE0CSgvp":{"name":"widevine","abstract":"

    The key system configuration for widevine.

    ","parent_name":"KeySystemConfigurationCollection"},"Classes/KeySystemConfigurationCollection.html#/s:13THEOplayerSDK32KeySystemConfigurationCollectionC8fairplay8widevine13commonHeadersAcA0cdE0CSg_AISDyS2SGtcfc":{"name":"init(fairplay:widevine:commonHeaders:)","abstract":"

    Create a set of configurations for different key systems.

    ","parent_name":"KeySystemConfigurationCollection"},"Classes/KeySystemConfigurationCollection.html#/s:Se4fromxs7Decoder_p_tKcfc":{"name":"init(from:)","parent_name":"KeySystemConfigurationCollection"},"Classes/KeySystemConfigurationCollection.html#/s:SE6encode2toys7Encoder_p_tKF":{"name":"encode(to:)","parent_name":"KeySystemConfigurationCollection"},"Classes/THEOplayerConfigurationBuilder.html#/s:13THEOplayerSDK0A20ConfigurationBuilderC12hlsDateRangeSbSgvp":{"name":"hlsDateRange","abstract":"

    Whether the logic to expose date ranges parsed from HLS manifests is enabled.

    ","parent_name":"THEOplayerConfigurationBuilder"},"Classes/THEOplayerConfigurationBuilder.html#/s:13THEOplayerSDK0A20ConfigurationBuilderC15setHlsDateRangeyySbF":{"name":"setHlsDateRange(_:)","abstract":"

    Setter for the hlsDateRange property.

    ","parent_name":"THEOplayerConfigurationBuilder"},"Classes/THEOplayerConfigurationBuilder.html#/s:13THEOplayerSDK0A20ConfigurationBuilderC7licenseSSSgvp":{"name":"license","abstract":"

    The license for the player.

    ","parent_name":"THEOplayerConfigurationBuilder"},"Classes/THEOplayerConfigurationBuilder.html#/s:13THEOplayerSDK0A20ConfigurationBuilderC10licenseUrlSSSgvp":{"name":"licenseUrl","abstract":"

    The url to fetch the license for the player.

    ","parent_name":"THEOplayerConfigurationBuilder"},"Classes/THEOplayerConfigurationBuilder.html#/s:13THEOplayerSDK0A20ConfigurationBuilderC3pipAA16PiPConfigurationCSgvp":{"name":"pip","abstract":"

    The picture in picture configuration of the player.

    ","parent_name":"THEOplayerConfigurationBuilder"},"Classes/THEOplayerConfigurationBuilder.html#/s:13THEOplayerSDK0A20ConfigurationBuilderC7networkAA07NetworkC0CSgvp":{"name":"network","abstract":"

    The network configuration of the player.

    ","parent_name":"THEOplayerConfigurationBuilder"},"Classes/THEOplayerConfigurationBuilder.html#/s:13THEOplayerSDK0A20ConfigurationBuilderC16autoIntegrationsSbvp":{"name":"autoIntegrations","abstract":"

    Flag that enables the player to automatically look for THEOplayer integration libraries (e.g. THEOlive) and register those on the player instance.","parent_name":"THEOplayerConfigurationBuilder"},"Classes/THEOplayerConfigurationBuilder.html#/s:13THEOplayerSDK0A20ConfigurationBuilderC5buildAA0aC0CyF":{"name":"build()","abstract":"

    Builds and returns an object of type THEOplayerConfiguration.

    ","parent_name":"THEOplayerConfigurationBuilder"},"Classes/NetworkConfigurationBuilder.html#/s:13THEOplayerSDK27NetworkConfigurationBuilderC9userAgentSSSgvp":{"name":"userAgent","abstract":"

    The user agent header that the http requests should send.

    ","parent_name":"NetworkConfigurationBuilder"},"Classes/NetworkConfiguration.html#/s:13THEOplayerSDK20NetworkConfigurationC9userAgentSSSgvp":{"name":"userAgent","abstract":"

    The user agent header that the http requests should send.

    ","parent_name":"NetworkConfiguration"},"Classes/TrackUpdateEvent.html#/s:13THEOplayerSDK16TrackUpdateEventC4typeSSvp":{"name":"type","abstract":"

    The textual representation of the type of event, “update”.

    ","parent_name":"TrackUpdateEvent"},"Classes/TrackUpdateEvent.html#/s:13THEOplayerSDK16TrackUpdateEventC4date10Foundation4DateVvp":{"name":"date","abstract":"

    The date at which the event occurred.

    ","parent_name":"TrackUpdateEvent"},"Classes/TrackUpdateEvent.html#/s:13THEOplayerSDK16TrackUpdateEventC5trackAA0C0_pvp":{"name":"track","abstract":"

    The track that has been updated.

    ","parent_name":"TrackUpdateEvent"},"Classes/ActiveQualityChangedEvent.html#/s:13THEOplayerSDK25ActiveQualityChangedEventC4typeSSvp":{"name":"type","abstract":"

    A textual representation of the type of the event.

    ","parent_name":"ActiveQualityChangedEvent"},"Classes/ActiveQualityChangedEvent.html#/s:13THEOplayerSDK25ActiveQualityChangedEventC4date10Foundation4DateVvp":{"name":"date","abstract":"

    The date at which the event occurred.

    ","parent_name":"ActiveQualityChangedEvent"},"Classes/ActiveQualityChangedEvent.html#/s:13THEOplayerSDK25ActiveQualityChangedEventC7qualityAA0D0_pvp":{"name":"quality","abstract":"

    The quality.

    ","parent_name":"ActiveQualityChangedEvent"},"Classes/CurrentSourceChangeEvent.html#/s:13THEOplayerSDK24CurrentSourceChangeEventC07currentD0AA05TypedD0CSgvp":{"name":"currentSource","abstract":"

    The player’s new current source.

    ","parent_name":"CurrentSourceChangeEvent"},"Classes/PlayerEvent.html#/s:13THEOplayerSDK11PlayerEventC4typeSSvp":{"name":"type","abstract":"

    A textual representation of the type of the event

    ","parent_name":"PlayerEvent"},"Classes/PlayerEvent.html#/s:13THEOplayerSDK11PlayerEventC4date10Foundation4DateVvp":{"name":"date","abstract":"

    The date at which the event occurred.

    ","parent_name":"PlayerEvent"},"Classes/AdSkipEvent.html#/s:13THEOplayerSDK11AdSkipEventC16playedPercentageSdSgvp":{"name":"playedPercentage","abstract":"

    The percentage of the ad that was played when skipped.

    ","parent_name":"AdSkipEvent"},"Classes/PiPConfigurationBuilder.html#/s:13THEOplayerSDK23PiPConfigurationBuilderC36retainPresentationModeOnSourceChangeSbvp":{"name":"retainPresentationModeOnSourceChange","abstract":"

    Whether the presentation mode should be retained on source changes. Defaults to false.

    ","parent_name":"PiPConfigurationBuilder"},"Classes/PiPConfigurationBuilder.html#/s:13THEOplayerSDK23PiPConfigurationBuilderC22requiresLinearPlaybackSbvp":{"name":"requiresLinearPlayback","abstract":"

    Disables seekability while in native Picture in Picture mode. This can be useful when playing advertisements for instance. Defaults to false.

    ","parent_name":"PiPConfigurationBuilder"},"Classes/PiPConfigurationBuilder.html#/s:13THEOplayerSDK23PiPConfigurationBuilderC015nativePictureInG0Sbvp":{"name":"nativePictureInPicture","abstract":"

    Enable the Native Picture in Picture. Defaults to true.

    ","parent_name":"PiPConfigurationBuilder"},"Classes/PiPConfigurationBuilder.html#/s:13THEOplayerSDK23PiPConfigurationBuilderC017canStartPictureInH23AutomaticallyFromInlineSbvp":{"name":"canStartPictureInPictureAutomaticallyFromInline","abstract":"

    Native Picture in Picture starts automatically when the player is embedded inline and the app transitions to the background. Defaults to false.

    ","parent_name":"PiPConfigurationBuilder"},"Classes/PiPConfigurationBuilder.html#/s:13THEOplayerSDK23PiPConfigurationBuilderC5buildAA0cD0CyF":{"name":"build()","abstract":"

    Builds and returns an object of type PiPConfiguration.

    ","parent_name":"PiPConfigurationBuilder"},"Classes/PiPConfiguration.html#/s:13THEOplayerSDK16PiPConfigurationC36retainPresentationModeOnSourceChangeSbvp":{"name":"retainPresentationModeOnSourceChange","abstract":"

    Whether the presentation mode should be retained on source changes. Defaults to false.

    ","parent_name":"PiPConfiguration"},"Classes/PiPConfiguration.html#/s:13THEOplayerSDK16PiPConfigurationC22requiresLinearPlaybackSbvp":{"name":"requiresLinearPlayback","abstract":"

    Disables seekability while in native Picture in Picture mode. This can be useful when playing advertisements for instance. Defaults to false.

    ","parent_name":"PiPConfiguration"},"Classes/PiPConfiguration.html#/s:13THEOplayerSDK16PiPConfigurationC015nativePictureInF0Sbvp":{"name":"nativePictureInPicture","abstract":"

    Enable the Native Picture in Picture. Defaults to false.

    ","parent_name":"PiPConfiguration"},"Classes/PiPConfiguration.html#/s:13THEOplayerSDK16PiPConfigurationC017canStartPictureInG23AutomaticallyFromInlineSbvp":{"name":"canStartPictureInPictureAutomaticallyFromInline","abstract":"

    Native Picture in Picture starts automatically when the player is embedded inline and the app transitions to the background. Defaults to false.

    ","parent_name":"PiPConfiguration"},"Other%20Classes.html#/c:@M@THEOplayerSDK@objc(cs)AdInit":{"name":"AdInit","abstract":"

    An initializer for a custom Ad.

    "},"Other%20Classes.html#/c:@M@THEOplayerSDK@objc(cs)AdBreakInit":{"name":"AdBreakInit","abstract":"

    An initializer for a custom AdBreak.

    "},"Classes/PiPConfiguration.html":{"name":"PiPConfiguration","abstract":"

    Describes the configuration of the picture-in-picture feature.

    "},"Classes/PiPConfigurationBuilder.html":{"name":"PiPConfigurationBuilder","abstract":"

    Builder class for the PiPConfiguration object.

    "},"Classes/AdSkipEvent.html":{"name":"AdSkipEvent","abstract":"

    Thrown to indicate that the ad was skipped.

    "},"Other%20Classes.html#/c:@M@THEOplayerSDK@objc(cs)AdTappedEvent":{"name":"AdTappedEvent","abstract":"

    Thrown to indicate that an ad was tapped.

    "},"Other%20Classes.html#/c:@M@THEOplayerSDK@objc(cs)AdClickedEvent":{"name":"AdClickedEvent","abstract":"

    Thrown to indicate that an ad was clicked. Most of the cases when user clicks on the “Learn More” button.

    "},"Other%20Classes.html#/c:@M@THEOplayerSDK@objc(cs)AddAdEvent":{"name":"AddAdEvent","abstract":"

    Thrown to indicate that an ad was added.

    "},"Other%20Classes.html#/c:@M@THEOplayerSDK@objc(cs)UpdateAdEvent":{"name":"UpdateAdEvent","abstract":"

    Thrown to indicate that an ad was updated.

    "},"Other%20Classes.html#/c:@M@THEOplayerSDK@objc(cs)AddAdBreakEvent":{"name":"AddAdBreakEvent","abstract":"

    Thrown to indicate that an adbreak has been added.

    "},"Other%20Classes.html#/c:@M@THEOplayerSDK@objc(cs)UpdateAdBreakEvent":{"name":"UpdateAdBreakEvent","abstract":"

    Thrown to indicate that an adbreak has been updated.

    "},"Other%20Classes.html#/c:@M@THEOplayerSDK@objc(cs)RemoveAdBreakEvent":{"name":"RemoveAdBreakEvent","abstract":"

    Thrown to indicate that an adbreak has been removed.

    "},"Other%20Classes.html#/c:@M@THEOplayerSDK@objc(cs)AdBreakChangeEvent":{"name":"AdBreakChangeEvent","abstract":"

    Thrown to indicate that an adbreak has changed.

    "},"Classes/PlayerEvent.html":{"name":"PlayerEvent","abstract":"

    Represents the base for all other player events.

    "},"Classes/CurrentSourceChangeEvent.html":{"name":"CurrentSourceChangeEvent","abstract":"

    Fired when the current source, which is chosen from SourceDescription.sources, changes.

    "},"Other%20Classes.html#/c:@M@THEOplayerSDK@objc(cs)EncryptedEvent":{"name":"EncryptedEvent","abstract":"

    Fired when the player encounters key system initialization data in the media data.

    "},"Other%20Classes.html#/c:@M@THEOplayerSDK@objc(cs)ContentProtectionSuccessEvent":{"name":"ContentProtectionSuccessEvent","abstract":"

    Fired when the key is usable for decryption.

    "},"Classes/ActiveQualityChangedEvent.html":{"name":"ActiveQualityChangedEvent","abstract":"

    Fired when the media track’s active quality bandwidth changes.

    "},"Classes/TrackUpdateEvent.html":{"name":"TrackUpdateEvent","abstract":"

    Fired when one or more properties of a track have been updated.

    "},"Classes/NetworkConfiguration.html":{"name":"NetworkConfiguration","abstract":"

    Represents a network configuration.

    "},"Classes/NetworkConfigurationBuilder.html":{"name":"NetworkConfigurationBuilder","abstract":"

    A builder class to help initialize a NetworkConfiguration instance.

    "},"Classes/THEOplayerConfigurationBuilder.html":{"name":"THEOplayerConfigurationBuilder","abstract":"

    Builder class for the THEOplayerConfiguration object.

    "},"Classes/KeySystemConfigurationCollection.html":{"name":"KeySystemConfigurationCollection","abstract":"

    A set of configurations for different key systems.

    "},"Classes/MultiplatformDRMConfiguration.html":{"name":"MultiplatformDRMConfiguration","abstract":"

    A set of DRM parameters.

    "},"Classes/SourceAbrConfiguration.html":{"name":"SourceAbrConfiguration","abstract":"

    Describes the ABR configuration for a specific source.

    "},"Classes/CachingParametersTrackSelectionBuilder.html":{"name":"CachingParametersTrackSelectionBuilder","abstract":"

    A builder to create CachingParametersTrackSelections.

    "},"Classes/CachingTaskErrorStateChangeEvent.html":{"name":"CachingTaskErrorStateChangeEvent","abstract":"

    Fired when the CachingTask.status changes to .error.

    "},"Classes/CachingTaskIdleStateChangeEvent.html":{"name":"CachingTaskIdleStateChangeEvent","abstract":"

    Fired when the CachingTask.status changes to .idle.

    "},"Protocols/EventDispatcherProtocol.html#/s:13THEOplayerSDK23EventDispatcherProtocolP03addC8Listener4type8listenerAA0cG0_pAA0C4TypeCyqd__G_yqd__ctAA0cE0Rd__lF":{"name":"addEventListener(type:listener:)","abstract":"

    Adds the given event listener of the given type.

    ","parent_name":"EventDispatcherProtocol"},"Protocols/EventDispatcherProtocol.html#/s:13THEOplayerSDK23EventDispatcherProtocolP06removeC8Listener4type8listeneryAA0C4TypeCyqd__G_AA0cG0_ptAA0cE0Rd__lF":{"name":"removeEventListener(type:listener:)","abstract":"

    Removes the given event listener of the given type.

    ","parent_name":"EventDispatcherProtocol"},"Classes/EventType.html#/s:13THEOplayerSDK9EventTypeC4nameSSvp":{"name":"name","abstract":"

    The name of the EventType.

    ","parent_name":"EventType"},"Classes/EventType.html#/s:13THEOplayerSDK9EventTypeC4nameACyxGSS_tcfc":{"name":"init(name:)","abstract":"

    Creates a certain EventType.

    ","parent_name":"EventType"},"Protocols/EventProtocol.html#/s:13THEOplayerSDK13EventProtocolP4typeSSvp":{"name":"type","abstract":"

    The textual representation of the type of event.

    ","parent_name":"EventProtocol"},"Protocols/EventProtocol.html#/s:13THEOplayerSDK13EventProtocolP4date10Foundation4DateVvp":{"name":"date","abstract":"

    The Date at which the event occured.

    ","parent_name":"EventProtocol"},"Classes/CurrentTimeEvent.html#/s:13THEOplayerSDK16CurrentTimeEventC07currentD0Sdvp":{"name":"currentTime","abstract":"

    The current time of the player.

    ","parent_name":"CurrentTimeEvent"},"Classes/CacheEvent.html#/s:13THEOplayerSDK10CacheEventC4typeSSvp":{"name":"type","abstract":"

    The type of the event.

    ","parent_name":"CacheEvent"},"Classes/CacheEvent.html#/s:13THEOplayerSDK10CacheEventC4date10Foundation4DateVvp":{"name":"date","abstract":"

    The date at which the event occured.

    ","parent_name":"CacheEvent"},"Classes/CacheEvent.html":{"name":"CacheEvent","abstract":"

    The Cache event object.

    "},"Classes/CurrentTimeEvent.html":{"name":"CurrentTimeEvent","abstract":"

    Represents the player events that return the currentTime property.

    "},"Protocols/EventProtocol.html":{"name":"EventProtocol","abstract":"

    The Event API which can be used to represent an event.

    "},"Classes/EventType.html":{"name":"EventType","abstract":"

    Represents an EventType that conforms to a certain type of EventProtocol T.

    "},"Protocols/EventDispatcherProtocol.html":{"name":"EventDispatcherProtocol","abstract":"

    Classes that comform to this protocol can add and remove event listeners.

    "},"Base%20classes%20%26%20interfaces.html#/s:13THEOplayerSDK18TrackEventProtocolP":{"name":"TrackEventProtocol","abstract":"

    The base Track Event protocol.

    "},"Classes/THEOMargins.html#/s:13THEOplayerSDK11THEOMarginsC3topSivp":{"name":"top","abstract":"

    The top margin.

    ","parent_name":"THEOMargins"},"Classes/THEOMargins.html#/s:13THEOplayerSDK11THEOMarginsC5rightSivp":{"name":"right","abstract":"

    The right margin.

    ","parent_name":"THEOMargins"},"Classes/THEOMargins.html#/s:13THEOplayerSDK11THEOMarginsC6bottomSivp":{"name":"bottom","abstract":"

    The bottom margin.

    ","parent_name":"THEOMargins"},"Classes/THEOMargins.html#/s:13THEOplayerSDK11THEOMarginsC4leftSivp":{"name":"left","abstract":"

    The left margin.

    ","parent_name":"THEOMargins"},"Classes/THEOMargins.html#/s:13THEOplayerSDK11THEOMarginsC3top5right6bottom4leftACSi_S3itcfc":{"name":"init(top:right:bottom:left:)","abstract":"

    Constructs a new THEOMargins instance.

    ","parent_name":"THEOMargins"},"Classes/THEOMargins.html#/s:13THEOplayerSDK11THEOMarginsC10horizontal8verticalACSi_Sitcfc":{"name":"init(horizontal:vertical:)","abstract":"

    Constructs a new THEOMargins instance.

    ","parent_name":"THEOMargins"},"Classes/THEOMargins.html#/s:13THEOplayerSDK11THEOMarginsC3allACSi_tcfc":{"name":"init(all:)","abstract":"

    Constructs a new THEOMargins instance.

    ","parent_name":"THEOMargins"},"Classes/TimeRange.html#/s:13THEOplayerSDK9TimeRangeC5startSdvp":{"name":"start","abstract":"

    The start time of the range.

    ","parent_name":"TimeRange"},"Classes/TimeRange.html#/s:13THEOplayerSDK9TimeRangeC3endSdvp":{"name":"end","abstract":"

    The end time of the range.

    ","parent_name":"TimeRange"},"Classes/TimeRange.html#/s:13THEOplayerSDK9TimeRangeC5start3endACSd_Sdtcfc":{"name":"init(start:end:)","abstract":"

    Constructs a TimeRange object.

    ","parent_name":"TimeRange"},"Classes/TimeRange.html":{"name":"TimeRange","abstract":"

    Helps get information regarding a certain period in the playback.

    "},"Classes/THEOMargins.html":{"name":"THEOMargins","abstract":"

    The THEOMargins class is used to define quadruple margins.

    "},"Classes/Response.html#/s:13THEOplayerSDK8ResponseC7requestAA7RequestCvp":{"name":"request","abstract":"

    The request for which the response is being returned.

    ","parent_name":"Response"},"Classes/Response.html#/s:13THEOplayerSDK8ResponseC3urlSSvp":{"name":"url","abstract":"

    The URL from which the response was returned. This might have been redirected transparently.

    ","parent_name":"Response"},"Classes/Response.html#/s:13THEOplayerSDK8ResponseC6statusSivp":{"name":"status","abstract":"

    The status code as returned in the HTTP response.

    ","parent_name":"Response"},"Classes/Response.html#/s:13THEOplayerSDK8ResponseC10statusTextSSvp":{"name":"statusText","abstract":"

    The status text as returned in the HTTP response.

    ","parent_name":"Response"},"Classes/Response.html#/s:13THEOplayerSDK8ResponseC7headersSDyS2SGvp":{"name":"headers","abstract":"

    The HTTP headers as returned by the server.

    ","parent_name":"Response"},"Classes/Response.html#/s:13THEOplayerSDK8ResponseC4body10Foundation4DataVvp":{"name":"body","abstract":"

    The body of the response.

    ","parent_name":"Response"},"Classes/Request.html#/s:13THEOplayerSDK7RequestC3urlSSvp":{"name":"url","abstract":"

    The URL for the certificate server. By default, this will equal the certificate URL configured in the KeySystemConfiguration`.

    ","parent_name":"Request"},"Classes/Request.html#/s:13THEOplayerSDK7RequestC6methodSSvp":{"name":"method","abstract":"

    The method of the HTTP request, for example: GET, POST or PUT.

    ","parent_name":"Request"},"Classes/Request.html#/s:13THEOplayerSDK7RequestC7headersSDyS2SGvp":{"name":"headers","abstract":"

    The HTTP request headers to be sent to the server.

    ","parent_name":"Request"},"Classes/Request.html#/s:13THEOplayerSDK7RequestC4body10Foundation4DataVSgvp":{"name":"body","abstract":"

    The body of the certificate request.

    ","parent_name":"Request"},"Classes/Request.html#/s:13THEOplayerSDK7RequestC3url6method7headers4bodyACSS_SSSDyS2SG10Foundation4DataVSgtcfc":{"name":"init(url:method:headers:body:)","abstract":"

    Creates a new HTTP request for the given URL.

    ","parent_name":"Request"},"Enums/KeySystemId.html#/s:13THEOplayerSDK11KeySystemIdO9_rawValueSSvp":{"name":"_rawValue","abstract":"

    The raw value of type String.

    ","parent_name":"KeySystemId"},"Classes/LicenseRequest.html#/s:13THEOplayerSDK14LicenseRequestC14fairplaySkdUrlSSSgvp":{"name":"fairplaySkdUrl","abstract":"

    The SKD URL

    ","parent_name":"LicenseRequest"},"Classes/LicenseRequest.html#/s:13THEOplayerSDK14LicenseRequestC3url6method7headers4body14fairplaySkdUrl14useCredentialsACSS_SSSDyS2SG10Foundation4DataVSgSSSgSbtcfc":{"name":"init(url:method:headers:body:fairplaySkdUrl:useCredentials:)","abstract":"

    Creates a new LicenseRequest for the given URL.

    ","parent_name":"LicenseRequest"},"Classes/LicenseResponse.html#/s:13THEOplayerSDK15LicenseResponseC14licenseRequest3url6status0H4Text7headers4bodyAcA0cF0C_SSSiSSSDyS2SG10Foundation4DataVtcfc":{"name":"init(licenseRequest:url:status:statusText:headers:body:)","abstract":"

    Creates a LicenseResponse.

    ","parent_name":"LicenseResponse"},"Classes/CertificateResponse.html#/s:13THEOplayerSDK19CertificateResponseC18certificateRequest3url6status0H4Text7headers4bodyAcA0cF0C_SSSiSSSDyS2SG10Foundation4DataVtcfc":{"name":"init(certificateRequest:url:status:statusText:headers:body:)","abstract":"

    Creates a CertificateResponse.

    ","parent_name":"CertificateResponse"},"Protocols/ContentProtectionIntegration.html#/c:@M@THEOplayerSDK@objc(pl)ContentProtectionIntegration(im)onCertificateRequestWithRequest:callback:":{"name":"onCertificateRequest(request:callback:)","abstract":"

    Handler which will be called when an HTTP request for a new certificate is about to be sent.

    ","parent_name":"ContentProtectionIntegration"},"Protocols/ContentProtectionIntegration.html#/c:@M@THEOplayerSDK@objc(pl)ContentProtectionIntegration(im)onCertificateResponseWithResponse:callback:":{"name":"onCertificateResponse(response:callback:)","abstract":"

    Handler which will be called when an HTTP request for a certificate returns a response.

    ","parent_name":"ContentProtectionIntegration"},"Protocols/ContentProtectionIntegration.html#/c:@M@THEOplayerSDK@objc(pl)ContentProtectionIntegration(im)onLicenseRequestWithRequest:callback:":{"name":"onLicenseRequest(request:callback:)","abstract":"

    Handler which will be called when an HTTP request for a new license is about to be sent.

    ","parent_name":"ContentProtectionIntegration"},"Protocols/ContentProtectionIntegration.html#/c:@M@THEOplayerSDK@objc(pl)ContentProtectionIntegration(im)onLicenseResponseWithResponse:callback:":{"name":"onLicenseResponse(response:callback:)","abstract":"

    Handler which will be called when an HTTP request for a license returns an response.

    ","parent_name":"ContentProtectionIntegration"},"Protocols/ContentProtectionIntegration.html#/c:@M@THEOplayerSDK@objc(pl)ContentProtectionIntegration(im)onExtractFairplayContentIdWithSkdUrl:callback:":{"name":"onExtractFairplayContentId(skdUrl:callback:)","abstract":"

    A function to extract the Fairplay content ID from the key URI, as given by the URI attribute of the #EXT-X-KEY tag in the HLS playlist (m3u8).

    ","parent_name":"ContentProtectionIntegration"},"Protocols/ContentProtectionIntegration.html":{"name":"ContentProtectionIntegration","abstract":"

    This ContentProtectionIntegration defines some methods to alter license and certificate requests and responses.

    "},"External%20Content%20Protection%20integration%20API.html#/s:13THEOplayerSDK35ContentProtectionIntegrationFactoryP":{"name":"ContentProtectionIntegrationFactory","abstract":"

    Factory pattern to createContentProtectionIntegration.

    "},"External%20Content%20Protection%20integration%20API.html#/c:@M@THEOplayerSDK@objc(pl)CertificateRequestCallback":{"name":"CertificateRequestCallback","abstract":"

    A completion handler that should be called with the modified CertificateRequest.

    "},"External%20Content%20Protection%20integration%20API.html#/c:@M@THEOplayerSDK@objc(pl)CertificateResponseCallback":{"name":"CertificateResponseCallback","abstract":"

    A completion handler that should be called with the actual certificate, or an Error in case of failure.

    "},"External%20Content%20Protection%20integration%20API.html#/c:@M@THEOplayerSDK@objc(pl)LicenseRequestCallback":{"name":"LicenseRequestCallback","abstract":"

    A completion handler that should be called with the modified LicenseRequest.

    "},"External%20Content%20Protection%20integration%20API.html#/c:@M@THEOplayerSDK@objc(pl)LicenseResponseCallback":{"name":"LicenseResponseCallback","abstract":"

    A completion handler that should be called with the actual license, or an Error in case of failure.

    "},"Classes/CertificateResponse.html":{"name":"CertificateResponse","abstract":"

    The certificate response.

    "},"Classes/LicenseResponse.html":{"name":"LicenseResponse","abstract":"

    The license response.

    "},"External%20Content%20Protection%20integration%20API.html#/c:@M@THEOplayerSDK@objc(cs)CertificateRequest":{"name":"CertificateRequest","abstract":"

    A certificate request.

    "},"Classes/LicenseRequest.html":{"name":"LicenseRequest","abstract":"

    A license request.

    "},"Enums/KeySystemId.html":{"name":"KeySystemId","abstract":"

    Name of the key system.

    "},"Classes/Request.html":{"name":"Request","abstract":"

    A request, either for a CertificateRequest or a LicenseRequest.

    "},"Classes/Response.html":{"name":"Response","abstract":"

    The response, either of a LicenseResponse or for a CertificateResponse request.

    "},"Protocols/ABRConfiguration.html#/s:13THEOplayerSDK16ABRConfigurationP8strategyAA24ABRStrategyConfigurationCvp":{"name":"strategy","abstract":"

    The strategy to use to drive the adaptive bitrate behavior of the player. This configuration will only work with THEOlive streams and will not have any effect for other types of streams.

    ","parent_name":"ABRConfiguration"},"Protocols/ABRConfiguration.html#/s:13THEOplayerSDK16ABRConfigurationP12targetBufferSdvp":{"name":"targetBuffer","abstract":"

    The amount of seconds of video to buffer in advance.

    ","parent_name":"ABRConfiguration"},"Protocols/ABRConfiguration.html#/s:13THEOplayerSDK16ABRConfigurationP20preferredPeakBitRateSdvp":{"name":"preferredPeakBitRate","abstract":"

    The desired limit, in bits per second, of network bandwidth consumption. Defaults to 0, which indicates there is no limit.

    ","parent_name":"ABRConfiguration"},"Protocols/ABRConfiguration.html#/s:13THEOplayerSDK16ABRConfigurationP26preferredMaximumResolutionSo6CGSizeVvp":{"name":"preferredMaximumResolution","abstract":"

    The desired maximum resolution of a video that is to be downloaded. Defaults to CGSizeZero, which indicates there is no limit on the video resolution.

    ","parent_name":"ABRConfiguration"},"Classes/ABRStrategyConfiguration.html#/s:13THEOplayerSDK24ABRStrategyConfigurationC4typeAA0C4TypeOvp":{"name":"type","abstract":"

    The type of strategy used for ABR.

    ","parent_name":"ABRStrategyConfiguration"},"Classes/ABRStrategyConfiguration.html#/s:13THEOplayerSDK24ABRStrategyConfigurationC8metadataAA11ABRMetadataCSgvp":{"name":"metadata","abstract":"

    The metadata used for ABR.

    ","parent_name":"ABRStrategyConfiguration"},"Classes/ABRStrategyConfiguration.html#/s:13THEOplayerSDK24ABRStrategyConfigurationC4type8metadataAcA0C4TypeO_AA11ABRMetadataCSgtcfc":{"name":"init(type:metadata:)","abstract":"

    Constructs an ABRStrategyConfiguration given an ABRStrategyType enum member and an ABRMetadata struct.

    ","parent_name":"ABRStrategyConfiguration"},"Classes/ABRMetadata.html#/s:13THEOplayerSDK11ABRMetadataC7bitrateSdSgvp":{"name":"bitrate","abstract":"

    Specifying the bitrate allows you to initially cap the bandwidth consumption to a specified bitrate, in bits per second.

    ","parent_name":"ABRMetadata"},"Classes/ABRMetadata.html#/s:13THEOplayerSDK11ABRMetadataC7bitrateACSd_tcfc":{"name":"init(bitrate:)","abstract":"

    Constructs an ABRMetadata struct given a bitrate.

    ","parent_name":"ABRMetadata"},"Enums/ABRStrategyType.html#/s:13THEOplayerSDK15ABRStrategyTypeO11performanceyA2CmF":{"name":"performance","abstract":"

    The player will optimize ABR behavior to focus on the performance of the player.

    ","parent_name":"ABRStrategyType"},"Enums/ABRStrategyType.html#/s:13THEOplayerSDK15ABRStrategyTypeO7qualityyA2CmF":{"name":"quality","abstract":"

    The player will optimize ABR behavior to focus on displaying the best visual quality to the end-user as fast as possible.

    ","parent_name":"ABRStrategyType"},"Enums/ABRStrategyType.html#/s:13THEOplayerSDK15ABRStrategyTypeO9bandwidthyA2CmF":{"name":"bandwidth","abstract":"

    The player will optimize ABR behavior to focus on displaying the most optimal quality based on the ABR metadata passed in with the ABRStrategyConfiguration, by initially capping the bitrate to match the provided bitrate in the ABR metadata.

    ","parent_name":"ABRStrategyType"},"Enums/ABRStrategyType.html#/s:13THEOplayerSDK15ABRStrategyTypeO9_rawValueSSvp":{"name":"_rawValue","abstract":"

    The raw value of type String.

    ","parent_name":"ABRStrategyType"},"Enums/ABRStrategyType.html":{"name":"ABRStrategyType","abstract":"

    The different adaptive bitrate (ABR) strategies. This configuration will only work with THEOlive streams and will not have any effect for other types of streams.

    "},"Classes/ABRMetadata.html":{"name":"ABRMetadata","abstract":"

    The ABRMetadata specifies extra metadata that can be used to drive the ABR behavior of the player.

    "},"Classes/ABRStrategyConfiguration.html":{"name":"ABRStrategyConfiguration","abstract":"

    An object specifying strategy and metadata that the player will use for initial playback.

    "},"Protocols/ABRConfiguration.html":{"name":"ABRConfiguration","abstract":"

    The ABR object enables control of the adaptive bitrate behavior of the player.

    "},"Structs/CachingTaskEventTypes.html#/s:13THEOplayerSDK21CachingTaskEventTypesV12STATE_CHANGEAA0E4TypeCyAA05CacheE0CGvpZ":{"name":"STATE_CHANGE","abstract":"

    Fired when the CachingTask.status changes.

    ","parent_name":"CachingTaskEventTypes"},"Structs/CachingTaskEventTypes.html#/s:13THEOplayerSDK21CachingTaskEventTypesV8PROGRESSAA0E4TypeCyAA05CacheE0CGvpZ":{"name":"PROGRESS","abstract":"

    Fired when the CachingTask downloads additional segments.

    ","parent_name":"CachingTaskEventTypes"},"Structs/CacheEventTypes.html#/s:13THEOplayerSDK15CacheEventTypesV12STATE_CHANGEAA0D4TypeCyAA0cD0CGvpZ":{"name":"STATE_CHANGE","abstract":"

    Fired when the Cache.status changes.

    ","parent_name":"CacheEventTypes"},"Structs/CacheEventTypes.html":{"name":"CacheEventTypes","abstract":"

    The CacheEvent types.

    "},"Structs/CachingTaskEventTypes.html":{"name":"CachingTaskEventTypes","abstract":"

    The CachingTask event types.

    "},"Cache%20Events.html#/c:@M@THEOplayerSDK@objc(cs)CacheStateChangeEvent":{"name":"CacheStateChangeEvent","abstract":"

    Fired when the Cache.status changes.

    "},"Cache%20Events.html#/c:@M@THEOplayerSDK@objc(cs)CachingTaskStateChangeEvent":{"name":"CachingTaskStateChangeEvent","abstract":"

    Fired when the CachingTask.status changes.

    "},"Cache%20Events.html#/c:@M@THEOplayerSDK@objc(cs)CachingTaskProgressEvent":{"name":"CachingTaskProgressEvent","abstract":"

    Fired when the CachingTask downloads additional segments.

    "},"Classes/CachingParametersTrackSelection.html#/s:13THEOplayerSDK31CachingParametersTrackSelectionC05audioeF0SaySSGvp":{"name":"audioTrackSelection","abstract":"

    The list of langugage tags that indicates the preferred audio tracks to be cached. Defaults to [].

    ","parent_name":"CachingParametersTrackSelection"},"Classes/CachingParametersTrackSelection.html#/s:13THEOplayerSDK31CachingParametersTrackSelectionC04texteF0SaySSGvp":{"name":"textTrackSelection","abstract":"

    The list of langugage tags that indicates the preferred audio tracks to be cached. Defaults to [].

    ","parent_name":"CachingParametersTrackSelection"},"Protocols/CachingTaskLicense.html#/s:13THEOplayerSDK18CachingTaskLicenseP5renewyyF":{"name":"renew()","abstract":"

    Renews all the licenses associated with this caching task.

    ","parent_name":"CachingTaskLicense"},"Protocols/CachingTaskLicense.html#/s:13THEOplayerSDK18CachingTaskLicenseP5renewyyAA16DRMConfiguration_pF":{"name":"renew(_:)","abstract":"

    Renews all the licenses associated with this caching task.

    ","parent_name":"CachingTaskLicense"},"Classes/CachingParameters.html#/s:13THEOplayerSDK17CachingParametersC14expirationDate10Foundation0F0Vvp":{"name":"expirationDate","abstract":"

    The expiration date for the cached data.

    ","parent_name":"CachingParameters"},"Classes/CachingParameters.html#/s:13THEOplayerSDK17CachingParametersC9bandwidthSiSgvp":{"name":"bandwidth","abstract":"

    An approximation of the desired bandwidth, defaults to the highest bandwidth possible.

    ","parent_name":"CachingParameters"},"Classes/CachingParameters.html#/s:13THEOplayerSDK17CachingParametersC20allowsCellularAccessSbvp":{"name":"allowsCellularAccess","abstract":"

    An indication of caching data only on WIFI or on cellular data too. Defaults to true.

    ","parent_name":"CachingParameters"},"Classes/CachingParameters.html#/s:13THEOplayerSDK17CachingParametersC23preferredTrackSelectionAA0cdfG0Cvp":{"name":"preferredTrackSelection","abstract":"

    An indication of preferred tracks to be used for offline playback.

    ","parent_name":"CachingParameters"},"Classes/CachingParameters.html#/s:13THEOplayerSDK17CachingParametersC7networkAA20NetworkConfigurationCSgvp":{"name":"network","abstract":"

    The network configuration of the caching task.

    ","parent_name":"CachingParameters"},"Classes/CachingParameters.html#/s:13THEOplayerSDK17CachingParametersC14expirationDate9bandwidthAC10Foundation0F0V_SiSgtcfc":{"name":"init(expirationDate:bandwidth:)","abstract":"

    Constructs a CachingParameters.

    ","parent_name":"CachingParameters"},"Enums/CachingTaskStatus.html#/s:13THEOplayerSDK17CachingTaskStatusO9_rawValueSSvp":{"name":"_rawValue","abstract":"

    The raw value of type String.

    ","parent_name":"CachingTaskStatus"},"Protocols/CachingTask.html#/s:13THEOplayerSDK11CachingTaskP2idSSvp":{"name":"id","abstract":"

    The identifier of the task.

    ","parent_name":"CachingTask"},"Protocols/CachingTask.html#/s:13THEOplayerSDK11CachingTaskP6statusAA0cD6StatusOvp":{"name":"status","abstract":"

    The current CachingTaskStatus.

    ","parent_name":"CachingTask"},"Protocols/CachingTask.html#/s:13THEOplayerSDK11CachingTaskP6sourceAA17SourceDescriptionCvp":{"name":"source","abstract":"

    The SourceDescription processed by this caching task.

    ","parent_name":"CachingTask"},"Protocols/CachingTask.html#/s:13THEOplayerSDK11CachingTaskP10parametersAA0C10ParametersCvp":{"name":"parameters","abstract":"

    The CachingParameters for this caching task.

    ","parent_name":"CachingTask"},"Protocols/CachingTask.html#/s:13THEOplayerSDK11CachingTaskP8durationSdvp":{"name":"duration","abstract":"

    The amount of content that will be available after this task has finished, in seconds.

    ","parent_name":"CachingTask"},"Protocols/CachingTask.html#/s:13THEOplayerSDK11CachingTaskP6cachedSayAA9TimeRangeCGvp":{"name":"cached","abstract":"

    List of TimeRange indicating which data is currently cached.

    ","parent_name":"CachingTask"},"Protocols/CachingTask.html#/s:13THEOplayerSDK11CachingTaskP13secondsCachedSdvp":{"name":"secondsCached","abstract":"

    The amount of content that has already been cached, in seconds.

    ","parent_name":"CachingTask"},"Protocols/CachingTask.html#/s:13THEOplayerSDK11CachingTaskP16percentageCachedSdvp":{"name":"percentageCached","abstract":"

    The percentage of content that has already been cached, between 0 and 1.

    ","parent_name":"CachingTask"},"Protocols/CachingTask.html#/s:13THEOplayerSDK11CachingTaskP11bytesCachedSuvp":{"name":"bytesCached","abstract":"

    The amount of bytes that have already been cached.

    ","parent_name":"CachingTask"},"Protocols/CachingTask.html#/s:13THEOplayerSDK11CachingTaskP5startyyF":{"name":"start()","abstract":"

    Starts downloading the stream and stores it on the device.

    ","parent_name":"CachingTask"},"Protocols/CachingTask.html#/s:13THEOplayerSDK11CachingTaskP6removeyyF":{"name":"remove()","abstract":"

    Removes the task and tries to evict all associated streaming elements.

    ","parent_name":"CachingTask"},"Protocols/CachingTask.html#/s:13THEOplayerSDK11CachingTaskP5pauseyyF":{"name":"pause()","abstract":"

    Pauses downloading the stream.

    ","parent_name":"CachingTask"},"Protocols/CachingTask.html#/s:13THEOplayerSDK11CachingTaskP7licenseAA0cD7License_pvp":{"name":"license","abstract":"

    A controller for license related queries and operations.

    ","parent_name":"CachingTask"},"Protocols/CachingTask.html#/s:13THEOplayerSDK11CachingTaskP16addEventListener4type8listenerAA0fG0_pAA0F4TypeCyqd__G_yqd__ctAA0F8ProtocolRd__lF":{"name":"addEventListener(type:listener:)","abstract":"

    Adds the event listener of the given EventType.

    ","parent_name":"CachingTask"},"Protocols/CachingTask.html#/s:13THEOplayerSDK11CachingTaskP19removeEventListener4type8listeneryAA0F4TypeCyqd__G_AA0fG0_ptAA0F8ProtocolRd__lF":{"name":"removeEventListener(type:listener:)","abstract":"

    Removes the event listener of the given CachingTaskEventType.

    ","parent_name":"CachingTask"},"Enums/CacheStatus.html#/s:13THEOplayerSDK11CacheStatusO9_rawValueSSvp":{"name":"_rawValue","abstract":"

    The raw value of type String.

    ","parent_name":"CacheStatus"},"Protocols/Cache.html#/s:13THEOplayerSDK5CacheP6statusAA0C6StatusOvp":{"name":"status","abstract":"

    Indicates the CacheStatus.

    ","parent_name":"Cache"},"Protocols/Cache.html#/s:13THEOplayerSDK5CacheP5tasksSayAA11CachingTask_pGvp":{"name":"tasks","abstract":"

    The list of all caching tasks.

    ","parent_name":"Cache"},"Protocols/Cache.html#/s:13THEOplayerSDK5CacheP10createTask6source10parametersAA07CachingE0_pSgAA17SourceDescriptionC_AA0H10ParametersCSgtF":{"name":"createTask(source:parameters:)","abstract":"

    Creates a CachingTask which will be used to cache the provided source, abiding to the provided parameters.

    ","parent_name":"Cache"},"Protocols/Cache.html#/s:13THEOplayerSDK5CacheP16addEventListener4type8listenerAA0eF0_pAA0E4TypeCyqd__G_yqd__ctAA0E8ProtocolRd__lF":{"name":"addEventListener(type:listener:)","abstract":"

    Adds the event listener of the given EventType.

    ","parent_name":"Cache"},"Protocols/Cache.html#/s:13THEOplayerSDK5CacheP19removeEventListener4type8listeneryAA0E4TypeCyqd__G_AA0eF0_ptAA0E8ProtocolRd__lF":{"name":"removeEventListener(type:listener:)","abstract":"

    Removes the event listener for the given EventType.

    ","parent_name":"Cache"},"Protocols/Cache.html":{"name":"Cache","abstract":"

    The caching API allows to store a streaming source on the user’s device.

    "},"Enums/CacheStatus.html":{"name":"CacheStatus","abstract":"

    Indicates the status of the Cache.

    "},"Protocols/CachingTask.html":{"name":"CachingTask","abstract":"

    Represents a caching task.

    "},"Enums/CachingTaskStatus.html":{"name":"CachingTaskStatus","abstract":"

    The status of a caching task.

    "},"Classes/CachingParameters.html":{"name":"CachingParameters","abstract":"

    The configuration of a caching task.

    "},"Protocols/CachingTaskLicense.html":{"name":"CachingTaskLicense","abstract":"

    The caching task license controller which can be used to renew the license.

    "},"Classes/CachingParametersTrackSelection.html":{"name":"CachingParametersTrackSelection","abstract":"

    An object that represents a CachingParametersTrackSelection.

    "},"Cache%20API.html#/s:13THEOplayerSDK21CacheStatusIdleReasonO":{"name":"CacheStatusIdleReason","abstract":"

    The reason behind IDLE status change.

    "},"Enums/ErrorCategory.html#/s:13THEOplayerSDK13ErrorCategoryO13CONFIGURATIONyA2CmF":{"name":"CONFIGURATION","abstract":"

    Clusters all errors related to the configuration.

    ","parent_name":"ErrorCategory"},"Enums/ErrorCategory.html#/s:13THEOplayerSDK13ErrorCategoryO7LICENSEyA2CmF":{"name":"LICENSE","abstract":"

    Clusters all errors related to the license.

    ","parent_name":"ErrorCategory"},"Enums/ErrorCategory.html#/s:13THEOplayerSDK13ErrorCategoryO6SOURCEyA2CmF":{"name":"SOURCE","abstract":"

    Clusters all errors related to the source.

    ","parent_name":"ErrorCategory"},"Enums/ErrorCategory.html#/s:13THEOplayerSDK13ErrorCategoryO8MANIFESTyA2CmF":{"name":"MANIFEST","abstract":"

    Clusters all errors related to the manifest.

    ","parent_name":"ErrorCategory"},"Enums/ErrorCategory.html#/s:13THEOplayerSDK13ErrorCategoryO5MEDIAyA2CmF":{"name":"MEDIA","abstract":"

    Clusters all errors related to the media.

    ","parent_name":"ErrorCategory"},"Enums/ErrorCategory.html#/s:13THEOplayerSDK13ErrorCategoryO7NETWORKyA2CmF":{"name":"NETWORK","abstract":"

    Clusters all errors related to the network.

    ","parent_name":"ErrorCategory"},"Enums/ErrorCategory.html#/s:13THEOplayerSDK13ErrorCategoryO18CONTENT_PROTECTIONyA2CmF":{"name":"CONTENT_PROTECTION","abstract":"

    Clusters all errors related to the content protection.

    ","parent_name":"ErrorCategory"},"Enums/ErrorCategory.html#/s:13THEOplayerSDK13ErrorCategoryO8SUBTITLEyA2CmF":{"name":"SUBTITLE","abstract":"

    Clusters all errors related to the subtitles.

    ","parent_name":"ErrorCategory"},"Enums/ErrorCategory.html#/s:13THEOplayerSDK13ErrorCategoryO2VRyA2CmF":{"name":"VR","abstract":"

    Clusters all errors related to VR.

    ","parent_name":"ErrorCategory"},"Enums/ErrorCategory.html#/s:13THEOplayerSDK13ErrorCategoryO3ADSyA2CmF":{"name":"ADS","abstract":"

    Clusters all errors related to ads.

    ","parent_name":"ErrorCategory"},"Enums/ErrorCategory.html#/s:13THEOplayerSDK13ErrorCategoryO10FULLSCREENyA2CmF":{"name":"FULLSCREEN","abstract":"

    Clusters all errors related to fullscreen.

    ","parent_name":"ErrorCategory"},"Enums/ErrorCategory.html#/s:13THEOplayerSDK13ErrorCategoryO5CACHEyA2CmF":{"name":"CACHE","abstract":"

    This category clusters all errors related to caching.

    ","parent_name":"ErrorCategory"},"Enums/ErrorCategory.html#/s:13THEOplayerSDK13ErrorCategoryO8THEOLIVEyA2CmF":{"name":"THEOLIVE","abstract":"

    This category clusters all errors related to THEOlive.

    ","parent_name":"ErrorCategory"},"Enums/ErrorCategory.html#/s:13THEOplayerSDK13ErrorCategoryO9MILLICASTyA2CmF":{"name":"MILLICAST","abstract":"

    This category clusters all errors related to Millicast.

    ","parent_name":"ErrorCategory"},"Enums/THEOErrorCode.html#/s:13THEOplayerSDK13THEOErrorCodeO19CONFIGURATION_ERRORyA2CmF":{"name":"CONFIGURATION_ERROR","abstract":"

    The configuration provided is invalid.

    ","parent_name":"THEOErrorCode"},"Enums/THEOErrorCode.html#/s:13THEOplayerSDK13THEOErrorCodeO13LICENSE_ERRORyA2CmF":{"name":"LICENSE_ERROR","abstract":"

    The license provided is invalid.

    ","parent_name":"THEOErrorCode"},"Enums/THEOErrorCode.html#/s:13THEOplayerSDK13THEOErrorCodeO22LICENSE_INVALID_DOMAINyA2CmF":{"name":"LICENSE_INVALID_DOMAIN","abstract":"

    The provided license does not contain the current domain.

    ","parent_name":"THEOErrorCode"},"Enums/THEOErrorCode.html#/s:13THEOplayerSDK13THEOErrorCodeO22LICENSE_INVALID_SOURCEyA2CmF":{"name":"LICENSE_INVALID_SOURCE","abstract":"

    The current source is not allowed in the license provided.

    ","parent_name":"THEOErrorCode"},"Enums/THEOErrorCode.html#/s:13THEOplayerSDK13THEOErrorCodeO15LICENSE_EXPIREDyA2CmF":{"name":"LICENSE_EXPIRED","abstract":"

    The license has expired.

    ","parent_name":"THEOErrorCode"},"Enums/THEOErrorCode.html#/s:13THEOplayerSDK13THEOErrorCodeO23LICENSE_INVALID_FEATUREyA2CmF":{"name":"LICENSE_INVALID_FEATURE","abstract":"

    The provided license does not contain the necessary feature.

    ","parent_name":"THEOErrorCode"},"Enums/THEOErrorCode.html#/s:13THEOplayerSDK13THEOErrorCodeO14SOURCE_INVALIDyA2CmF":{"name":"SOURCE_INVALID","abstract":"

    The source provided is not valid.

    ","parent_name":"THEOErrorCode"},"Enums/THEOErrorCode.html#/s:13THEOplayerSDK13THEOErrorCodeO20SOURCE_NOT_SUPPORTEDyA2CmF":{"name":"SOURCE_NOT_SUPPORTED","abstract":"

    The provided source is not supported.

    ","parent_name":"THEOErrorCode"},"Enums/THEOErrorCode.html#/s:13THEOplayerSDK13THEOErrorCodeO19MANIFEST_LOAD_ERRORyA2CmF":{"name":"MANIFEST_LOAD_ERROR","abstract":"

    The manifest could not be loaded.

    ","parent_name":"THEOErrorCode"},"Enums/THEOErrorCode.html#/s:13THEOplayerSDK13THEOErrorCodeO19MANIFEST_CORS_ERRORyA2CmF":{"name":"MANIFEST_CORS_ERROR","abstract":"

    An Error related to Cross-origin resource sharing (CORS).

    ","parent_name":"THEOErrorCode"},"Enums/THEOErrorCode.html#/s:13THEOplayerSDK13THEOErrorCodeO20MANIFEST_PARSE_ERRORyA2CmF":{"name":"MANIFEST_PARSE_ERROR","abstract":"

    The manifest could not be parsed.

    ","parent_name":"THEOErrorCode"},"Enums/THEOErrorCode.html#/s:13THEOplayerSDK13THEOErrorCodeO19MEDIA_NOT_SUPPORTEDyA2CmF":{"name":"MEDIA_NOT_SUPPORTED","abstract":"

    The media is not supported.

    ","parent_name":"THEOErrorCode"},"Enums/THEOErrorCode.html#/s:13THEOplayerSDK13THEOErrorCodeO16MEDIA_LOAD_ERRORyA2CmF":{"name":"MEDIA_LOAD_ERROR","abstract":"

    The media could not be loaded.

    ","parent_name":"THEOErrorCode"},"Enums/THEOErrorCode.html#/s:13THEOplayerSDK13THEOErrorCodeO18MEDIA_DECODE_ERRORyA2CmF":{"name":"MEDIA_DECODE_ERROR","abstract":"

    The media could not be decoded.

    ","parent_name":"THEOErrorCode"},"Enums/THEOErrorCode.html#/s:13THEOplayerSDK13THEOErrorCodeO20MEDIA_AVPLAYER_ERRORyA2CmF":{"name":"MEDIA_AVPLAYER_ERROR","abstract":"

    An error related to playback through AVPlayer in the iOS or tvOS SDK.

    ","parent_name":"THEOErrorCode"},"Enums/THEOErrorCode.html#/s:13THEOplayerSDK13THEOErrorCodeO13MEDIA_ABORTEDyA2CmF":{"name":"MEDIA_ABORTED","abstract":"

    The fetching process for the media resource was aborted by the user agent at the user’s request.

    ","parent_name":"THEOErrorCode"},"Enums/THEOErrorCode.html#/s:13THEOplayerSDK13THEOErrorCodeO13NETWORK_ERRORyA2CmF":{"name":"NETWORK_ERROR","abstract":"

    An error related to network has been detected.

    ","parent_name":"THEOErrorCode"},"Enums/THEOErrorCode.html#/s:13THEOplayerSDK13THEOErrorCodeO15NETWORK_TIMEOUTyA2CmF":{"name":"NETWORK_TIMEOUT","abstract":"

    The network has timed out.

    ","parent_name":"THEOErrorCode"},"Enums/THEOErrorCode.html#/s:13THEOplayerSDK13THEOErrorCodeO24CONTENT_PROTECTION_ERRORyA2CmF":{"name":"CONTENT_PROTECTION_ERROR","abstract":"

    An error related to the content protection.

    ","parent_name":"THEOErrorCode"},"Enums/THEOErrorCode.html#/s:13THEOplayerSDK13THEOErrorCodeO32CONTENT_PROTECTION_NOT_SUPPORTEDyA2CmF":{"name":"CONTENT_PROTECTION_NOT_SUPPORTED","abstract":"

    The DRM provided is not supported on this platform.

    ","parent_name":"THEOErrorCode"},"Enums/THEOErrorCode.html#/s:13THEOplayerSDK13THEOErrorCodeO40CONTENT_PROTECTION_CONFIGURATION_MISSINGyA2CmF":{"name":"CONTENT_PROTECTION_CONFIGURATION_MISSING","abstract":"

    The media is DRM protected, but no content protection configuration was provided.

    ","parent_name":"THEOErrorCode"},"Enums/THEOErrorCode.html#/s:13THEOplayerSDK13THEOErrorCodeO40CONTENT_PROTECTION_CONFIGURATION_INVALIDyA2CmF":{"name":"CONTENT_PROTECTION_CONFIGURATION_INVALID","abstract":"

    The content protection configuration is invalid.

    ","parent_name":"THEOErrorCode"},"Enums/THEOErrorCode.html#/s:13THEOplayerSDK13THEOErrorCodeO41CONTENT_PROTECTION_INITIALIZATION_INVALIDyA2CmF":{"name":"CONTENT_PROTECTION_INITIALIZATION_INVALID","abstract":"

    The DRM initialization data could not be parsed.

    ","parent_name":"THEOErrorCode"},"Enums/THEOErrorCode.html#/s:13THEOplayerSDK13THEOErrorCodeO36CONTENT_PROTECTION_CERTIFICATE_ERRORyA2CmF":{"name":"CONTENT_PROTECTION_CERTIFICATE_ERROR","abstract":"

    The content protection’s certificate could not be loaded.

    ","parent_name":"THEOErrorCode"},"Enums/THEOErrorCode.html#/s:13THEOplayerSDK13THEOErrorCodeO38CONTENT_PROTECTION_CERTIFICATE_INVALIDyA2CmF":{"name":"CONTENT_PROTECTION_CERTIFICATE_INVALID","abstract":"

    The content protection’s certificate is invalid.

    ","parent_name":"THEOErrorCode"},"Enums/THEOErrorCode.html#/s:13THEOplayerSDK13THEOErrorCodeO32CONTENT_PROTECTION_LICENSE_ERRORyA2CmF":{"name":"CONTENT_PROTECTION_LICENSE_ERROR","abstract":"

    The content protection’s license could not be loaded.

    ","parent_name":"THEOErrorCode"},"Enums/THEOErrorCode.html#/s:13THEOplayerSDK13THEOErrorCodeO34CONTENT_PROTECTION_LICENSE_INVALIDyA2CmF":{"name":"CONTENT_PROTECTION_LICENSE_INVALID","abstract":"

    The content protection’s license is invalid.

    ","parent_name":"THEOErrorCode"},"Enums/THEOErrorCode.html#/s:13THEOplayerSDK13THEOErrorCodeO30CONTENT_PROTECTION_KEY_EXPIREDyA2CmF":{"name":"CONTENT_PROTECTION_KEY_EXPIRED","abstract":"

    The content protection’s key has expired.

    ","parent_name":"THEOErrorCode"},"Enums/THEOErrorCode.html#/s:13THEOplayerSDK13THEOErrorCodeO30CONTENT_PROTECTION_KEY_MISSINGyA2CmF":{"name":"CONTENT_PROTECTION_KEY_MISSING","abstract":"

    The content protection’s key is missing.

    ","parent_name":"THEOErrorCode"},"Enums/THEOErrorCode.html#/s:13THEOplayerSDK13THEOErrorCodeO36CONTENT_PROTECTION_OUTPUT_RESTRICTEDyA2CmF":{"name":"CONTENT_PROTECTION_OUTPUT_RESTRICTED","abstract":"

    All qualities require HDCP, but the current output does not fulfill HDCP requirements.

    ","parent_name":"THEOErrorCode"},"Enums/THEOErrorCode.html#/s:13THEOplayerSDK13THEOErrorCodeO33CONTENT_PROTECTION_INTERNAL_ERRORyA2CmF":{"name":"CONTENT_PROTECTION_INTERNAL_ERROR","abstract":"

    Something went wrong in the internal logic of the content protection system.

    ","parent_name":"THEOErrorCode"},"Enums/THEOErrorCode.html#/s:13THEOplayerSDK13THEOErrorCodeO19SUBTITLE_LOAD_ERRORyA2CmF":{"name":"SUBTITLE_LOAD_ERROR","abstract":"

    Loading subtitles has failed.

    ","parent_name":"THEOErrorCode"},"Enums/THEOErrorCode.html#/s:13THEOplayerSDK13THEOErrorCodeO19SUBTITLE_CORS_ERRORyA2CmF":{"name":"SUBTITLE_CORS_ERROR","abstract":"

    Loading subtitles has failed due to CORS.

    ","parent_name":"THEOErrorCode"},"Enums/THEOErrorCode.html#/s:13THEOplayerSDK13THEOErrorCodeO20SUBTITLE_PARSE_ERRORyA2CmF":{"name":"SUBTITLE_PARSE_ERROR","abstract":"

    Parsing subtitles has failed.

    ","parent_name":"THEOErrorCode"},"Enums/THEOErrorCode.html#/s:13THEOplayerSDK13THEOErrorCodeO23VR_PLATFORM_UNSUPPORTEDyA2CmF":{"name":"VR_PLATFORM_UNSUPPORTED","abstract":"

    This error occurs when VR is not supported on the current platform.

    ","parent_name":"THEOErrorCode"},"Enums/THEOErrorCode.html#/s:13THEOplayerSDK13THEOErrorCodeO21VR_PRESENTATION_ERRORyA2CmF":{"name":"VR_PRESENTATION_ERROR","abstract":"

    Changing the presentation to VR was not possible.

    ","parent_name":"THEOErrorCode"},"Enums/THEOErrorCode.html#/s:13THEOplayerSDK13THEOErrorCodeO19VR_PERMISSION_ERRORyA2CmF":{"name":"VR_PERMISSION_ERROR","abstract":"

    The right permissions to enable native VR were not given to the player.

    ","parent_name":"THEOErrorCode"},"Enums/THEOErrorCode.html#/s:13THEOplayerSDK13THEOErrorCodeO8AD_ERRORyA2CmF":{"name":"AD_ERROR","abstract":"

    Something went wrong with an ad.

    ","parent_name":"THEOErrorCode"},"Enums/THEOErrorCode.html#/s:13THEOplayerSDK13THEOErrorCodeO19AD_BLOCKER_DETECTEDyA2CmF":{"name":"AD_BLOCKER_DETECTED","abstract":"

    An ad blocker has been detected.

    ","parent_name":"THEOErrorCode"},"Enums/THEOErrorCode.html#/s:13THEOplayerSDK13THEOErrorCodeO16FULLSCREEN_ERRORyA2CmF":{"name":"FULLSCREEN_ERROR","abstract":"

    Changing the presentation to fullscreen was not possible.

    ","parent_name":"THEOErrorCode"},"Enums/THEOErrorCode.html#/s:13THEOplayerSDK13THEOErrorCodeO18CACHE_SOURCE_ERRORyA2CmF":{"name":"CACHE_SOURCE_ERROR","abstract":"

    Something went wrong while caching a source.

    ","parent_name":"THEOErrorCode"},"Enums/THEOErrorCode.html#/s:13THEOplayerSDK13THEOErrorCodeO30CACHE_CONTENT_PROTECTION_ERRORyA2CmF":{"name":"CACHE_CONTENT_PROTECTION_ERROR","abstract":"

    Something went wrong while caching content protection’s license.

    ","parent_name":"THEOErrorCode"},"Enums/THEOErrorCode.html#/s:13THEOplayerSDK13THEOErrorCodeO23THEO_LIVE_UNKNOWN_ERRORyA2CmF":{"name":"THEO_LIVE_UNKNOWN_ERROR","abstract":"

    Something went wrong with THEOlive playback.

    ","parent_name":"THEOErrorCode"},"Enums/THEOErrorCode.html#/s:13THEOplayerSDK13THEOErrorCodeO27THEO_LIVE_CHANNEL_NOT_FOUNDyA2CmF":{"name":"THEO_LIVE_CHANNEL_NOT_FOUND","abstract":"

    The THEOlive channel could not be played because it was not found. This can be because it was never created, it has been deleted or locked.

    ","parent_name":"THEOErrorCode"},"Enums/THEOErrorCode.html#/s:13THEOplayerSDK13THEOErrorCodeO21THEO_LIVE_END_OF_DEMOyA2CmF":{"name":"THEO_LIVE_END_OF_DEMO","abstract":"

    The THEOlive channel is a demo channel and the demo window has expired.

    ","parent_name":"THEOErrorCode"},"Enums/THEOErrorCode.html#/s:13THEOplayerSDK13THEOErrorCodeO25THEO_LIVE_ANALYTICS_ERRORyA2CmF":{"name":"THEO_LIVE_ANALYTICS_ERROR","abstract":"

    A fatal error occurred regarding THEOlive analytics.

    ","parent_name":"THEOErrorCode"},"Enums/THEOErrorCode.html#/s:13THEOplayerSDK13THEOErrorCodeO23MILLICAST_UNKNOWN_ERRORyA2CmF":{"name":"MILLICAST_UNKNOWN_ERROR","abstract":"

    Something went wrong with Millicast playback.

    ","parent_name":"THEOErrorCode"},"Enums/THEOErrorCode.html#/s:13THEOplayerSDK13THEOErrorCodeO20MILLICAST_HTTP_ERRORyA2CmF":{"name":"MILLICAST_HTTP_ERROR","abstract":"

    A fatal error occured regarding HTTP requests in Millicast.

    ","parent_name":"THEOErrorCode"},"Enums/THEOErrorCode.html#/s:13THEOplayerSDK13THEOErrorCodeO33MILLICAST_ABR_CONFIGURATION_ERRORyA2CmF":{"name":"MILLICAST_ABR_CONFIGURATION_ERROR","abstract":"

    A fatal error occured during ABR configuration in Millicast.

    ","parent_name":"THEOErrorCode"},"Enums/THEOErrorCode.html#/s:13THEOplayerSDK13THEOErrorCodeO31MILLICAST_TRACK_DISABLING_ERRORyA2CmF":{"name":"MILLICAST_TRACK_DISABLING_ERROR","abstract":"

    A fatal error occured when disabling a Millicast remote track.

    ","parent_name":"THEOErrorCode"},"Enums/THEOErrorCode.html#/s:13THEOplayerSDK13THEOErrorCodeO30MILLICAST_TRACK_ENABLING_ERRORyA2CmF":{"name":"MILLICAST_TRACK_ENABLING_ERROR","abstract":"

    A fatal error occured when enabling a Millicast remote track.

    ","parent_name":"THEOErrorCode"},"Enums/THEOErrorCode.html#/s:13THEOplayerSDK13THEOErrorCodeO26MILLICAST_DISCONNECT_ERRORyA2CmF":{"name":"MILLICAST_DISCONNECT_ERROR","abstract":"

    A fatal error occured when disconnecting the millicast client

    ","parent_name":"THEOErrorCode"},"Enums/THEOErrorCode.html#/s:13THEOplayerSDK13THEOErrorCodeO25MILLICAST_SUBSCRIBE_ERRORyA2CmF":{"name":"MILLICAST_SUBSCRIBE_ERROR","abstract":"

    A fatal error occured when attempting to subscribe to Millicast.

    ","parent_name":"THEOErrorCode"},"Enums/THEOErrorCode.html#/s:13THEOplayerSDK13THEOErrorCodeO26MILLICAST_SET_VOLUME_ERRORyA2CmF":{"name":"MILLICAST_SET_VOLUME_ERROR","abstract":"

    A fatal error occured when attempting to set volume on an audio track.

    ","parent_name":"THEOErrorCode"},"Enums/THEOErrorCode.html#/s:13THEOplayerSDK13THEOErrorCodeO31MILLCAST_WEBRTC_SIGNALING_ERRORyA2CmF":{"name":"MILLCAST_WEBRTC_SIGNALING_ERROR","abstract":"

    A fatal error occurred during WebRTC signaling with the millicast media server.

    ","parent_name":"THEOErrorCode"},"Protocols/AVPlayerError.html#/s:13THEOplayerSDK13AVPlayerErrorP8userInfoSDySSypGSgvp":{"name":"userInfo","abstract":"

    The userInfo dictionary for the error, if more details are available.

    ","parent_name":"AVPlayerError"},"Protocols/AVPlayerError.html#/s:13THEOplayerSDK13AVPlayerErrorP08avPlayerD4CodeSo7AVErrorVSgvp":{"name":"avPlayerErrorCode","abstract":"

    The parsed error code of the underlying AVplayer error, if available

    ","parent_name":"AVPlayerError"},"Protocols/AVPlayerError.html#/s:13THEOplayerSDK13AVPlayerErrorP08avPlayerD0SC7AVErrorLeVSgvp":{"name":"avPlayerError","abstract":"

    The underlying AVplayer error, if available

    ","parent_name":"AVPlayerError"},"Protocols/NetworkError.html#/s:13THEOplayerSDK12NetworkErrorP3urlSSSgvp":{"name":"url","abstract":"

    The URL that was used.

    ","parent_name":"NetworkError"},"Protocols/NetworkError.html#/s:13THEOplayerSDK12NetworkErrorP6statusSivp":{"name":"status","abstract":"

    The HTTP status code.

    ","parent_name":"NetworkError"},"Protocols/NetworkError.html#/s:13THEOplayerSDK12NetworkErrorP12errorCommentSSSgvp":{"name":"errorComment","abstract":"

    The error comment which might contain the HTTP status code.

    ","parent_name":"NetworkError"},"Protocols/THEOError.html#/s:13THEOplayerSDK9THEOErrorP9timestamp10Foundation4DateVvp":{"name":"timestamp","abstract":"

    The date at which the error occured.

    ","parent_name":"THEOError"},"Protocols/THEOError.html#/s:13THEOplayerSDK9THEOErrorP4codeAA0C4CodeOvp":{"name":"code","abstract":"

    A THEOErrorCode that indicates the type of error that has occurred.

    ","parent_name":"THEOError"},"Protocols/THEOError.html#/s:13THEOplayerSDK9THEOErrorP8categoryAA13ErrorCategoryOvp":{"name":"category","abstract":"

    An ErrorCategory that indicates the category of the error that has occurred.

    ","parent_name":"THEOError"},"Protocols/THEOError.html#/s:13THEOplayerSDK9THEOErrorP5causeAA13THEOBaseError_pSgvp":{"name":"cause","abstract":"

    The underlying cause of this error, if known.

    ","parent_name":"THEOError"},"Protocols/THEOBaseError.html#/s:13THEOplayerSDK13THEOBaseErrorP4nameSSvp":{"name":"name","abstract":"

    The name of the error.

    ","parent_name":"THEOBaseError"},"Protocols/THEOBaseError.html#/s:13THEOplayerSDK13THEOBaseErrorP7messageSSvp":{"name":"message","abstract":"

    The message of the error aimed at the user.

    ","parent_name":"THEOBaseError"},"Protocols/THEOBaseError.html#/s:13THEOplayerSDK13THEOBaseErrorP5stackSaySSGSgvp":{"name":"stack","abstract":"

    A stack-trace up until the error occured.

    ","parent_name":"THEOBaseError"},"Protocols/THEOBaseError.html":{"name":"THEOBaseError","abstract":"

    A basic error that is thrown by THEOPlayer.

    "},"Protocols/THEOError.html":{"name":"THEOError","abstract":"

    An error that is thrown by THEOplayer.

    "},"Protocols/NetworkError.html":{"name":"NetworkError","abstract":"

    A network error.

    "},"Protocols/AVPlayerError.html":{"name":"AVPlayerError","abstract":"

    An error that is thrown by AVPlayer.

    "},"Enums/THEOErrorCode.html":{"name":"THEOErrorCode","abstract":"

    A code that indicates the type of error that has occurred.

    "},"Enums/ErrorCategory.html":{"name":"ErrorCategory","abstract":"

    The Error category a TheoErrorCode belongs to.

    "},"Classes/NetworkErrorEvent.html#/s:13THEOplayerSDK17NetworkErrorEventC4typeSSvp":{"name":"type","abstract":"

    The textual representation of the type of event, ‘networkerror’.

    ","parent_name":"NetworkErrorEvent"},"Classes/NetworkErrorEvent.html#/s:13THEOplayerSDK17NetworkErrorEventC4date10Foundation4DateVvp":{"name":"date","abstract":"

    The date at which the event occurred.

    ","parent_name":"NetworkErrorEvent"},"Classes/NetworkErrorEvent.html#/s:13THEOplayerSDK17NetworkErrorEventC5errorAA0cD0_pSgvp":{"name":"error","abstract":"

    A NetworkError instance containing information about the error.

    ","parent_name":"NetworkErrorEvent"},"Structs/NetworkEventTypes.html#/s:13THEOplayerSDK17NetworkEventTypesV5ERRORAA0D4TypeCyAA0c5ErrorD0CGvpZ":{"name":"ERROR","abstract":"

    Fired when NetworkErrorEvent occurs.

    ","parent_name":"NetworkEventTypes"},"Structs/NetworkEventTypes.html#/s:13THEOplayerSDK17NetworkEventTypesV20ENTER_BADNETWORKMODEAA0D4TypeCyAA08EnterBadc4ModeD0CGvpZ":{"name":"ENTER_BADNETWORKMODE","abstract":"

    Fired when NetworkErrorEvent occurs.

    ","parent_name":"NetworkEventTypes"},"Structs/NetworkEventTypes.html#/s:13THEOplayerSDK17NetworkEventTypesV19EXIT_BADNETWORKMODEAA0D4TypeCyAA07ExitBadc4ModeD0CGvpZ":{"name":"EXIT_BADNETWORKMODE","abstract":"

    Fired when NetworkErrorEvent occurs.

    ","parent_name":"NetworkEventTypes"},"Structs/NetworkEventTypes.html":{"name":"NetworkEventTypes","abstract":"

    The types of Network events.

    "},"Classes/NetworkErrorEvent.html":{"name":"NetworkErrorEvent","abstract":"

    Fired when NetworkEventTypes.ERROR occurs for the THEOplayer.

    "},"Classes/AspectRatioChangeEvent.html#/s:13THEOplayerSDK22AspectRatioChangeEventC4typeSSvp":{"name":"type","abstract":"

    Type of the event, defaults to “aspectratiochange”.

    ","parent_name":"AspectRatioChangeEvent"},"Classes/AspectRatioChangeEvent.html#/s:13THEOplayerSDK22AspectRatioChangeEventC4date10Foundation4DateVvp":{"name":"date","abstract":"

    The date at which the event occured.

    ","parent_name":"AspectRatioChangeEvent"},"Classes/AspectRatioChangeEvent.html#/s:13THEOplayerSDK22AspectRatioChangeEventC06aspectD0AA0cD0Ovp":{"name":"aspectRatio","abstract":"

    The new AspectRatio of the view.

    ","parent_name":"AspectRatioChangeEvent"},"Fullscreen%20Events.html#/s:13THEOplayerSDK20FullscreenEventTypesV":{"name":"FullscreenEventTypes","abstract":"

    The types of events related to fullscreen.

    "},"Classes/AspectRatioChangeEvent.html":{"name":"AspectRatioChangeEvent","abstract":"

    Thrown when the aspect ratio property of the player has changed.

    "},"Protocols/FullscreenPresentationDelegate.html#/s:13THEOplayerSDK30FullscreenPresentationDelegateP7present14viewController10completionyAA0c4ViewH0C_yyctF":{"name":"present(viewController:completion:)","abstract":"

    Method which gets called when the fullscreen view controller is ready to be presented.

    ","parent_name":"FullscreenPresentationDelegate"},"Protocols/FullscreenPresentationDelegate.html#/s:13THEOplayerSDK30FullscreenPresentationDelegateP7dismiss14viewController10completionyAA0c4ViewH0C_yyctF":{"name":"dismiss(viewController:completion:)","abstract":"

    Method which gets called when the fullscreen view controller is ready to be dismissed.

    ","parent_name":"FullscreenPresentationDelegate"},"Enums/AspectRatio.html#/s:13THEOplayerSDK11AspectRatioO3fityA2CmF":{"name":"fit","abstract":"

    Scales the theoplayer so that all content fits inside its bounding box, keeping the original aspect ratio of the content.

    ","parent_name":"AspectRatio"},"Enums/AspectRatio.html#/s:13THEOplayerSDK11AspectRatioO4fillyA2CmF":{"name":"fill","abstract":"

    Scales the theoplayer so that all content fits inside the bounding box which will be stretched to fill the entire bounding box.

    ","parent_name":"AspectRatio"},"Enums/AspectRatio.html#/s:13THEOplayerSDK11AspectRatioO10aspectFillyA2CmF":{"name":"aspectFill","abstract":"

    Scales the theoplayer so that the content fills up the entire bounding box, keeping the original aspect ratio of the content.

    ","parent_name":"AspectRatio"},"Protocols/Fullscreen.html#/s:13THEOplayerSDK10FullscreenP30supportedInterfaceOrientationsSo26UIInterfaceOrientationMaskVvp":{"name":"supportedInterfaceOrientations","abstract":"

    The supported interface orientations for fullscreen mode as a UIInterfaceOrientationMask.

    ","parent_name":"Fullscreen"},"Protocols/Fullscreen.html#/s:13THEOplayerSDK10FullscreenP14viewControllerAA0c4ViewE0CSgvp":{"name":"viewController","abstract":"

    When in fullscreen presentation mode returns the FullscreenViewController that contains the player. Returns nil otherwise.

    ","parent_name":"Fullscreen"},"Protocols/Fullscreen.html#/s:13THEOplayerSDK10FullscreenP19viewControllerClassAA0c4ViewE0CmSgvp":{"name":"viewControllerClass","abstract":"

    The type of the FullscreenViewController that will be presented when the player goes to fullscreen presentation mode.

    ","parent_name":"Fullscreen"},"Protocols/Fullscreen.html#/s:13THEOplayerSDK10FullscreenP20presentationDelegateAA0c12PresentationE0_pSgvp":{"name":"presentationDelegate","abstract":"

    The fullscreen delegate which allows control over the presentation of the fullscreen view controller. Setting it will override the default behavior.

    ","parent_name":"Fullscreen"},"Protocols/Fullscreen.html#/s:13THEOplayerSDK10FullscreenP33setSupportedInterfaceOrientations09supportedfG0ySo26UIInterfaceOrientationMaskV_tF":{"name":"setSupportedInterfaceOrientations(supportedInterfaceOrientations:)","abstract":"

    Sets the supported interface orientations for fullscreen mode.

    ","parent_name":"Fullscreen"},"Protocols/Fullscreen.html#/s:13THEOplayerSDK10FullscreenP16addEventListener4type8listenerAA0eF0_pAA0E4TypeCyqd__G_yqd__ctAA0E8ProtocolRd__lF":{"name":"addEventListener(type:listener:)","abstract":"

    Adds the event listener of the given EventType.

    ","parent_name":"Fullscreen"},"Protocols/Fullscreen.html#/s:13THEOplayerSDK10FullscreenP19removeEventListener4type8listeneryAA0E4TypeCyqd__G_AA0eF0_ptAA0E8ProtocolRd__lF":{"name":"removeEventListener(type:listener:)","abstract":"

    Removes the event listener for the given EventType.

    ","parent_name":"Fullscreen"},"Protocols/Fullscreen.html":{"name":"Fullscreen","abstract":"

    The Fullscreen object helps you configure the settings of the fullscreen mode.

    "},"Enums/AspectRatio.html":{"name":"AspectRatio","abstract":"

    Specifies an aspect ratio for the player when in fullscreen mode.

    "},"Fullscreen%20API.html#/c:@M@THEOplayerSDK@objc(cs)FullscreenViewController":{"name":"FullscreenViewController","abstract":"

    The Fullscreen view controller class that presents the player when the PresentationMode is set to fullscreen."},"Protocols/FullscreenPresentationDelegate.html":{"name":"FullscreenPresentationDelegate","abstract":"

    The fullscreen delegate which allows control over the presentation of the fullscreen view controller.

    "},"Protocols/AVPictureInPictureControllerDelegateExtended.html#/c:@M@THEOplayerSDK@objc(pl)AVPictureInPictureControllerDelegateExtended(im)pictureInPictureDidBecomePossible":{"name":"pictureInPictureDidBecomePossible()","abstract":"

    Called when the value of AVPictureInPictureController.isPictureInPicturePossible changes to true.

    ","parent_name":"AVPictureInPictureControllerDelegateExtended"},"Protocols/AVPictureInPictureControllerDelegateExtended.html#/c:@M@THEOplayerSDK@objc(pl)AVPictureInPictureControllerDelegateExtended(im)pictureInPictureDidBecomeNotPossible":{"name":"pictureInPictureDidBecomeNotPossible()","abstract":"

    Called when the value of AVPictureInPictureController.isPictureInPicturePossible changes to false.

    ","parent_name":"AVPictureInPictureControllerDelegateExtended"},"Enums/PictureInPictureCorner.html#/s:13THEOplayerSDK09PictureInC6CornerO7defaultACvpZ":{"name":"default","abstract":"

    The default corner is bottom right

    ","parent_name":"PictureInPictureCorner"},"Protocols/PictureInPicture.html#/s:13THEOplayerSDK09PictureInC0P13currentCornerAA0cdcF0OSgvp":{"name":"currentCorner","abstract":"

    The current PictureInPictureCorner the PiP view is displayed in.

    ","parent_name":"PictureInPicture"},"Protocols/PictureInPicture.html#/s:13THEOplayerSDK09PictureInC0P9configure7movable13defaultCorner5scale10visibility6marginySbSg_AA0cdcH0OSgSfSgSdSgAA11THEOMarginsCSgtF":{"name":"configure(movable:defaultCorner:scale:visibility:margin:)","abstract":"

    Configures the picture-in-picture (PiP) view.

    ","parent_name":"PictureInPicture"},"Protocols/PictureInPicture.html#/s:13THEOplayerSDK09PictureInC0P06nativecdC8DelegateSo09AVPicturedc10ControllerF0_pSgvp":{"name":"nativePictureInPictureDelegate","abstract":"

    The protocol that defines the methods to respond to Picture in Picture events.

    ","parent_name":"PictureInPicture"},"Protocols/PictureInPicture.html#/s:13THEOplayerSDK09PictureInC0P9configure13configurationyAA16PiPConfigurationC_tF":{"name":"configure(configuration:)","abstract":"

    Sets the picture-in-picture configuration dynamically.

    ","parent_name":"PictureInPicture"},"Protocols/PictureInPicture.html#/s:13THEOplayerSDK09PictureInC0PAAE9configure7movable13defaultCorner5scaleySbSg_AA0cdcH0OSgSfSgtF":{"name":"configure(movable:defaultCorner:scale:)","abstract":"

    Configures the picture-in-picture (PiP) view

    ","parent_name":"PictureInPicture"},"Protocols/PictureInPicture.html#/s:13THEOplayerSDK09PictureInC0PAAE9configure7movable13defaultCorner5scale10visibilityySbSg_AA0cdcH0OSgSfSgSdSgtF":{"name":"configure(movable:defaultCorner:scale:visibility:)","abstract":"

    Configures the picture-in-picture (PiP) view.

    ","parent_name":"PictureInPicture"},"Protocols/PictureInPicture.html#/s:13THEOplayerSDK09PictureInC0PAAE9configure7movable13defaultCorner5scale6marginySbSg_AA0cdcH0OSgSfSgAA11THEOMarginsCSgtF":{"name":"configure(movable:defaultCorner:scale:margin:)","abstract":"

    Configures the picture-in-picture (PiP) view.

    ","parent_name":"PictureInPicture"},"Protocols/PictureInPicture.html":{"name":"PictureInPicture","abstract":"

    Helps configure the settings when PresentationMode.pictureInPicture is active.

    "},"Enums/PictureInPictureCorner.html":{"name":"PictureInPictureCorner","abstract":"

    The corner of the PiP view

    "},"Picture-In-Picture.html#/s:13THEOplayerSDK09PictureInC20NewCornerUserInfoKeySSvp":{"name":"PictureInPictureNewCornerUserInfoKey","abstract":"

    The key to retrieve the new PiP view corner

    "},"Picture-In-Picture.html#/s:13THEOplayerSDK09PictureInC20OldCornerUserInfoKeySSvp":{"name":"PictureInPictureOldCornerUserInfoKey","abstract":"

    The key to retrieve the corner at which the PiP view previously was

    "},"Protocols/AVPictureInPictureControllerDelegateExtended.html":{"name":"AVPictureInPictureControllerDelegateExtended","abstract":"

    Extends AVPictureInPictureControllerDelegate to provide additional methods that get called when changes occur in AVPictureInPictureController.

    "},"Classes/AirPlayStateChangeEvent.html#/s:13THEOplayerSDK23AirPlayStateChangeEventC5stateAA010PlayerCastE0OSgvp":{"name":"state","abstract":"

    Indicates the state of AirPlay.

    ","parent_name":"AirPlayStateChangeEvent"},"Classes/AirPlayEvent.html#/s:13THEOplayerSDK12AirPlayEventC4typeSSvp":{"name":"type","abstract":"

    The type of the event.

    ","parent_name":"AirPlayEvent"},"Classes/AirPlayEvent.html#/s:13THEOplayerSDK12AirPlayEventC4date10Foundation4DateVvp":{"name":"date","abstract":"

    The date at which the event occured.

    ","parent_name":"AirPlayEvent"},"Structs/AirPlayEventTypes.html#/s:13THEOplayerSDK17AirPlayEventTypesV12STATE_CHANGEAA0E4TypeCyAA0cd11StateChangeE0CGvpZ":{"name":"STATE_CHANGE","abstract":"

    Fired when the AirPlay.state changes.

    ","parent_name":"AirPlayEventTypes"},"Structs/AirPlayEventTypes.html":{"name":"AirPlayEventTypes","abstract":"

    The AirPlayEvent types.

    "},"Classes/AirPlayEvent.html":{"name":"AirPlayEvent","abstract":"

    The AirPlay event object.

    "},"Classes/AirPlayStateChangeEvent.html":{"name":"AirPlayStateChangeEvent","abstract":"

    Fired when the AirPlay.state changes.

    "},"Protocols/AirPlay.html#/s:13THEOplayerSDK7AirPlayP7castingSbvp":{"name":"casting","abstract":"

    Whether the player is casting.

    ","parent_name":"AirPlay"},"Protocols/AirPlay.html#/s:13THEOplayerSDK7AirPlayP5stateAA15PlayerCastStateOvp":{"name":"state","abstract":"

    The state of the casting process.

    ","parent_name":"AirPlay"},"Protocols/AirPlay.html#/s:13THEOplayerSDK7AirPlayP5startyyF":{"name":"start()","abstract":"

    Start a casting session with the player’s source.

    ","parent_name":"AirPlay"},"Protocols/AirPlay.html#/s:13THEOplayerSDK7AirPlayP4stopyyF":{"name":"stop()","abstract":"

    Stop the active casting session.

    ","parent_name":"AirPlay"},"Protocols/AirPlay.html":{"name":"AirPlay","abstract":"

    The AirPlay API.

    "},"Classes/StateChangeEvent.html#/s:13THEOplayerSDK16StateChangeEventC5stateAA010PlayerCastC0Ovp":{"name":"state","abstract":"

    The new cast state.

    ","parent_name":"StateChangeEvent"},"Classes/CastErrorEvent.html#/s:13THEOplayerSDK14CastErrorEventC5errorAA0cD0Cvp":{"name":"error","abstract":"

    The error thrown by the Chromecast.

    ","parent_name":"CastErrorEvent"},"Structs/ChromecastEventTypes.html#/s:13THEOplayerSDK20ChromecastEventTypesV12STATE_CHANGEAA0D4TypeCyAA011StateChangeD0CGvpZ":{"name":"STATE_CHANGE","abstract":"

    Fired when castStateChangeEvent occurs.

    ","parent_name":"ChromecastEventTypes"},"Structs/ChromecastEventTypes.html#/s:13THEOplayerSDK20ChromecastEventTypesV5ERRORAA0D4TypeCyAA09CastErrorD0CGvpZ":{"name":"ERROR","abstract":"

    Fired when castErrorEvent occurs.

    ","parent_name":"ChromecastEventTypes"},"Structs/ChromecastEventTypes.html":{"name":"ChromecastEventTypes","abstract":"

    The types of Chromecast Events.

    "},"Classes/CastErrorEvent.html":{"name":"CastErrorEvent","abstract":"

    Thrown to indicate that there was an error while casting / trying to cast.

    "},"Classes/StateChangeEvent.html":{"name":"StateChangeEvent","abstract":"

    Thrown to indicate that the state of the connection has changed.

    "},"Enums/ErrorCode.html#/s:13THEOplayerSDK9ErrorCodeO9_rawValueSSvp":{"name":"_rawValue","abstract":"

    The raw value of type String.

    ","parent_name":"ErrorCode"},"Enums/ChromecastMetadataType.html#/s:13THEOplayerSDK22ChromecastMetadataTypeO9_rawValueSSvp":{"name":"_rawValue","abstract":"

    The raw value of type String.

    ","parent_name":"ChromecastMetadataType"},"Classes/ChromecastMetadataImage.html#/s:13THEOplayerSDK23ChromecastMetadataImageC3srcSSvp":{"name":"src","abstract":"

    The URL to the metadata image.

    ","parent_name":"ChromecastMetadataImage"},"Classes/ChromecastMetadataImage.html#/s:13THEOplayerSDK23ChromecastMetadataImageC5widthSivp":{"name":"width","abstract":"

    The width of the image, in pixels.

    ","parent_name":"ChromecastMetadataImage"},"Classes/ChromecastMetadataImage.html#/s:13THEOplayerSDK23ChromecastMetadataImageC6heightSivp":{"name":"height","abstract":"

    The height of the image, in pixels.

    ","parent_name":"ChromecastMetadataImage"},"Classes/ChromecastMetadataImage.html#/s:13THEOplayerSDK23ChromecastMetadataImageC3src5width6heightACSS_S2itcfc":{"name":"init(src:width:height:)","abstract":"

    Constructs a ChromecastMetadataImage.

    ","parent_name":"ChromecastMetadataImage"},"Classes/ChromecastMetadataDescription.html#/s:13THEOplayerSDK29ChromecastMetadataDescriptionC6imagesSayAA0cD5ImageCGSgvp":{"name":"images","abstract":"

    An array of ChromecastMetadataImages.

    ","parent_name":"ChromecastMetadataDescription"},"Classes/ChromecastMetadataDescription.html#/s:13THEOplayerSDK29ChromecastMetadataDescriptionC11releaseDateSSSgvp":{"name":"releaseDate","abstract":"

    The release date using the following string format: “YYYY-MM-DD”

    ","parent_name":"ChromecastMetadataDescription"},"Classes/ChromecastMetadataDescription.html#/s:13THEOplayerSDK29ChromecastMetadataDescriptionC8subtitleSSSgvp":{"name":"subtitle","abstract":"

    The subtitle / short explanation about the content.

    ","parent_name":"ChromecastMetadataDescription"},"Classes/ChromecastMetadataDescription.html#/s:13THEOplayerSDK29ChromecastMetadataDescriptionC11releaseYearSiSgvp":{"name":"releaseYear","abstract":"

    The release year as an integer number.

    ","parent_name":"ChromecastMetadataDescription"},"Classes/ChromecastMetadataDescription.html#/s:13THEOplayerSDK29ChromecastMetadataDescriptionC4typeAA0cD4TypeOSgvp":{"name":"type","abstract":"

    The type. Defaults to “generic” if unset.

    ","parent_name":"ChromecastMetadataDescription"},"Classes/ChromecastMetadataDescription.html#/s:13THEOplayerSDK29ChromecastMetadataDescriptionC6images11releaseDate0G4Year5title8subtitle4type12metadataKeysACSayAA0cD5ImageCGSg_SSSgSiSgA2oA0cD4TypeOSgSDySSypGSgtcfc":{"name":"init(images:releaseDate:releaseYear:title:subtitle:type:metadataKeys:)","abstract":"

    Constructs a ChromecastMetadataDescription.

    ","parent_name":"ChromecastMetadataDescription"},"Classes/CastError.html#/s:13THEOplayerSDK9CastErrorC9errorCodeAA0dF0Ovp":{"name":"errorCode","abstract":"

    The error code of the cast error.

    ","parent_name":"CastError"},"Classes/CastError.html#/s:13THEOplayerSDK9CastErrorC11descriptionSSSgvp":{"name":"description","abstract":"

    The description of the cast error.

    ","parent_name":"CastError"},"Enums/PlayerCastState.html#/s:13THEOplayerSDK15PlayerCastStateO9availableyA2CmF":{"name":"available","abstract":"

    There is a cast device detected, but that THEOplayer is not casting or controlling the current cast session.

    ","parent_name":"PlayerCastState"},"Enums/PlayerCastState.html#/s:13THEOplayerSDK15PlayerCastStateO9connectedyA2CmF":{"name":"connected","abstract":"

    THEOplayer is casting to the cast device.

    ","parent_name":"PlayerCastState"},"Enums/PlayerCastState.html#/s:13THEOplayerSDK15PlayerCastStateO11unavailableyA2CmF":{"name":"unavailable","abstract":"

    There is no cast device detected or that the device is not available (e.g. not powered, not connected to the internet).

    ","parent_name":"PlayerCastState"},"Enums/PlayerCastState.html#/s:13THEOplayerSDK15PlayerCastStateO10connectingyA2CmF":{"name":"connecting","abstract":"

    THEOplayer is in the process of connecting to the cast device.

    ","parent_name":"PlayerCastState"},"Enums/PlayerCastState.html#/s:13THEOplayerSDK15PlayerCastStateO9_rawValueSSvp":{"name":"_rawValue","abstract":"

    The raw value of type String.

    ","parent_name":"PlayerCastState"},"Enums/CastStrategy.html#/s:13THEOplayerSDK12CastStrategyO4autoyA2CmF":{"name":"auto","abstract":"

    The player will automatically join a cast session at startup if one exists when play is called.

    ","parent_name":"CastStrategy"},"Enums/CastStrategy.html#/s:13THEOplayerSDK12CastStrategyO6manualyA2CmF":{"name":"manual","abstract":"

    The player will take over an existing session if there is one and the cast button is clicked.

    ","parent_name":"CastStrategy"},"Enums/CastStrategy.html#/s:13THEOplayerSDK12CastStrategyO8disabledyA2CmF":{"name":"disabled","abstract":"

    The player will not be affected by any existing cast sessions.

    ","parent_name":"CastStrategy"},"Enums/CastStrategy.html#/s:13THEOplayerSDK12CastStrategyO9_rawValueSSvp":{"name":"_rawValue","abstract":"

    The raw value of type String.

    ","parent_name":"CastStrategy"},"Classes/CastConfiguration.html#/s:13THEOplayerSDK17CastConfigurationC8strategyAA0C8StrategyOSgvp":{"name":"strategy","abstract":"

    The join strategy that will determine how the player will join an existing chromecast session.

    ","parent_name":"CastConfiguration"},"Classes/CastConfiguration.html#/s:13THEOplayerSDK17CastConfigurationC26enableExperimentalPipelineSbvp":{"name":"enableExperimentalPipeline","abstract":"

    Enable the new chromecast pipeline. This is an improved pipeline that enables new features in the future. Off by default

    ","parent_name":"CastConfiguration"},"Classes/CastConfiguration.html#/s:13THEOplayerSDK17CastConfigurationC8strategy26enableExperimentalPipelineAcA0C8StrategyOSg_Sbtcfc":{"name":"init(strategy:enableExperimentalPipeline:)","abstract":"

    Creates a Cast configuration.

    ","parent_name":"CastConfiguration"},"Protocols/Chromecast.html#/s:13THEOplayerSDK10ChromecastP7castingSbvp":{"name":"casting","abstract":"

    Whether THEOplayer is casting to a chromecast and has control over the current chromecast session.

    ","parent_name":"Chromecast"},"Protocols/Chromecast.html#/s:13THEOplayerSDK10ChromecastP5errorAA9CastErrorCSgvp":{"name":"error","abstract":"

    The last error thrown by chromecast.

    ","parent_name":"Chromecast"},"Protocols/Chromecast.html#/s:13THEOplayerSDK10ChromecastP12receiverNameSSSgvp":{"name":"receiverName","abstract":"

    The name of the chromecast device that THEOplayer is casting to.

    ","parent_name":"Chromecast"},"Protocols/Chromecast.html#/s:13THEOplayerSDK10ChromecastP5stateAA15PlayerCastStateOSgvp":{"name":"state","abstract":"

    Indicates the state of the casting process.

    ","parent_name":"Chromecast"},"Protocols/Chromecast.html#/s:13THEOplayerSDK10ChromecastP21setConnectionDelegateyyAA0ceF0_pSgF":{"name":"setConnectionDelegate(_:)","abstract":"

    The ChromecastConnectionDelegate to be used when the Chromecast connection changes.

    ","parent_name":"Chromecast"},"Protocols/Chromecast.html#/s:13THEOplayerSDK10ChromecastP5startyyF":{"name":"start()","abstract":"

    Start casting to the chromecast. A dialog will prompt to choose the device.

    ","parent_name":"Chromecast"},"Protocols/Chromecast.html#/s:13THEOplayerSDK10ChromecastP4stopyyF":{"name":"stop()","abstract":"

    Stop casting to the chromecast.

    ","parent_name":"Chromecast"},"Protocols/Chromecast.html#/s:13THEOplayerSDK10ChromecastP4joinyyF":{"name":"join()","abstract":"

    Join an active chromecast session.

    ","parent_name":"Chromecast"},"Protocols/Chromecast.html#/s:13THEOplayerSDK10ChromecastP5leaveyyF":{"name":"leave()","abstract":"

    Leave an active chromecast session without affecting other devices.

    ","parent_name":"Chromecast"},"Protocols/Chromecast.html#/s:13THEOplayerSDK10ChromecastP16addEventListener4type8listenerAA0eF0_pAA0E4TypeCyqd__G_yqd__ctAA0E8ProtocolRd__lF":{"name":"addEventListener(type:listener:)","abstract":"

    Adds the given event listener of the given ChromecastEventType.

    ","parent_name":"Chromecast"},"Protocols/Chromecast.html#/s:13THEOplayerSDK10ChromecastP19removeEventListener4type8listeneryAA0E4TypeCyqd__G_AA0eF0_ptAA0E8ProtocolRd__lF":{"name":"removeEventListener(type:listener:)","abstract":"

    Removes the given event listener of the given ChromecastEventType.

    ","parent_name":"Chromecast"},"Protocols/Chromecast.html":{"name":"Chromecast","abstract":"

    Chromecast, also known as Google Cast, is a casting device designed by Google.

    "},"Classes/CastConfiguration.html":{"name":"CastConfiguration","abstract":"

    Describes the configuration of the Cast integrations.

    "},"Enums/CastStrategy.html":{"name":"CastStrategy","abstract":"

    The cast strategies that specify the ways an existing chromecast session can be joined.

    "},"Enums/PlayerCastState.html":{"name":"PlayerCastState","abstract":"

    Indicates the state of the casting processs.

    "},"Classes/CastError.html":{"name":"CastError","abstract":"

    The cast error.

    "},"Classes/ChromecastMetadataDescription.html":{"name":"ChromecastMetadataDescription","abstract":"

    The description of the metadata used by Chromecast.

    "},"Classes/ChromecastMetadataImage.html":{"name":"ChromecastMetadataImage","abstract":"

    The metadata of a Chromecast image.

    "},"Enums/ChromecastMetadataType.html":{"name":"ChromecastMetadataType","abstract":"

    The Chromecast metadata type.

    "},"Enums/ErrorCode.html":{"name":"ErrorCode","abstract":"

    The different types of errors.

    "},"Classes/AdErrorEvent.html#/s:13THEOplayerSDK13EventProtocolP4typeSSvp":{"name":"type","parent_name":"AdErrorEvent"},"Classes/AdErrorEvent.html#/s:13THEOplayerSDK13EventProtocolP4date10Foundation4DateVvp":{"name":"date","parent_name":"AdErrorEvent"},"Structs/AdsEventTypes.html#/s:13THEOplayerSDK13AdsEventTypesV8AD_BEGINAA0D4TypeCyAA07AdBeginD0CGvpZ":{"name":"AD_BEGIN","abstract":"

    Fired when AdBeginEvent occurs.

    ","parent_name":"AdsEventTypes"},"Structs/AdsEventTypes.html#/s:13THEOplayerSDK13AdsEventTypesV6AD_ENDAA0D4TypeCyAA05AdEndD0CGvpZ":{"name":"AD_END","abstract":"

    Fired when AdEndEvent occurs.

    ","parent_name":"AdsEventTypes"},"Structs/AdsEventTypes.html#/s:13THEOplayerSDK13AdsEventTypesV8AD_ERRORAA0D4TypeCyAA07AdErrorD0CGvpZ":{"name":"AD_ERROR","abstract":"

    Fired when AdErrorEvent occurs.

    ","parent_name":"AdsEventTypes"},"Structs/AdsEventTypes.html#/s:13THEOplayerSDK13AdsEventTypesV17AD_FIRST_QUARTILEAA0D4TypeCyAA015AdFirstQuartileD0CGvpZ":{"name":"AD_FIRST_QUARTILE","abstract":"

    Fired when AdFirstQuartileEvent occurs.

    ","parent_name":"AdsEventTypes"},"Structs/AdsEventTypes.html#/s:13THEOplayerSDK13AdsEventTypesV11AD_MIDPOINTAA0D4TypeCyAA010AdMidpointD0CGvpZ":{"name":"AD_MIDPOINT","abstract":"

    Fired when AdMidpointEvent occurs.

    ","parent_name":"AdsEventTypes"},"Structs/AdsEventTypes.html#/s:13THEOplayerSDK13AdsEventTypesV17AD_THIRD_QUARTILEAA0D4TypeCyAA015AdThirdQuartileD0CGvpZ":{"name":"AD_THIRD_QUARTILE","abstract":"

    Fired when AdThirdQuartileEvent occurs.

    ","parent_name":"AdsEventTypes"},"Structs/AdsEventTypes.html#/s:13THEOplayerSDK13AdsEventTypesV9AD_LOADEDAA0D4TypeCyAA08AdLoadedD0CGvpZ":{"name":"AD_LOADED","abstract":"

    Fired when AdLoadedEvent occurs.

    ","parent_name":"AdsEventTypes"},"Structs/AdsEventTypes.html#/s:13THEOplayerSDK13AdsEventTypesV13AD_IMPRESSIONAA0D4TypeCyAA012AdImpressionD0CGvpZ":{"name":"AD_IMPRESSION","abstract":"

    Fired when AdImpressionEvent occurs.

    ","parent_name":"AdsEventTypes"},"Structs/AdsEventTypes.html#/s:13THEOplayerSDK13AdsEventTypesV7AD_SKIPAA0D4TypeCyAA06AdSkipD0CGvpZ":{"name":"AD_SKIP","abstract":"

    Fired when AdSkipEvent occurs.

    ","parent_name":"AdsEventTypes"},"Structs/AdsEventTypes.html#/s:13THEOplayerSDK13AdsEventTypesV14AD_BREAK_BEGINAA0D4TypeCyAA012AdBreakBeginD0CGvpZ":{"name":"AD_BREAK_BEGIN","abstract":"

    Fired when AdBreakBeginEvent occurs.

    ","parent_name":"AdsEventTypes"},"Structs/AdsEventTypes.html#/s:13THEOplayerSDK13AdsEventTypesV12AD_BREAK_ENDAA0D4TypeCyAA010AdBreakEndD0CGvpZ":{"name":"AD_BREAK_END","abstract":"

    Fired when AdBreakEndEvent occurs.

    ","parent_name":"AdsEventTypes"},"Structs/AdsEventTypes.html#/s:13THEOplayerSDK13AdsEventTypesV9AD_TAPPEDAA0D4TypeCyAA08AdTappedD0CGvpZ":{"name":"AD_TAPPED","abstract":"

    Fired when AdTappedEvent occurs.

    ","parent_name":"AdsEventTypes"},"Structs/AdsEventTypes.html#/s:13THEOplayerSDK13AdsEventTypesV10AD_CLICKEDAA0D4TypeCyAA09AdClickedD0CGvpZ":{"name":"AD_CLICKED","abstract":"

    Fired when AdClickedEvent occurs.

    ","parent_name":"AdsEventTypes"},"Structs/AdsEventTypes.html#/s:13THEOplayerSDK13AdsEventTypesV12ADD_AD_BREAKAA0D4TypeCyAA010AddAdBreakD0CGvpZ":{"name":"ADD_AD_BREAK","abstract":"

    Fired when AddAdBreakEvent occurs.

    ","parent_name":"AdsEventTypes"},"Structs/AdsEventTypes.html#/s:13THEOplayerSDK13AdsEventTypesV15UPDATE_AD_BREAKAA0D4TypeCyAA013UpdateAdBreakD0CGvpZ":{"name":"UPDATE_AD_BREAK","abstract":"

    Fired when UpdateAdBreakEvent occurs.

    ","parent_name":"AdsEventTypes"},"Structs/AdsEventTypes.html#/s:13THEOplayerSDK13AdsEventTypesV15REMOVE_AD_BREAKAA0D4TypeCyAA013RemoveAdBreakD0CGvpZ":{"name":"REMOVE_AD_BREAK","abstract":"

    Fired when RemoveAdBreakEvent occurs.

    ","parent_name":"AdsEventTypes"},"Structs/AdsEventTypes.html#/s:13THEOplayerSDK13AdsEventTypesV15AD_BREAK_CHANGEAA0D4TypeCyAA013AdBreakChangeD0CGvpZ":{"name":"AD_BREAK_CHANGE","abstract":"

    Fired when AdBreakChangeEvent occurs.

    ","parent_name":"AdsEventTypes"},"Structs/AdsEventTypes.html#/s:13THEOplayerSDK13AdsEventTypesV6ADD_ADAA0D4TypeCyAA05AddAdD0CGvpZ":{"name":"ADD_AD","abstract":"

    Fired when AddAdEvent occurs.

    ","parent_name":"AdsEventTypes"},"Structs/AdsEventTypes.html#/s:13THEOplayerSDK13AdsEventTypesV9UPDATE_ADAA0D4TypeCyAA08UpdateAdD0CGvpZ":{"name":"UPDATE_AD","abstract":"

    Fired when UpdateAdEvent occurs.

    ","parent_name":"AdsEventTypes"},"Structs/AdsEventTypes.html":{"name":"AdsEventTypes","abstract":"

    The types of Ads events.

    "},"Ads%20Events.html#/c:@M@THEOplayerSDK@objc(cs)AdBeginEvent":{"name":"AdBeginEvent","abstract":"

    Thrown to indicate that an ad has begun.

    "},"Ads%20Events.html#/c:@M@THEOplayerSDK@objc(cs)AdEndEvent":{"name":"AdEndEvent","abstract":"

    Thrown to indicate that an ad has ended.

    "},"Classes/AdErrorEvent.html":{"name":"AdErrorEvent","abstract":"

    Thrown to indicate that an ad has encountered an error.

    "},"Ads%20Events.html#/c:@M@THEOplayerSDK@objc(cs)AdBreakBeginEvent":{"name":"AdBreakBeginEvent","abstract":"

    Thrown to indicate that an ad has begun.

    "},"Ads%20Events.html#/c:@M@THEOplayerSDK@objc(cs)AdBreakEndEvent":{"name":"AdBreakEndEvent","abstract":"

    Thrown to indicate that an ad has begun.

    "},"Ads%20Events.html#/c:@M@THEOplayerSDK@objc(cs)AdFirstQuartileEvent":{"name":"AdFirstQuartileEvent","abstract":"

    Thrown to indicate that the first quartile of an ad was watched.

    "},"Ads%20Events.html#/c:@M@THEOplayerSDK@objc(cs)AdImpressionEvent":{"name":"AdImpressionEvent","abstract":"

    Thrown to indicate that an ad impression was fired.

    "},"Ads%20Events.html#/c:@M@THEOplayerSDK@objc(cs)AdLoadedEvent":{"name":"AdLoadedEvent","abstract":"

    Thrown to indicate that an ad was loaded.

    "},"Ads%20Events.html#/c:@M@THEOplayerSDK@objc(cs)AdMidpointEvent":{"name":"AdMidpointEvent","abstract":"

    Thrown to indicate that the middle of an ad was watched.

    "},"Ads%20Events.html#/c:@M@THEOplayerSDK@objc(cs)AdThirdQuartileEvent":{"name":"AdThirdQuartileEvent","abstract":"

    Thrown to indicate that the third quartile of an ad was watched.

    "},"Enums/OmidFriendlyObstructionPurpose.html#/s:13THEOplayerSDK30OmidFriendlyObstructionPurposeO7closeAdyA2CmF":{"name":"closeAd","abstract":"

    The obstruction was added to offer the functionality to close the ad.

    ","parent_name":"OmidFriendlyObstructionPurpose"},"Enums/OmidFriendlyObstructionPurpose.html#/s:13THEOplayerSDK30OmidFriendlyObstructionPurposeO13mediaControlsyA2CmF":{"name":"mediaControls","abstract":"

    The obstruction was added as a part of the media controls, e.g. a pause button.

    ","parent_name":"OmidFriendlyObstructionPurpose"},"Enums/OmidFriendlyObstructionPurpose.html#/s:13THEOplayerSDK30OmidFriendlyObstructionPurposeO10notVisibleyA2CmF":{"name":"notVisible","abstract":"

    The obstruction that was added is transparent and does not impact viewability.

    ","parent_name":"OmidFriendlyObstructionPurpose"},"Enums/OmidFriendlyObstructionPurpose.html#/s:13THEOplayerSDK30OmidFriendlyObstructionPurposeO5otheryA2CmF":{"name":"other","abstract":"

    The obstruction was added for another, possibly unknown, reason.

    ","parent_name":"OmidFriendlyObstructionPurpose"},"Classes/OmidFriendlyObstruction.html#/s:13THEOplayerSDK23OmidFriendlyObstructionC4viewSo6UIViewCvp":{"name":"view","abstract":"

    The view element of the friendly obstruction.

    ","parent_name":"OmidFriendlyObstruction"},"Classes/OmidFriendlyObstruction.html#/s:13THEOplayerSDK23OmidFriendlyObstructionC7purposeAA0cdE7PurposeOvp":{"name":"purpose","abstract":"

    The purpose of the friendly obstruction.

    ","parent_name":"OmidFriendlyObstruction"},"Classes/OmidFriendlyObstruction.html#/s:13THEOplayerSDK23OmidFriendlyObstructionC14detailedReasonSSSgvp":{"name":"detailedReason","abstract":"

    A text to explain the reason behind adding the view as a friendly obstruction.

    ","parent_name":"OmidFriendlyObstruction"},"Classes/OmidFriendlyObstruction.html#/s:13THEOplayerSDK23OmidFriendlyObstructionC4view7purpose14detailedReasonACSo6UIViewC_AA0cdE7PurposeOSSSgtcfc":{"name":"init(view:purpose:detailedReason:)","abstract":"

    Constructs an OmidFriendlyObstruction.

    ","parent_name":"OmidFriendlyObstruction"},"Protocols/Omid.html#/s:13THEOplayerSDK4OmidP22addFriendlyObstruction08friendlyF0yAA0ceF0C_tF":{"name":"addFriendlyObstruction(friendlyObstruction:)","abstract":"

    Adds the passed OmidFriendlyObstruction as a friendly obstruction.

    ","parent_name":"Omid"},"Protocols/Omid.html#/s:13THEOplayerSDK4OmidP26removeFriendlyObstructionsyyF":{"name":"removeFriendlyObstructions()","abstract":"

    Removes all the previously added friendly obstructions.

    ","parent_name":"Omid"},"Enums/AdIntegrationKind.html#/s:13THEOplayerSDK17AdIntegrationKindO7theoadsyA2CmF":{"name":"theoads","abstract":"

    The ad is of integration type THEO ad.

    ","parent_name":"AdIntegrationKind"},"Enums/AdIntegrationKind.html#/s:13THEOplayerSDK17AdIntegrationKindO10google_imayA2CmF":{"name":"google_ima","abstract":"

    The ad is of integration type Google IMA.

    ","parent_name":"AdIntegrationKind"},"Enums/AdIntegrationKind.html#/s:13THEOplayerSDK17AdIntegrationKindO10google_daiyA2CmF":{"name":"google_dai","abstract":"

    The ad is of integration type Google DAI.

    ","parent_name":"AdIntegrationKind"},"Enums/AdIntegrationKind.html#/s:13THEOplayerSDK17AdIntegrationKindO6customyA2CmF":{"name":"custom","abstract":"

    The ad is of custom integration type.

    ","parent_name":"AdIntegrationKind"},"Enums/AdIntegrationKind.html#/s:13THEOplayerSDK17AdIntegrationKindO9_rawValueSSvp":{"name":"_rawValue","abstract":"

    The raw value of type String.

    ","parent_name":"AdIntegrationKind"},"Enums/AdIntegration.html#/s:13THEOplayerSDK13AdIntegrationO9_rawValueSSvp":{"name":"_rawValue","abstract":"

    The raw value of type String.

    ","parent_name":"AdIntegration"},"Classes/AdType.html#/s:13THEOplayerSDK6AdTypeC6linearSSvpZ":{"name":"linear","abstract":"

    Linear advertisements interrupt the video content. They appear before (as pre-roll), after (as post-roll) or during (as mid-roll) the video content.

    ","parent_name":"AdType"},"Classes/AdType.html#/s:13THEOplayerSDK6AdTypeC9nonlinearSSvpZ":{"name":"nonlinear","abstract":"

    Non-linear advertisements appear during video content, without disrupting playback.

    ","parent_name":"AdType"},"Classes/AdType.html#/s:13THEOplayerSDK6AdTypeC7unknownSSvpZ":{"name":"unknown","abstract":"

    The type of the advertisement is unknown.

    ","parent_name":"AdType"},"Protocols/CompanionAd.html#/s:13THEOplayerSDK11CompanionAdP8adSlotIdSSSgvp":{"name":"adSlotId","abstract":"

    An identifier of the element in which the companion ad should be appended, if available.

    ","parent_name":"CompanionAd"},"Protocols/CompanionAd.html#/s:13THEOplayerSDK11CompanionAdP7altTextSSSgvp":{"name":"altText","abstract":"

    An alternative description for the companion ad.

    ","parent_name":"CompanionAd"},"Protocols/CompanionAd.html#/s:13THEOplayerSDK11CompanionAdP12clickThroughSSSgvp":{"name":"clickThrough","abstract":"

    The website of the advertisement.

    ","parent_name":"CompanionAd"},"Protocols/CompanionAd.html#/s:13THEOplayerSDK11CompanionAdP6heightSivp":{"name":"height","abstract":"

    The height of the companion ad, in pixels.

    ","parent_name":"CompanionAd"},"Protocols/CompanionAd.html#/s:13THEOplayerSDK11CompanionAdP11resourceURISSSgvp":{"name":"resourceURI","abstract":"

    The URI of the ad content.

    ","parent_name":"CompanionAd"},"Protocols/CompanionAd.html#/s:13THEOplayerSDK11CompanionAdP5widthSivp":{"name":"width","abstract":"

    The width of the companion ad, in pixels.

    ","parent_name":"CompanionAd"},"Protocols/CompanionAd.html#/s:13THEOplayerSDK11CompanionAdP4typeSSvp":{"name":"type","abstract":"

    The type of the companion ad.

    ","parent_name":"CompanionAd"},"Protocols/AdBreak.html#/s:13THEOplayerSDK7AdBreakP3adsSayAA0C0_pGvp":{"name":"ads","abstract":"

    An array of all the ads that are available in the current AdBreak.

    ","parent_name":"AdBreak"},"Protocols/AdBreak.html#/s:13THEOplayerSDK7AdBreakP11maxDurationSivp":{"name":"maxDuration","abstract":"

    Indicates the duration of the ad break, in seconds.

    ","parent_name":"AdBreak"},"Protocols/AdBreak.html#/s:13THEOplayerSDK7AdBreakP20maxRemainingDurationSdvp":{"name":"maxRemainingDuration","abstract":"

    Indicates the remaining duration of the ad break, in seconds.

    ","parent_name":"AdBreak"},"Protocols/AdBreak.html#/s:13THEOplayerSDK7AdBreakP10timeOffsetSivp":{"name":"timeOffset","abstract":"

    The time offset at which point the content will be paused to play the ad break, in seconds.

    ","parent_name":"AdBreak"},"Protocols/AdBreak.html#/s:13THEOplayerSDK7AdBreakP11integrationAA0C15IntegrationKindOvp":{"name":"integration","abstract":"

    The kind of the ad integration.

    ","parent_name":"AdBreak"},"Protocols/AdBreak.html#/s:13THEOplayerSDK7AdBreakP17customIntegrationSSSgvp":{"name":"customIntegration","abstract":"

    The type of custom ad integration.

    ","parent_name":"AdBreak"},"Protocols/NonLinearAd.html#/s:13THEOplayerSDK11NonLinearAdP12clickThroughSSSgvp":{"name":"clickThrough","abstract":"

    The url that redirects to the website of the advertiser.

    ","parent_name":"NonLinearAd"},"Protocols/MediaFile.html#/s:13THEOplayerSDK9MediaFileP8deliverySSvp":{"name":"delivery","abstract":"

    The delivery type.

    ","parent_name":"MediaFile"},"Protocols/MediaFile.html#/s:13THEOplayerSDK9MediaFileP11resourceURISSvp":{"name":"resourceURI","abstract":"

    The URI of the VAST content.

    ","parent_name":"MediaFile"},"Protocols/MediaFile.html#/s:13THEOplayerSDK9MediaFileP4typeSSvp":{"name":"type","abstract":"

    The MIME type for the file container.

    ","parent_name":"MediaFile"},"Protocols/MediaFile.html#/s:13THEOplayerSDK9MediaFileP6heightSivp":{"name":"height","abstract":"

    The native height of the video file, in pixels.

    ","parent_name":"MediaFile"},"Protocols/MediaFile.html#/s:13THEOplayerSDK9MediaFileP5widthSivp":{"name":"width","abstract":"

    The native width of the video file, in pixels.

    ","parent_name":"MediaFile"},"Protocols/LinearAd.html#/s:13THEOplayerSDK8LinearAdP8durationSiSgvp":{"name":"duration","abstract":"

    The duration of the LinearAd, as provided by the VAST file, in seconds.

    ","parent_name":"LinearAd"},"Protocols/LinearAd.html#/s:13THEOplayerSDK8LinearAdP10mediaFilesSayAA9MediaFile_pGvp":{"name":"mediaFiles","abstract":"

    An array of mediafiles, which provides some meta data retrieved from the VAST file.

    ","parent_name":"LinearAd"},"Protocols/Ad.html#/s:13THEOplayerSDK2AdP7adBreakAA0cE0_pvp":{"name":"adBreak","abstract":"

    A reference to the AdBreak of which the ad is a part of.

    ","parent_name":"Ad"},"Protocols/Ad.html#/s:13THEOplayerSDK2AdP10companionsSayAA09CompanionC0_pGvp":{"name":"companions","abstract":"

    An array of CompanionAds associated to the ad, if available within the same Creatives element.

    ","parent_name":"Ad"},"Protocols/Ad.html#/s:13THEOplayerSDK2AdP4typeSSvp":{"name":"type","abstract":"

    Either ‘linear’ or ‘nonlinear’, depending on the concrete implementer.

    ","parent_name":"Ad"},"Protocols/Ad.html#/s:13THEOplayerSDK2AdP2idSSSgvp":{"name":"id","abstract":"

    The identifier of the creative, provided in the VAST-file.

    ","parent_name":"Ad"},"Protocols/Ad.html#/s:13THEOplayerSDK2AdP10skipOffsetSiSgvp":{"name":"skipOffset","abstract":"

    When the Ad can be skipped, in seconds.

    ","parent_name":"Ad"},"Protocols/Ad.html#/s:13THEOplayerSDK2AdP11resourceURISSSgvp":{"name":"resourceURI","abstract":"

    The URI of the the ad content.

    ","parent_name":"Ad"},"Protocols/Ad.html#/s:13THEOplayerSDK2AdP5widthSiSgvp":{"name":"width","abstract":"

    The width of the advertisement, in pixels.

    ","parent_name":"Ad"},"Protocols/Ad.html#/s:13THEOplayerSDK2AdP6heightSiSgvp":{"name":"height","abstract":"

    The height of the advertisement, in pixels.

    ","parent_name":"Ad"},"Protocols/Ad.html#/s:13THEOplayerSDK2AdP11integrationAA0C15IntegrationKindOvp":{"name":"integration","abstract":"

    The kind of the ad integration.

    ","parent_name":"Ad"},"Protocols/Ad.html#/s:13THEOplayerSDK2AdP8durationSiSgvp":{"name":"duration","abstract":"

    The duration of the ad, in seconds.

    ","parent_name":"Ad"},"Protocols/Ad.html#/s:13THEOplayerSDK2AdP12clickThroughSSSgvp":{"name":"clickThrough","abstract":"

    The url that redirects to the website of the advertiser.

    ","parent_name":"Ad"},"Protocols/Ad.html#/s:13THEOplayerSDK2AdP17customIntegrationSSSgvp":{"name":"customIntegration","abstract":"

    The type of custom ad integration.

    ","parent_name":"Ad"},"Protocols/Ad.html#/s:13THEOplayerSDK2AdP7isSlateSbvp":{"name":"isSlate","abstract":"

    Whether the ad is slate or not

    ","parent_name":"Ad"},"Protocols/Ads.html#/s:13THEOplayerSDK3AdsP7playingSbvp":{"name":"playing","abstract":"

    Returns whether a linear ad is currently playing.

    ","parent_name":"Ads"},"Protocols/Ads.html#/s:13THEOplayerSDK3AdsP07currentC0SayAA2Ad_pGvp":{"name":"currentAds","abstract":"

    Returns an array of the currently active ads.

    ","parent_name":"Ads"},"Protocols/Ads.html#/s:13THEOplayerSDK3AdsP14currentAdBreakAA0eF0_pSgvp":{"name":"currentAdBreak","abstract":"

    Returns the active AdBreak that contains the currently playing ad(s).

    ","parent_name":"Ads"},"Protocols/Ads.html#/s:13THEOplayerSDK3AdsP17scheduledAdBreaksSayAA0E5Break_pGvp":{"name":"scheduledAdBreaks","abstract":"

    Returns an array of AdBreaks that still need to be played.

    ","parent_name":"Ads"},"Protocols/Ads.html#/s:13THEOplayerSDK3AdsP09scheduledC0SayAA2Ad_pGvp":{"name":"scheduledAds","abstract":"

    Returns an array of ads that still need to be played.

    ","parent_name":"Ads"},"Protocols/Ads.html#/s:13THEOplayerSDK3AdsP8schedule13adDescriptionyAA02AdF0_p_tF":{"name":"schedule(adDescription:)","abstract":"

    Schedules an ad.

    ","parent_name":"Ads"},"Protocols/Ads.html#/s:13THEOplayerSDK3AdsP4skipyyF":{"name":"skip()","abstract":"

    Skips the current linear ad.

    ","parent_name":"Ads"},"Protocols/Ads.html#/s:13THEOplayerSDK3AdsP16addEventListener4type8listenerAA0eF0_pAA0E4TypeCyqd__G_yqd__ctAA0E8ProtocolRd__lF":{"name":"addEventListener(type:listener:)","abstract":"

    Adds the given event listener of the given ad event type.

    ","parent_name":"Ads"},"Protocols/Ads.html#/s:13THEOplayerSDK3AdsP19removeEventListener4type8listeneryAA0E4TypeCyqd__G_AA0eF0_ptAA0E8ProtocolRd__lF":{"name":"removeEventListener(type:listener:)","abstract":"

    Removes the given event listener of the given ad event type.

    ","parent_name":"Ads"},"Protocols/Ads.html#/s:13THEOplayerSDK3AdsP4omidAA4Omid_pvp":{"name":"omid","abstract":"

    The Open Measurement API.

    ","parent_name":"Ads"},"Protocols/Ads.html#/s:13THEOplayerSDK3AdsP29registerServerSideIntegration13integrationId0H7FactoryySS_AA0ef2AdG7Handler_pAA0efkG10Controller_pXEtF":{"name":"registerServerSideIntegration(integrationId:integrationFactory:)","abstract":"

    Register a custom advertisement integration. This allows you to integrate with third-party advertisement providers, and have them report their ads and ad-related events through the THEOplayer Ads API.

    ","parent_name":"Ads"},"Protocols/Ads.html":{"name":"Ads","abstract":"

    The Ads object helps you configure and control ads within THEOplayer.

    "},"Protocols/Ad.html":{"name":"Ad","abstract":"

    An Ad is an abstract object that represents a single ad, which is a creative in the VAST specification.

    "},"Protocols/LinearAd.html":{"name":"LinearAd","abstract":"

    Represents a linear ad in the VAST specification. It extends the properties of the Ad object.

    "},"Protocols/MediaFile.html":{"name":"MediaFile","abstract":"

    Represents the metadata of a media file with ad content.

    "},"Protocols/NonLinearAd.html":{"name":"NonLinearAd","abstract":"

    Represents a non-linear ad in the VAST specification. It extends the properties of the Ad object.

    "},"Protocols/AdBreak.html":{"name":"AdBreak","abstract":"

    An AdBreak is an object that represents a collection of ads that are scheduled at a certain time.

    "},"Protocols/CompanionAd.html":{"name":"CompanionAd","abstract":"

    Represents a companion ad which is displayed besides the player.

    "},"Classes/AdType.html":{"name":"AdType","abstract":"

    The type of Ad specifying whether it will interrupt the content or not.

    "},"Enums/AdIntegration.html":{"name":"AdIntegration","abstract":"

    The integration of the ad break.

    "},"Enums/AdIntegrationKind.html":{"name":"AdIntegrationKind","abstract":"

    The integration kind of the Ad.

    "},"Protocols/Omid.html":{"name":"Omid","abstract":"

    The Open Measurement Interface Definition API which can be used to configure the ad viewability measurements conforming to the OMID standards.

    "},"Classes/OmidFriendlyObstruction.html":{"name":"OmidFriendlyObstruction","abstract":"

    Represents a friendly obstruction instance for OMID.

    "},"Enums/OmidFriendlyObstructionPurpose.html":{"name":"OmidFriendlyObstructionPurpose","abstract":"

    The list of purposes for which an obstruction would be registered as friendly.

    "},"Protocols/GoogleImaAd.html#/s:13THEOplayerSDK11GoogleImaAdP8adSystemSSSgvp":{"name":"adSystem","abstract":"

    The source ad server information included in the ad response.

    ","parent_name":"GoogleImaAd"},"Protocols/GoogleImaAd.html#/s:13THEOplayerSDK11GoogleImaAdP10creativeIdSSSgvp":{"name":"creativeId","abstract":"

    The identifier of the selected creative for the ad.

    ","parent_name":"GoogleImaAd"},"Protocols/GoogleImaAd.html#/s:13THEOplayerSDK11GoogleImaAdP07wrapperE3IdsSaySSGvp":{"name":"wrapperAdIds","abstract":"

    The list of wrapper ad identifiers as specified in the VAST response.

    ","parent_name":"GoogleImaAd"},"Protocols/GoogleImaAd.html#/s:13THEOplayerSDK11GoogleImaAdP07wrapperE7SystemsSaySSGvp":{"name":"wrapperAdSystems","abstract":"

    The list of wrapper ad systems as specified in the VAST response.

    ","parent_name":"GoogleImaAd"},"Protocols/GoogleImaAd.html#/s:13THEOplayerSDK11GoogleImaAdP18wrapperCreativeIdsSaySSGvp":{"name":"wrapperCreativeIds","abstract":"

    The list of wrapper creative identifiers.

    ","parent_name":"GoogleImaAd"},"Protocols/GoogleImaAd.html#/s:13THEOplayerSDK11GoogleImaAdP16vastMediaBitrateSivp":{"name":"vastMediaBitrate","abstract":"

    The bitrate of the currently playing creative as listed in the VAST response.

    ","parent_name":"GoogleImaAd"},"Protocols/GoogleImaAd.html#/s:13THEOplayerSDK11GoogleImaAdP09universalE3IdsSayAA09UniversalE2Id_pGvp":{"name":"universalAdIds","abstract":"

    The list of universal ad ID information of the selected creative for the ad.

    ","parent_name":"GoogleImaAd"},"Protocols/GoogleImaAd.html#/s:13THEOplayerSDK11GoogleImaAdP21traffickingParametersSSvp":{"name":"traffickingParameters","abstract":"

    The String representing custom trafficking parameters from the VAST response.

    ","parent_name":"GoogleImaAd"},"Classes/GoogleImaAdDescription.html#/s:13THEOplayerSDK22GoogleImaAdDescriptionC11integrationAA0E11IntegrationOSgvp":{"name":"integration","abstract":"

    The ad Integration.

    ","parent_name":"GoogleImaAdDescription"},"Classes/GoogleImaAdDescription.html#/s:13THEOplayerSDK22GoogleImaAdDescriptionC3src10Foundation3URLVvp":{"name":"src","abstract":"

    Represents the source of the ad. The player will download the content available at the URL and will schedule the specified advertisement(s).

    ","parent_name":"GoogleImaAdDescription"},"Classes/GoogleImaAdDescription.html#/s:13THEOplayerSDK22GoogleImaAdDescriptionC10timeOffsetSSSgvp":{"name":"timeOffset","abstract":"

    Specifies the time when an ad should be played in the content video.

    ","parent_name":"GoogleImaAdDescription"},"Classes/GoogleImaAdDescription.html#/s:13THEOplayerSDK22GoogleImaAdDescriptionC3src10timeOffsetACSS_SSSgtcfc":{"name":"init(src:timeOffset:)","abstract":"

    Constructs a GoogleImaAdDescription.

    ","parent_name":"GoogleImaAdDescription"},"Protocols/AdDescription.html#/s:13THEOplayerSDK13AdDescriptionP11integrationAA0C11IntegrationOSgvp":{"name":"integration","abstract":"

    The integration type of the ad break.

    ","parent_name":"AdDescription"},"Protocols/AdDescription.html":{"name":"AdDescription","abstract":"

    Provides additional information for an advertisement.

    "},"Classes/GoogleImaAdDescription.html":{"name":"GoogleImaAdDescription","abstract":"

    An AdDescription object that will be added to the player when using the Google Ima ad integration.

    "},"Protocols/GoogleImaAd.html":{"name":"GoogleImaAd","abstract":"

    A GoogleImaAd is a concrete implementation of an Ad which represents a Google IMA ad.

    "},"Protocols/CustomServerSideAdInsertionConfiguration.html#/s:13THEOplayerSDK40CustomServerSideAdInsertionConfigurationP17customIntegrationSSvp":{"name":"customIntegration","abstract":"

    The ID of the custom SSAI integration.

    ","parent_name":"CustomServerSideAdInsertionConfiguration"},"Protocols/CustomServerSideAdInsertionConfiguration.html#/s:13THEOplayerSDK34ServerSideAdInsertionConfigurationP11integrationAA17SSAIIntegrationIdOvp":{"name":"integration","parent_name":"CustomServerSideAdInsertionConfiguration"},"Protocols/ServerSideAdIntegrationHandler.html#/s:13THEOplayerSDK30ServerSideAdIntegrationHandlerP9setSource6sourceSbAA0I11DescriptionC_tF":{"name":"setSource(source:)","abstract":"

    Handler which will be called when a new source is loaded into the player.

    ","parent_name":"ServerSideAdIntegrationHandler"},"Protocols/ServerSideAdIntegrationHandler.html#/s:13THEOplayerSDK30ServerSideAdIntegrationHandlerP04skipE02adSbAA0E0_p_tF":{"name":"skipAd(ad:)","abstract":"

    Handler which will be called when an ad is requested to be skipped.

    ","parent_name":"ServerSideAdIntegrationHandler"},"Protocols/ServerSideAdIntegrationHandler.html#/s:13THEOplayerSDK30ServerSideAdIntegrationHandlerP11resetSourceSbyF":{"name":"resetSource()","abstract":"

    Handler which will be called before a new source is loaded into the player, or before the player is destroyed.

    ","parent_name":"ServerSideAdIntegrationHandler"},"Protocols/ServerSideAdIntegrationHandler.html#/s:13THEOplayerSDK30ServerSideAdIntegrationHandlerP7destroyyyF":{"name":"destroy()","abstract":"

    Handler which will be called when the player is destroyed.

    ","parent_name":"ServerSideAdIntegrationHandler"},"Protocols/ServerSideAdIntegrationController.html#/s:13THEOplayerSDK33ServerSideAdIntegrationControllerP11integrationSSvp":{"name":"integration","abstract":"

    The identifier for this integration, as it was passed to Ads.registerServerSideIntegration.

    ","parent_name":"ServerSideAdIntegrationController"},"Protocols/ServerSideAdIntegrationController.html#/s:13THEOplayerSDK33ServerSideAdIntegrationControllerP3adsSayAA0E0_pGvp":{"name":"ads","abstract":"

    The scheduled ads managed by this integration.

    ","parent_name":"ServerSideAdIntegrationController"},"Protocols/ServerSideAdIntegrationController.html#/s:13THEOplayerSDK33ServerSideAdIntegrationControllerP8adBreaksSayAA0E5Break_pGvp":{"name":"adBreaks","abstract":"

    The scheduled ad breaks managed by this integration.

    ","parent_name":"ServerSideAdIntegrationController"},"Protocols/ServerSideAdIntegrationController.html#/s:13THEOplayerSDK33ServerSideAdIntegrationControllerP06createE06params7adBreakAA0E0_pAA0E4InitC_AA0eK0_pSgtF":{"name":"createAd(params:adBreak:)","abstract":"

    Create a new ad.

    ","parent_name":"ServerSideAdIntegrationController"},"Protocols/ServerSideAdIntegrationController.html#/s:13THEOplayerSDK33ServerSideAdIntegrationControllerP06updateE02ad6paramsyAA0E0_p_AA0E4InitCtF":{"name":"updateAd(ad:params:)","abstract":"

    Update the given ad.

    ","parent_name":"ServerSideAdIntegrationController"},"Protocols/ServerSideAdIntegrationController.html#/s:13THEOplayerSDK33ServerSideAdIntegrationControllerP06updateE8Progress2ad8progressyAA0E0_p_SdtF":{"name":"updateAdProgress(ad:progress:)","abstract":"

    Update the playback progression of the given ad.

    ","parent_name":"ServerSideAdIntegrationController"},"Protocols/ServerSideAdIntegrationController.html#/s:13THEOplayerSDK33ServerSideAdIntegrationControllerP05beginE02adyAA0E0_p_tF":{"name":"beginAd(ad:)","abstract":"

    Begin the given ad.

    ","parent_name":"ServerSideAdIntegrationController"},"Protocols/ServerSideAdIntegrationController.html#/s:13THEOplayerSDK33ServerSideAdIntegrationControllerP03endE02adyAA0E0_p_tF":{"name":"endAd(ad:)","abstract":"

    End the given ad.

    ","parent_name":"ServerSideAdIntegrationController"},"Protocols/ServerSideAdIntegrationController.html#/s:13THEOplayerSDK33ServerSideAdIntegrationControllerP04skipE02adyAA0E0_p_tF":{"name":"skipAd(ad:)","abstract":"

    Skip the given ad.

    ","parent_name":"ServerSideAdIntegrationController"},"Protocols/ServerSideAdIntegrationController.html#/s:13THEOplayerSDK33ServerSideAdIntegrationControllerP06removeE02adyAA0E0_p_tF":{"name":"removeAd(ad:)","abstract":"

    Remove the given ad.

    ","parent_name":"ServerSideAdIntegrationController"},"Protocols/ServerSideAdIntegrationController.html#/s:13THEOplayerSDK33ServerSideAdIntegrationControllerP06createE5Break6paramsAA0eI0_pAA0eI4InitC_tF":{"name":"createAdBreak(params:)","abstract":"

    Create a new ad break.

    ","parent_name":"ServerSideAdIntegrationController"},"Protocols/ServerSideAdIntegrationController.html#/s:13THEOplayerSDK33ServerSideAdIntegrationControllerP06updateE5Break02adI06paramsyAA0eI0_p_AA0eI4InitCtF":{"name":"updateAdBreak(adBreak:params:)","abstract":"

    Update the given ad break.

    ","parent_name":"ServerSideAdIntegrationController"},"Protocols/ServerSideAdIntegrationController.html#/s:13THEOplayerSDK33ServerSideAdIntegrationControllerP06removeE5Break02adI0yAA0eI0_p_tF":{"name":"removeAdBreak(adBreak:)","abstract":"

    Remove the given ad break and all of its ads.

    ","parent_name":"ServerSideAdIntegrationController"},"Protocols/ServerSideAdIntegrationController.html#/s:13THEOplayerSDK33ServerSideAdIntegrationControllerP12removeAllAdsyyF":{"name":"removeAllAds()","abstract":"

    Remove all ads and ad breaks.

    ","parent_name":"ServerSideAdIntegrationController"},"Protocols/ServerSideAdIntegrationController.html#/s:13THEOplayerSDK33ServerSideAdIntegrationControllerP5errorADys5Error_p_tF":{"name":"error(error:)","abstract":"

    Fire an AdsEventTypes.AD_ERROR event on the player’s Ads interface.

    ","parent_name":"ServerSideAdIntegrationController"},"Protocols/ServerSideAdIntegrationController.html#/s:13THEOplayerSDK33ServerSideAdIntegrationControllerP10fatalError5error4codeys0I0_p_AA13THEOErrorCodeOSgtF":{"name":"fatalError(error:code:)","abstract":"

    Fire a fatal PlayerEventMap.ERROR event on the player.

    ","parent_name":"ServerSideAdIntegrationController"},"Enums/StreamType.html#/s:13THEOplayerSDK10StreamTypeO3vodyA2CmF":{"name":"vod","abstract":"

    A video on demand.

    ","parent_name":"StreamType"},"Enums/StreamType.html#/s:13THEOplayerSDK10StreamTypeO4liveyA2CmF":{"name":"live","abstract":"

    A Live stream.

    ","parent_name":"StreamType"},"Enums/StreamType.html#/s:13THEOplayerSDK10StreamTypeO9_rawValueSSvp":{"name":"_rawValue","abstract":"

    The raw value of type String.

    ","parent_name":"StreamType"},"Classes/GoogleDAIVodConfiguration.html#/s:13THEOplayerSDK25GoogleDAIVodConfigurationC15contentSourceIDSSvp":{"name":"contentSourceID","abstract":"

    The identifier for the publisher content for on-demand streams.

    ","parent_name":"GoogleDAIVodConfiguration"},"Classes/GoogleDAIVodConfiguration.html#/s:13THEOplayerSDK25GoogleDAIVodConfigurationC7videoIDSSvp":{"name":"videoID","abstract":"

    The identifier for the video content source for on-demand streams.

    ","parent_name":"GoogleDAIVodConfiguration"},"Classes/GoogleDAIVodConfiguration.html#/s:13THEOplayerSDK25GoogleDAIVodConfigurationC7videoID013contentSourceG06apiKey9authToken021streamActivityMonitorG015adTagParametersACSS_S3SSgAJSDyS2SGSgtcfc":{"name":"init(videoID:contentSourceID:apiKey:authToken:streamActivityMonitorID:adTagParameters:)","abstract":"

    The builder for the Google DAI configuration.

    ","parent_name":"GoogleDAIVodConfiguration"},"Classes/GoogleDAITypedSource.html#/s:13THEOplayerSDK20GoogleDAITypedSourceC4ssaiAcA0C16DAIConfigurationC_tcfc":{"name":"init(ssai:)","abstract":"

    Constructs a GoogleDAITypedSource.

    ","parent_name":"GoogleDAITypedSource"},"Classes/GoogleDAITypedSource.html#/s:13THEOplayerSDK20GoogleDAITypedSourceC4ssai3drmAcA0C16DAIConfigurationC_AA16DRMConfiguration_pSgtcfc":{"name":"init(ssai:drm:)","abstract":"

    Constructs a GoogleDAITypedSource with a DRM configuration.

    ","parent_name":"GoogleDAITypedSource"},"Classes/GoogleDAILiveConfiguration.html#/s:13THEOplayerSDK26GoogleDAILiveConfigurationC8assetKeySSvp":{"name":"assetKey","abstract":"

    The identifier for the video content source for live streams.

    ","parent_name":"GoogleDAILiveConfiguration"},"Classes/GoogleDAILiveConfiguration.html#/s:13THEOplayerSDK26GoogleDAILiveConfigurationC8assetKey03apiG09authToken23streamActivityMonitorID15adTagParametersACSS_S2SSgAISDyS2SGSgtcfc":{"name":"init(assetKey:apiKey:authToken:streamActivityMonitorID:adTagParameters:)","abstract":"

    The builder for the Google DAI live configuration.

    ","parent_name":"GoogleDAILiveConfiguration"},"Classes/GoogleDAIConfiguration.html#/s:13THEOplayerSDK22GoogleDAIConfigurationC11integrationAA17SSAIIntegrationIdOvp":{"name":"integration","abstract":"

    The identifier for the SSAI pre-integration, defaults to GoogleDAISSAIIntegrationID.

    ","parent_name":"GoogleDAIConfiguration"},"Classes/GoogleDAIConfiguration.html#/s:13THEOplayerSDK22GoogleDAIConfigurationC16availabilityTypeAA06StreamF0Ovp":{"name":"availabilityType","abstract":"

    The type of the requested stream.

    ","parent_name":"GoogleDAIConfiguration"},"Classes/GoogleDAIConfiguration.html#/s:13THEOplayerSDK22GoogleDAIConfigurationC6apiKeySSvp":{"name":"apiKey","abstract":"

    The API key for the stream request.

    ","parent_name":"GoogleDAIConfiguration"},"Classes/GoogleDAIConfiguration.html#/s:13THEOplayerSDK22GoogleDAIConfigurationC9authTokenSSSgvp":{"name":"authToken","abstract":"

    The authorization token for the stream request.

    ","parent_name":"GoogleDAIConfiguration"},"Classes/GoogleDAIConfiguration.html#/s:13THEOplayerSDK22GoogleDAIConfigurationC23streamActivityMonitorIDSSSgvp":{"name":"streamActivityMonitorID","abstract":"

    The identifier for a stream activity monitor session.

    ","parent_name":"GoogleDAIConfiguration"},"Classes/GoogleDAIConfiguration.html#/s:13THEOplayerSDK22GoogleDAIConfigurationC15adTagParametersSDyS2SGSgvp":{"name":"adTagParameters","abstract":"

    The ad tag parameters added to stream request.

    ","parent_name":"GoogleDAIConfiguration"},"Enums/SSAIIntegrationId.html#/s:13THEOplayerSDK17SSAIIntegrationIdO26GoogleDAISSAIIntegrationIDyA2CmF":{"name":"GoogleDAISSAIIntegrationID","abstract":"

    The configuration with this identifier is a GoogleDaiConfiguration.

    ","parent_name":"SSAIIntegrationId"},"Enums/SSAIIntegrationId.html#/s:13THEOplayerSDK17SSAIIntegrationIdO06CustomC2IDyA2CmF":{"name":"CustomSSAIIntegrationID","abstract":"

    The configuration with this identifier is a custom ServerSideAdInsertionConfiguration.

    ","parent_name":"SSAIIntegrationId"},"Enums/SSAIIntegrationId.html#/s:13THEOplayerSDK17SSAIIntegrationIdO9_rawValueSSvp":{"name":"_rawValue","abstract":"

    The raw value of type String.

    ","parent_name":"SSAIIntegrationId"},"Protocols/ServerSideAdInsertionConfiguration.html#/s:13THEOplayerSDK34ServerSideAdInsertionConfigurationP11integrationAA17SSAIIntegrationIdOvp":{"name":"integration","abstract":"

    Specifies an identifier for a supported SSAI integration.

    ","parent_name":"ServerSideAdInsertionConfiguration"},"Protocols/ServerSideAdInsertionConfiguration.html":{"name":"ServerSideAdInsertionConfiguration","abstract":"

    The ServerSideAdInsertionConfiguration protocol which specifies information to play a stream with server-side-inserted ads.

    "},"Enums/SSAIIntegrationId.html":{"name":"SSAIIntegrationId","abstract":"

    The SSAI integration identifier.

    "},"Classes/GoogleDAIConfiguration.html":{"name":"GoogleDAIConfiguration","abstract":"

    The Google DAI configuration.

    "},"Classes/GoogleDAILiveConfiguration.html":{"name":"GoogleDAILiveConfiguration","abstract":"

    Represents a configuration for server-side ad insertion with the Google DAI pre-integration for live streams.

    "},"Classes/GoogleDAITypedSource.html":{"name":"GoogleDAITypedSource","abstract":"

    A Google DAI typed source.

    "},"Classes/GoogleDAIVodConfiguration.html":{"name":"GoogleDAIVodConfiguration","abstract":"

    Represents a configuration for server-side ad insertion with the Google DAI pre-integration for vod streams.

    "},"Enums/StreamType.html":{"name":"StreamType","abstract":"

    The enum for Stream type, can either be live or vod.

    "},"Protocols/ServerSideAdIntegrationController.html":{"name":"ServerSideAdIntegrationController","abstract":"

    A controller to be used by your ServerSideAdIntegrationHandler to update the state of your custom server-side ad integration.

    "},"Protocols/ServerSideAdIntegrationHandler.html":{"name":"ServerSideAdIntegrationHandler","abstract":"

    A handler for a server-side ad integration.

    "},"Protocols/CustomServerSideAdInsertionConfiguration.html":{"name":"CustomServerSideAdInsertionConfiguration","abstract":"

    The configuration for a custom server-side ad insertion (SSAI) integration.

    "},"Protocols/ContentProtectionError.html#/s:13THEOplayerSDK22ContentProtectionErrorP3urlSSSgvp":{"name":"url","abstract":"

    The URL that was used in the request.

    ","parent_name":"ContentProtectionError"},"Protocols/ContentProtectionError.html#/s:13THEOplayerSDK22ContentProtectionErrorP6statusSiSgvp":{"name":"status","abstract":"

    The status code from the HTTP response.

    ","parent_name":"ContentProtectionError"},"Protocols/ContentProtectionError.html#/s:13THEOplayerSDK22ContentProtectionErrorP10statusTextSSSgvp":{"name":"statusText","abstract":"

    The status text from the HTTP response.

    ","parent_name":"ContentProtectionError"},"Protocols/ContentProtectionError.html#/s:13THEOplayerSDK22ContentProtectionErrorP8responseSSSgvp":{"name":"response","abstract":"

    The body contained in the HTTP response.

    ","parent_name":"ContentProtectionError"},"Protocols/ContentProtectionError.html#/s:13THEOplayerSDK22ContentProtectionErrorP10systemCodeSiSgvp":{"name":"systemCode","abstract":"

    The internal error code from the CDM.

    ","parent_name":"ContentProtectionError"},"Enums/LicenseType.html#/s:13THEOplayerSDK11LicenseTypeO9_rawValueSSvp":{"name":"_rawValue","abstract":"

    The raw value of type String.

    ","parent_name":"LicenseType"},"Enums/DRMIntegration.html#/s:13THEOplayerSDK14DRMIntegrationO9_rawValueSSvp":{"name":"_rawValue","abstract":"

    The raw value of type String.

    ","parent_name":"DRMIntegration"},"Classes/KeySystemConfiguration.html#/s:13THEOplayerSDK22KeySystemConfigurationC21licenseAcquisitionURL10Foundation0H0VSgvp":{"name":"licenseAcquisitionURL","abstract":"

    Specifies the URL of the licensing server.

    ","parent_name":"KeySystemConfiguration"},"Classes/KeySystemConfiguration.html#/s:13THEOplayerSDK22KeySystemConfigurationC14certificateURL10Foundation0G0VSgvp":{"name":"certificateURL","abstract":"

    Specifies the URL of the FairPlay certificate server.

    ","parent_name":"KeySystemConfiguration"},"Classes/KeySystemConfiguration.html#/s:13THEOplayerSDK22KeySystemConfigurationC11licenseTypeAA07LicenseG0OSgvp":{"name":"licenseType","abstract":"

    Specifies the license type.

    ","parent_name":"KeySystemConfiguration"},"Classes/KeySystemConfiguration.html#/s:13THEOplayerSDK22KeySystemConfigurationC7headersSDyS2SGSgvp":{"name":"headers","abstract":"

    Optionally specifies request headers that should be sent with any license requests to the DRM server. This is a plain object where the keys of the object are header names and corresponding values are header values.

    ","parent_name":"KeySystemConfiguration"},"Classes/KeySystemConfiguration.html#/s:13THEOplayerSDK22KeySystemConfigurationC15queryParametersSDyS2SGSgvp":{"name":"queryParameters","abstract":"

    Record of query parameters for the licence acquisition request. Each entry contains a query parameter name with associated value.

    ","parent_name":"KeySystemConfiguration"},"Classes/KeySystemConfiguration.html#/s:13THEOplayerSDK22KeySystemConfigurationC21licenseAcquisitionURL011certificateH00F4Type7headers15queryParametersACSSSg_AiA07LicenseJ0OSgSDyS2SGSgANtcfc":{"name":"init(licenseAcquisitionURL:certificateURL:licenseType:headers:queryParameters:)","abstract":"

    Constructs a KeySystemConfiguration.

    ","parent_name":"KeySystemConfiguration"},"Classes/XstreamDRMConfiguration.html#/s:13THEOplayerSDK23XstreamDRMConfigurationC20ticketAcquisitionURLSSvp":{"name":"ticketAcquisitionURL","abstract":"

    The required ticket acquisition URL.

    ","parent_name":"XstreamDRMConfiguration"},"Classes/XstreamDRMConfiguration.html#/s:13THEOplayerSDK23XstreamDRMConfigurationC9sessionIdSSSgvp":{"name":"sessionId","abstract":"

    The required session id for the ticket server.

    ","parent_name":"XstreamDRMConfiguration"},"Classes/XstreamDRMConfiguration.html#/s:13THEOplayerSDK23XstreamDRMConfigurationC8streamIdSSvp":{"name":"streamId","abstract":"

    The required stream id for the ticket server.

    ","parent_name":"XstreamDRMConfiguration"},"Classes/XstreamDRMConfiguration.html#/s:13THEOplayerSDK23XstreamDRMConfigurationC20ticketAcquisitionURL8streamId07sessionI023keySystemConfigurationsACSS_S2SSgAA03KeyL23ConfigurationCollectionCtcfc":{"name":"init(ticketAcquisitionURL:streamId:sessionId:keySystemConfigurations:)","abstract":"

    Constructs a Xstream DRMConfiguration.

    ","parent_name":"XstreamDRMConfiguration"},"Classes/VimondDRMConfiguration.html#/s:13THEOplayerSDK22VimondDRMConfigurationC23keySystemConfigurationsAcA03KeyF23ConfigurationCollectionC_tcfc":{"name":"init(keySystemConfigurations:)","abstract":"

    Constructs a Vimond DRMConfiguration.

    ","parent_name":"VimondDRMConfiguration"},"Classes/VerimatrixDRMConfiguration.html#/s:13THEOplayerSDK26VerimatrixDRMConfigurationC23keySystemConfigurationsAcA03KeyF23ConfigurationCollectionC_tcfc":{"name":"init(keySystemConfigurations:)","abstract":"

    Constructs a VERIMATRIX DRMConfiguration.

    ","parent_name":"VerimatrixDRMConfiguration"},"Classes/UplynkDRMConfiguration.html#/s:13THEOplayerSDK22UplynkDRMConfigurationC23keySystemConfigurationsAcA03KeyF23ConfigurationCollectionC_tcfc":{"name":"init(keySystemConfigurations:)","abstract":"

    Constructs a EZDRM DRMConfiguration.

    ","parent_name":"UplynkDRMConfiguration"},"Classes/KeyOSDRMConfiguration.html#/s:13THEOplayerSDK21KeyOSDRMConfigurationC10customdataSSSgvp":{"name":"customdata","abstract":"

    The KeyOS custom data.

    ","parent_name":"KeyOSDRMConfiguration"},"Classes/KeyOSDRMConfiguration.html#/s:13THEOplayerSDK21KeyOSDRMConfigurationC10customdata23keySystemConfigurationsACSSSg_AA0cG23ConfigurationCollectionCtcfc":{"name":"init(customdata:keySystemConfigurations:)","abstract":"

    Constructs a KeyOS DRMConfiguration.

    ","parent_name":"KeyOSDRMConfiguration"},"Classes/ComcastDRMConfiguration.html#/s:13THEOplayerSDK23ComcastDRMConfigurationC10releasePidSSvp":{"name":"releasePid","abstract":"

    The PID of the media for which the license is being requested.

    ","parent_name":"ComcastDRMConfiguration"},"Classes/ComcastDRMConfiguration.html#/s:13THEOplayerSDK23ComcastDRMConfigurationC5tokenSSvp":{"name":"token","abstract":"

    The Comcast Authorization Token.

    ","parent_name":"ComcastDRMConfiguration"},"Classes/ComcastDRMConfiguration.html#/s:13THEOplayerSDK23ComcastDRMConfigurationC9accountIdSSvp":{"name":"accountId","abstract":"

    The identifier of the Comcast account.

    ","parent_name":"ComcastDRMConfiguration"},"Classes/ComcastDRMConfiguration.html#/s:13THEOplayerSDK23ComcastDRMConfigurationC10releasePid5token9accountId23keySystemConfigurationsACSS_S2SAA03KeyK23ConfigurationCollectionCtcfc":{"name":"init(releasePid:token:accountId:keySystemConfigurations:)","abstract":"

    Constructs an Comcast DRM Configuration.

    ","parent_name":"ComcastDRMConfiguration"},"Classes/AxinomDRMConfiguration.html#/s:13THEOplayerSDK22AxinomDRMConfigurationC5tokenSSvp":{"name":"token","abstract":"

    The Axinom token.

    ","parent_name":"AxinomDRMConfiguration"},"Classes/AxinomDRMConfiguration.html#/s:13THEOplayerSDK22AxinomDRMConfigurationC5token23keySystemConfigurationsACSS_AA03KeyG23ConfigurationCollectionCtcfc":{"name":"init(token:keySystemConfigurations:)","abstract":"

    Constructs a Axinom DRMConfiguration.

    ","parent_name":"AxinomDRMConfiguration"},"Classes/WidevineDRMConfiguration.html#/s:13THEOplayerSDK24WidevineDRMConfigurationC8widevineAA22KeySystemConfigurationCvp":{"name":"widevine","abstract":"

    The Widevine KeySystemConfiguration.

    ","parent_name":"WidevineDRMConfiguration"},"Classes/WidevineDRMConfiguration.html#/s:13THEOplayerSDK16DRMConfigurationP11integrationAA14DRMIntegrationOSgvp":{"name":"integration","parent_name":"WidevineDRMConfiguration"},"Classes/WidevineDRMConfiguration.html#/s:13THEOplayerSDK16DRMConfigurationP7headersSaySDyS2SGGSgvp":{"name":"headers","parent_name":"WidevineDRMConfiguration"},"Classes/WidevineDRMConfiguration.html#/s:13THEOplayerSDK16DRMConfigurationP21integrationParametersSDySSypGSgvp":{"name":"integrationParameters","parent_name":"WidevineDRMConfiguration"},"Classes/WidevineDRMConfiguration.html#/s:13THEOplayerSDK16DRMConfigurationP19customIntegrationIdSSSgvp":{"name":"customIntegrationId","parent_name":"WidevineDRMConfiguration"},"Classes/WidevineDRMConfiguration.html#/s:13THEOplayerSDK24WidevineDRMConfigurationC15queryParametersSDyS2SGSgvp":{"name":"queryParameters","abstract":"

    Record of query parameters for the licence acquisition request. Each entry contains a query parameter name with associated value.

    ","parent_name":"WidevineDRMConfiguration"},"Classes/WidevineDRMConfiguration.html#/s:13THEOplayerSDK24WidevineDRMConfigurationC19customIntegrationId21licenseAcquisitionURL7headers21integrationParameters05queryM0ACSSSg_AISaySDyS2SGGSgSDySSypGSgAJSgtcfc":{"name":"init(customIntegrationId:licenseAcquisitionURL:headers:integrationParameters:queryParameters:)","abstract":"

    Constructs a Widevine DRM configuration object.

    ","parent_name":"WidevineDRMConfiguration"},"Classes/VudrmDRMConfiguration.html#/s:13THEOplayerSDK21VudrmDRMConfigurationC5tokenSSvp":{"name":"token","abstract":"

    The VUDRM token.

    ","parent_name":"VudrmDRMConfiguration"},"Classes/VudrmDRMConfiguration.html#/s:13THEOplayerSDK21VudrmDRMConfigurationC5token23keySystemConfigurationsACSS_AA03KeyG23ConfigurationCollectionCtcfc":{"name":"init(token:keySystemConfigurations:)","abstract":"

    Constructs a VUDRM DRMConfiguration.

    ","parent_name":"VudrmDRMConfiguration"},"Classes/IrdetoDRMConfiguration.html#/s:13THEOplayerSDK22IrdetoDRMConfigurationC5crmId07accountF007contentF003keyF0011applicationF007sessionF06ticket0I20SystemConfigurationsACSS_S5SSgAlA03KeyM23ConfigurationCollectionCtcfc":{"name":"init(crmId:accountId:contentId:keyId:applicationId:sessionId:ticket:keySystemConfigurations:)","abstract":"

    Constructs an Irdeto DRMConfiguration.

    ","parent_name":"IrdetoDRMConfiguration"},"Classes/EzdrmDRMConfiguration.html#/s:13THEOplayerSDK21EzdrmDRMConfigurationC23keySystemConfigurationsAcA03KeyF23ConfigurationCollectionC_tcfc":{"name":"init(keySystemConfigurations:)","abstract":"

    Constructs a EZDRM DRMConfiguration.

    ","parent_name":"EzdrmDRMConfiguration"},"Classes/DRMTodayDRMConfiguration.html#/s:13THEOplayerSDK24DRMTodayDRMConfigurationC5tokenSSSgvp":{"name":"token","abstract":"

    The authentication token.

    ","parent_name":"DRMTodayDRMConfiguration"},"Classes/DRMTodayDRMConfiguration.html#/s:13THEOplayerSDK24DRMTodayDRMConfigurationC6userIdSSSgvp":{"name":"userId","abstract":"

    The user ID.

    ","parent_name":"DRMTodayDRMConfiguration"},"Classes/DRMTodayDRMConfiguration.html#/s:13THEOplayerSDK24DRMTodayDRMConfigurationC9sessionIdSSSgvp":{"name":"sessionId","abstract":"

    The session ID.

    ","parent_name":"DRMTodayDRMConfiguration"},"Classes/DRMTodayDRMConfiguration.html#/s:13THEOplayerSDK24DRMTodayDRMConfigurationC8merchantSSSgvp":{"name":"merchant","abstract":"

    The merchant ID.

    ","parent_name":"DRMTodayDRMConfiguration"},"Classes/DRMTodayDRMConfiguration.html#/s:13THEOplayerSDK24DRMTodayDRMConfigurationC5token6userId07sessionG08merchant23keySystemConfigurationsACSSSg_A3iA03KeyK23ConfigurationCollectionCtcfc":{"name":"init(token:userId:sessionId:merchant:keySystemConfigurations:)","abstract":"

    Constructs a DRMToday DRMConfiguration.

    ","parent_name":"DRMTodayDRMConfiguration"},"Classes/AzureDRMConfiguration.html#/s:13THEOplayerSDK21AzureDRMConfigurationC5tokenSSvp":{"name":"token","abstract":"

    The Azure token.

    ","parent_name":"AzureDRMConfiguration"},"Classes/AzureDRMConfiguration.html#/s:13THEOplayerSDK21AzureDRMConfigurationC5token23keySystemConfigurationsACSS_AA03KeyG23ConfigurationCollectionCtcfc":{"name":"init(token:keySystemConfigurations:)","abstract":"

    Constructs a Azure DRMConfiguration.

    ","parent_name":"AzureDRMConfiguration"},"Classes/FairPlayDRMConfiguration.html#/s:13THEOplayerSDK24FairPlayDRMConfigurationC8fairplayAA22KeySystemConfigurationCvp":{"name":"fairplay","abstract":"

    The FairPlay KeySystemConfiguration.

    ","parent_name":"FairPlayDRMConfiguration"},"Classes/FairPlayDRMConfiguration.html#/s:13THEOplayerSDK24FairPlayDRMConfigurationC11integrationAA14DRMIntegrationOSgvp":{"name":"integration","abstract":"

    The identifier of the DRM integration.

    ","parent_name":"FairPlayDRMConfiguration"},"Classes/FairPlayDRMConfiguration.html#/s:13THEOplayerSDK24FairPlayDRMConfigurationC7headersSaySDyS2SGGSgvp":{"name":"headers","abstract":"

    The FairPlay headers.

    ","parent_name":"FairPlayDRMConfiguration"},"Classes/FairPlayDRMConfiguration.html#/s:13THEOplayerSDK24FairPlayDRMConfigurationC21integrationParametersSDySSypGSgvp":{"name":"integrationParameters","abstract":"

    The FairPlay integration parameters.

    ","parent_name":"FairPlayDRMConfiguration"},"Classes/FairPlayDRMConfiguration.html#/s:13THEOplayerSDK24FairPlayDRMConfigurationC19customIntegrationIdSSSgvp":{"name":"customIntegrationId","abstract":"

    The custom integration identifier.

    ","parent_name":"FairPlayDRMConfiguration"},"Classes/FairPlayDRMConfiguration.html#/s:13THEOplayerSDK24FairPlayDRMConfigurationC15queryParametersSDyS2SGSgvp":{"name":"queryParameters","abstract":"

    Record of query parameters for the licence acquisition request. Each entry contains a query parameter name with associated value.

    ","parent_name":"FairPlayDRMConfiguration"},"Classes/FairPlayDRMConfiguration.html#/s:13THEOplayerSDK24FairPlayDRMConfigurationC19customIntegrationId21licenseAcquisitionURL011certificateK07headers0I4Type21integrationParameters05queryP0ACSSSg_A2KSaySDyS2SGGSgAA07LicenseN0OSgSDySSypGSgALSgtcfc":{"name":"init(customIntegrationId:licenseAcquisitionURL:certificateURL:headers:licenseType:integrationParameters:queryParameters:)","abstract":"

    Constructs a FairPlay DRMConfiguration.

    ","parent_name":"FairPlayDRMConfiguration"},"Protocols/DRMConfiguration.html#/s:13THEOplayerSDK16DRMConfigurationP7headersSaySDyS2SGGSgvp":{"name":"headers","abstract":"

    Optionally specifies request headers that should be sent with any license requests to the DRM server. This is a plain object where the keys of the object are header names and corresponding values are header values.

    ","parent_name":"DRMConfiguration"},"Protocols/DRMConfiguration.html#/s:13THEOplayerSDK16DRMConfigurationP21integrationParametersSDySSypGSgvp":{"name":"integrationParameters","abstract":"

    An object of key/value pairs which can be used to pass in specific parameters related to a source into a ContentProtectionIntegration.

    ","parent_name":"DRMConfiguration"},"Protocols/DRMConfiguration.html#/s:13THEOplayerSDK16DRMConfigurationP11integrationAA14DRMIntegrationOSgvp":{"name":"integration","abstract":"

    DRM integration.

    ","parent_name":"DRMConfiguration"},"Protocols/DRMConfiguration.html#/s:13THEOplayerSDK16DRMConfigurationP19customIntegrationIdSSSgvp":{"name":"customIntegrationId","abstract":"

    The custom integration identifier of the DRM integration.

    ","parent_name":"DRMConfiguration"},"Protocols/DRMConfiguration.html#/s:13THEOplayerSDK16DRMConfigurationP15queryParametersSDyS2SGSgvp":{"name":"queryParameters","abstract":"

    Record of query parameters for the licence acquisition request. Each entry contains a query parameter name with associated value.

    ","parent_name":"DRMConfiguration"},"Content%20Protection.html#/s:13THEOplayerSDK32FairPlayDRMConfigurationProtocolP":{"name":"FairPlayDRMConfigurationProtocol","abstract":"

    The FairPlay DRM configuration.

    "},"Content%20Protection.html#/s:13THEOplayerSDK32WidevineDRMConfigurationProtocolP":{"name":"WidevineDRMConfigurationProtocol","abstract":"

    The Widevine DRM configuration.

    "},"Protocols/DRMConfiguration.html":{"name":"DRMConfiguration","abstract":"

    The DRMConfiguration object provides a set of DRM parameters for DRM streaming.

    "},"Classes/FairPlayDRMConfiguration.html":{"name":"FairPlayDRMConfiguration","abstract":"

    The FairPlayDRMConfiguration object provides a set of DRM parameters for FairPlay DRM streaming.

    "},"Classes/AzureDRMConfiguration.html":{"name":"AzureDRMConfiguration","abstract":"

    The Azure DRMConfiguration object provides a set of DRM parameters for FairPlay DRM streaming with Azure integration.

    "},"Classes/DRMTodayDRMConfiguration.html":{"name":"DRMTodayDRMConfiguration","abstract":"

    The DRMtoday DRMConfiguration object provides a set of DRM parameters for FairPlay DRM streaming with DRMtoday integration.

    "},"Classes/EzdrmDRMConfiguration.html":{"name":"EzdrmDRMConfiguration","abstract":"

    The EZDRM DRMConfiguration object provides a set of DRM parameters for FairPlay DRM streaming with EZDRM integration.

    "},"Classes/IrdetoDRMConfiguration.html":{"name":"IrdetoDRMConfiguration","abstract":"

    The Irdeto DRMConfiguration object provides a set of DRM parameters for FairPlay DRM streaming with Irdeto integration.

    "},"Classes/VudrmDRMConfiguration.html":{"name":"VudrmDRMConfiguration","abstract":"

    The VUDRM DRMConfiguration object provides a set of DRM parameters for FairPlay DRM streaming with VUDRM integration.

    "},"Classes/WidevineDRMConfiguration.html":{"name":"WidevineDRMConfiguration","abstract":"

    The WidevineDRMConfiguration object provides a set of DRM parameters for Widevine DRM streaming.

    "},"Classes/AxinomDRMConfiguration.html":{"name":"AxinomDRMConfiguration","abstract":"

    The AxinomDRMConfiguration object provides a set of DRM parameters for FairPlay DRM streaming with Axinom integration.

    "},"Classes/ComcastDRMConfiguration.html":{"name":"ComcastDRMConfiguration","abstract":"

    Represents Comcast MPX DRM Configuration.

    "},"Classes/KeyOSDRMConfiguration.html":{"name":"KeyOSDRMConfiguration","abstract":"

    The KeyOS DRMConfiguration object provides a set of DRM parameters for FairPlay DRM streaming with KeyOS integration.

    "},"Classes/UplynkDRMConfiguration.html":{"name":"UplynkDRMConfiguration","abstract":"

    The Uplynk DRMConfiguration object provides a set of DRM parameters for FairPlay DRM streaming with Uplynk integration.

    "},"Classes/VerimatrixDRMConfiguration.html":{"name":"VerimatrixDRMConfiguration","abstract":"

    The VERIMATRIX DRMConfiguration object provides a set of DRM parameters for FairPlay DRM streaming with VERIMATRIX integration.

    "},"Classes/VimondDRMConfiguration.html":{"name":"VimondDRMConfiguration","abstract":"

    Describes the configuration of the Vimond DRM integration.

    "},"Classes/XstreamDRMConfiguration.html":{"name":"XstreamDRMConfiguration","abstract":"

    The Xstream DRMConfiguration object provides a set of DRM parameters for FairPlay DRM streaming with Xstream integration.

    "},"Classes/KeySystemConfiguration.html":{"name":"KeySystemConfiguration","abstract":"

    Key system configuration.

    "},"Enums/DRMIntegration.html":{"name":"DRMIntegration","abstract":"

    The identifier for the DRM integration.

    "},"Enums/LicenseType.html":{"name":"LicenseType","abstract":"

    The LicenseTypes for the DRM configuration.

    "},"Protocols/ContentProtectionError.html":{"name":"ContentProtectionError","abstract":"

    An error related to content protection.

    "},"Classes/MetadataDescription.html#/s:13THEOplayerSDK19MetadataDescriptionC12metadataKeysSDySSypGSgvp":{"name":"metadataKeys","abstract":"

    A dictionary of metadata.

    ","parent_name":"MetadataDescription"},"Classes/MetadataDescription.html#/s:13THEOplayerSDK19MetadataDescriptionC5titleSSSgvp":{"name":"title","abstract":"

    The title of the content.

    ","parent_name":"MetadataDescription"},"Classes/MetadataDescription.html#/s:13THEOplayerSDK19MetadataDescriptionC12metadataKeys5titleACSDySSypGSg_SSSgtcfc":{"name":"init(metadataKeys:title:)","abstract":"

    Constructs a MetadataDescription object.

    ","parent_name":"MetadataDescription"},"Classes/TextTrackDescription.html#/s:13THEOplayerSDK20TextTrackDescriptionC9isDefaultSbSgvp":{"name":"isDefault","abstract":"

    Whether the track should be enabled by default.

    ","parent_name":"TextTrackDescription"},"Classes/TextTrackDescription.html#/s:13THEOplayerSDK20TextTrackDescriptionC4kindAA0cD4KindOSgvp":{"name":"kind","abstract":"

    A TextTrackKind object specifying what kind of text track this is.

    ","parent_name":"TextTrackDescription"},"Classes/TextTrackDescription.html#/s:13THEOplayerSDK20TextTrackDescriptionC3src10Foundation3URLVvp":{"name":"src","abstract":"

    Specifies a source URL where the text track can be downloaded from.

    ","parent_name":"TextTrackDescription"},"Classes/TextTrackDescription.html#/s:13THEOplayerSDK20TextTrackDescriptionC7srclangSSvp":{"name":"srclang","abstract":"

    Specifies the main language of the track.

    ","parent_name":"TextTrackDescription"},"Classes/TextTrackDescription.html#/s:13THEOplayerSDK20TextTrackDescriptionC5labelSSSgvp":{"name":"label","abstract":"

    Specifies a label for the track which can be used to identify it.

    ","parent_name":"TextTrackDescription"},"Classes/TextTrackDescription.html#/s:13THEOplayerSDK20TextTrackDescriptionC6formatAA0cD6FormatOSgvp":{"name":"format","abstract":"

    A TextTrackFormat object specifying what format of text track this is.

    ","parent_name":"TextTrackDescription"},"Classes/TextTrackDescription.html#/s:13THEOplayerSDK20TextTrackDescriptionC3src7srclang9isDefault4kind5label6formatACSS_SSSbSgAA0cD4KindOSgSSSgAA0cD6FormatOSgtcfc":{"name":"init(src:srclang:isDefault:kind:label:format:)","abstract":"

    Constructs a TextTrackDescription.

    ","parent_name":"TextTrackDescription"},"Classes/TextTrackDescription.html#/s:SE6encode2toys7Encoder_p_tKF":{"name":"encode(to:)","parent_name":"TextTrackDescription"},"Classes/TypedSource.html#/s:13THEOplayerSDK11TypedSourceC3srcSSvp":{"name":"src","abstract":"

    The ‘src’ property represents the source URL of the manifest or video file to be played.

    ","parent_name":"TypedSource"},"Classes/TypedSource.html#/s:13THEOplayerSDK11TypedSourceC4typeSSvp":{"name":"type","abstract":"

    Specifies the content type (MIME type) of source being played.

    ","parent_name":"TypedSource"},"Classes/TypedSource.html#/s:13THEOplayerSDK11TypedSourceC3drmAA16DRMConfiguration_pSgvp":{"name":"drm","abstract":"

    This optional property can be used to specify required DRM parameters for a playback source.

    ","parent_name":"TypedSource"},"Classes/TypedSource.html#/s:13THEOplayerSDK11TypedSourceC11crossOriginAA05CrossF0OSgvp":{"name":"crossOrigin","abstract":"

    This optional property can be used to specify CORS parameters.

    ","parent_name":"TypedSource"},"Classes/TypedSource.html#/s:13THEOplayerSDK11TypedSourceC12hlsDateRangeSbSgvp":{"name":"hlsDateRange","abstract":"

    Parse / Expose date ranges from HLS manifest.

    ","parent_name":"TypedSource"},"Classes/TypedSource.html#/s:13THEOplayerSDK11TypedSourceC4ssaiAA34ServerSideAdInsertionConfiguration_pSgvp":{"name":"ssai","abstract":"

    This optional property can be used to specify required Server-Side Ad Insertion parameters for a playback source.

    ","parent_name":"TypedSource"},"Classes/TypedSource.html#/s:13THEOplayerSDK11TypedSourceC7headersSDyS2SGSgvp":{"name":"headers","abstract":"

    The HTTP request headers associated with the source. These headers are passed to every HTTP request that the player will make which include: master playlist, media playlist and segment requests.

    ","parent_name":"TypedSource"},"Classes/TypedSource.html#/s:13THEOplayerSDK11TypedSourceC4cmcdSbSgvp":{"name":"cmcd","abstract":"

    Send Common Media Client Data (CTA-5004) as HTTP request headers.

    ","parent_name":"TypedSource"},"Classes/TypedSource.html#/s:13THEOplayerSDK11TypedSourceC3src4type3drm11crossOrigin4ssai12hlsDateRange7headers4cmcdACSS_SSAA16DRMConfiguration_pSgAA05CrossI0OSgAA34ServerSideAdInsertionConfiguration_pSgSbSgSDyS2SGSgAStcfc":{"name":"init(src:type:drm:crossOrigin:ssai:hlsDateRange:headers:cmcd:)","abstract":"

    Constructs a TypedSource.

    ","parent_name":"TypedSource"},"Classes/SourceDescription.html#/s:13THEOplayerSDK17SourceDescriptionC7sourcesSayAA05TypedC0CGvp":{"name":"sources","abstract":"

    Represents the source of the media to be played.

    ","parent_name":"SourceDescription"},"Classes/SourceDescription.html#/s:13THEOplayerSDK17SourceDescriptionC10textTracksSayAA09TextTrackD0CGSgvp":{"name":"textTracks","abstract":"

    The textTracks property can be used to add an array of side-loaded text tracks to the player.

    ","parent_name":"SourceDescription"},"Classes/SourceDescription.html#/s:13THEOplayerSDK17SourceDescriptionC3adsSayAA02AdD0_pGSgvp":{"name":"ads","abstract":"

    The ads property can be used to add an array of AdDescriptions to the player. All valid and supported advertisement files will be cued for playback in the player. Each ad in the array should be described as an AdDescription.

    ","parent_name":"SourceDescription"},"Classes/SourceDescription.html#/s:13THEOplayerSDK17SourceDescriptionC18enableStreamingDVRSbSgvp":{"name":"enableStreamingDVR","abstract":"

    Enables smooth switching to HLS for DVR when seeking in THEOlive or Millicast. Users must provide a typed source as a fallback in the source description

    ","parent_name":"SourceDescription"},"Classes/SourceDescription.html#/s:13THEOplayerSDK17SourceDescriptionC6poster10Foundation3URLVSgvp":{"name":"poster","abstract":"

    The poster property can be used to specify a content poster per source.

    ","parent_name":"SourceDescription"},"Classes/SourceDescription.html#/s:13THEOplayerSDK17SourceDescriptionC8metadataAA08MetadataD0CSgvp":{"name":"metadata","abstract":"

    Metadata that can be used to describe content, e.g. when casting to chromecast.

    ","parent_name":"SourceDescription"},"Classes/SourceDescription.html#/s:13THEOplayerSDK17SourceDescriptionC3abrAA0C16AbrConfigurationCSgvp":{"name":"abr","abstract":"

    Sets the ABR configuration for the source being played.

    ","parent_name":"SourceDescription"},"Classes/SourceDescription.html#/s:13THEOplayerSDK17SourceDescriptionC7sources10textTracks3ads6poster8metadata3abr18enableStreamingDVRACSayAA05TypedC0CG_SayAA09TextTrackD0CGSgSayAA02AdD0_pGSgSSSgAA08MetadataD0CSgAA0C16AbrConfigurationCSgSbtcfc":{"name":"init(sources:textTracks:ads:poster:metadata:abr:enableStreamingDVR:)","abstract":"

    Constructs a SourceDescription.

    ","parent_name":"SourceDescription"},"Classes/SourceDescription.html#/s:13THEOplayerSDK17SourceDescriptionC6source10textTracks3ads6poster8metadata3abrAcA05TypedC0C_SayAA09TextTrackD0CGSgSayAA02AdD0_pGSgSSSgAA08MetadataD0CSgAA0C16AbrConfigurationCSgtcfc":{"name":"init(source:textTracks:ads:poster:metadata:abr:)","abstract":"

    Constructs a SourceDescription.

    ","parent_name":"SourceDescription"},"Classes/SourceDescription.html":{"name":"SourceDescription","abstract":"

    The SourceDescription object is used to describe a configuration of a source for a THEOplayer instance.

    "},"Classes/TypedSource.html":{"name":"TypedSource","abstract":"

    The TypedSource object provides the following properties:

    "},"Classes/TextTrackDescription.html":{"name":"TextTrackDescription","abstract":"

    A TextTrackDescription object contains a description of a side-loaded text track that will be added to the player.

    "},"Classes/MetadataDescription.html":{"name":"MetadataDescription","abstract":"

    The MetadataDescription object is used to describe content.

    "},"Classes/TextTrackStyleEdgeStyle.html#/s:13THEOplayerSDK018TextTrackStyleEdgeE0C4noneSSvpZ":{"name":"none","abstract":"

    No edge style

    ","parent_name":"TextTrackStyleEdgeStyle"},"Classes/TextTrackStyleEdgeStyle.html#/s:13THEOplayerSDK018TextTrackStyleEdgeE0C6raisedSSvpZ":{"name":"raised","abstract":"

    A raised edge style.

    ","parent_name":"TextTrackStyleEdgeStyle"},"Classes/TextTrackStyleEdgeStyle.html#/s:13THEOplayerSDK018TextTrackStyleEdgeE0C9depressedSSvpZ":{"name":"depressed","abstract":"

    A depressed edge style.

    ","parent_name":"TextTrackStyleEdgeStyle"},"Classes/TextTrackStyleEdgeStyle.html#/s:13THEOplayerSDK018TextTrackStyleEdgeE0C7uniformSSvpZ":{"name":"uniform","abstract":"

    A uniform border style.

    ","parent_name":"TextTrackStyleEdgeStyle"},"Classes/TextTrackStyleEdgeStyle.html#/s:13THEOplayerSDK018TextTrackStyleEdgeE0C10dropShadowSSvpZ":{"name":"dropShadow","abstract":"

    A drop shadow style.

    ","parent_name":"TextTrackStyleEdgeStyle"},"Protocols/TextTrackStyle.html#/s:13THEOplayerSDK14TextTrackStyleP15backgroundColorSayAA0cde4RuleG0CGSgvp":{"name":"backgroundColor","abstract":"

    The background color for the text track.

    ","parent_name":"TextTrackStyle"},"Protocols/TextTrackStyle.html#/s:13THEOplayerSDK14TextTrackStyleP9fontColorSayAA0cde4RuleG0CGSgvp":{"name":"fontColor","abstract":"

    The font color for the text track.

    ","parent_name":"TextTrackStyle"},"Protocols/TextTrackStyle.html#/s:13THEOplayerSDK14TextTrackStyleP8fontSizeSayAA0cdE10RuleNumberCGSgvp":{"name":"fontSize","abstract":"

    The font size for the text track. A non-negative number.

    ","parent_name":"TextTrackStyle"},"Protocols/TextTrackStyle.html#/s:13THEOplayerSDK14TextTrackStyleP10fontFamilySayAA0cdE10RuleStringCGSgvp":{"name":"fontFamily","abstract":"

    The font family for the text track.

    ","parent_name":"TextTrackStyle"},"Protocols/TextTrackStyle.html#/s:13THEOplayerSDK14TextTrackStyleP04edgeE0SayAA0cdE10RuleStringCGSgvp":{"name":"edgeStyle","abstract":"

    The edge style of the text, represented by a value from TextTrackStyleEdgeStyle

    ","parent_name":"TextTrackStyle"},"Protocols/TextTrackStyle.html#/s:13THEOplayerSDK14TextTrackStyleP9marginTopSayAA0cdE10RuleNumberCGSgvp":{"name":"marginTop","abstract":"

    The top margin of the area where subtitles are being rendered. A non-negative number.

    ","parent_name":"TextTrackStyle"},"Protocols/TextTrackStyle.html#/s:13THEOplayerSDK14TextTrackStyleP10marginLeftSayAA0cdE10RuleNumberCGSgvp":{"name":"marginLeft","abstract":"

    The left margin of the area where subtitles are being rendered. A non-negative number.

    ","parent_name":"TextTrackStyle"},"Protocols/TextTrackStyle.html":{"name":"TextTrackStyle","abstract":"

    The TextTrackStyle API can be used to change the style of the renderred TextTracks.

    "},"Text%20Track%20Styling%20API.html#/s:13THEOplayerSDK18TextTrackStyleRuleP":{"name":"TextTrackStyleRule","abstract":"

    The common protocol for TextTrackStyleRuleColor, THEOplayerTextTrackStyleRuleString and THEOplayerTextTrackStyleRuleNumber

    "},"Text%20Track%20Styling%20API.html#/c:@M@THEOplayerSDK@objc(cs)TextTrackStyleRuleColor":{"name":"TextTrackStyleRuleColor","abstract":"

    A TextTrackStyleRule that holds a color (UIColor) value.

    "},"Text%20Track%20Styling%20API.html#/c:@M@THEOplayerSDK@objc(cs)TextTrackStyleRuleString":{"name":"TextTrackStyleRuleString","abstract":"

    A TextTrackStyleRule that holds a color (String) value.

    "},"Text%20Track%20Styling%20API.html#/c:@M@THEOplayerSDK@objc(cs)TextTrackStyleRuleNumber":{"name":"TextTrackStyleRuleNumber","abstract":"

    A TextTrackStyleRule that holds a color (Int) value.

    "},"Classes/TextTrackStyleEdgeStyle.html":{"name":"TextTrackStyleEdgeStyle","abstract":"

    The TextTrackStyleEdgeStyle API can be used to change the edge style of the renderred TextTracks.

    "},"Classes/CueUpdateEvent.html#/s:13THEOplayerSDK14CueUpdateEventC4typeSSvp":{"name":"type","abstract":"

    The textual representation of the type of event, “update”.

    ","parent_name":"CueUpdateEvent"},"Classes/CueUpdateEvent.html#/s:13THEOplayerSDK14CueUpdateEventC4date10Foundation4DateVvp":{"name":"date","abstract":"

    The date at which the event occurred.

    ","parent_name":"CueUpdateEvent"},"Classes/CueUpdateEvent.html#/s:13THEOplayerSDK14CueUpdateEventC3cueAA09TextTrackC0_pvp":{"name":"cue","abstract":"

    The TextTrackCuewhich was updated.

    ","parent_name":"CueUpdateEvent"},"Classes/CueExitEvent.html#/s:13THEOplayerSDK12CueExitEventC4typeSSvp":{"name":"type","abstract":"

    The textual representation of the type of event, “exit”.

    ","parent_name":"CueExitEvent"},"Classes/CueExitEvent.html#/s:13THEOplayerSDK12CueExitEventC4date10Foundation4DateVvp":{"name":"date","abstract":"

    The date at which the event occurred.

    ","parent_name":"CueExitEvent"},"Classes/CueExitEvent.html#/s:13THEOplayerSDK12CueExitEventC3cueAA09TextTrackC0_pvp":{"name":"cue","abstract":"

    The TextTrackCuewhich was exited.

    ","parent_name":"CueExitEvent"},"Classes/CueEnterEvent.html#/s:13THEOplayerSDK13CueEnterEventC4typeSSvp":{"name":"type","abstract":"

    The textual representation of the type of event, “enter”.

    ","parent_name":"CueEnterEvent"},"Classes/CueEnterEvent.html#/s:13THEOplayerSDK13CueEnterEventC4date10Foundation4DateVvp":{"name":"date","abstract":"

    The date at which the event occurred.

    ","parent_name":"CueEnterEvent"},"Classes/CueEnterEvent.html#/s:13THEOplayerSDK13CueEnterEventC3cueAA09TextTrackC0_pvp":{"name":"cue","abstract":"

    The TextTrackCuewhich was entered.

    ","parent_name":"CueEnterEvent"},"Structs/TextTrackCueEventTypes.html#/s:13THEOplayerSDK22TextTrackCueEventTypesV5ENTERAA0F4TypeCyAA0e5EnterF0CGvpZ":{"name":"ENTER","abstract":"

    Fired when CueEnterEvent occurs.

    ","parent_name":"TextTrackCueEventTypes"},"Structs/TextTrackCueEventTypes.html#/s:13THEOplayerSDK22TextTrackCueEventTypesV4EXITAA0F4TypeCyAA0e4ExitF0CGvpZ":{"name":"EXIT","abstract":"

    Fired when CueExitEvent occurs.

    ","parent_name":"TextTrackCueEventTypes"},"Structs/TextTrackCueEventTypes.html#/s:13THEOplayerSDK22TextTrackCueEventTypesV6UPDATEAA0F4TypeCyAA0e6UpdateF0CGvpZ":{"name":"UPDATE","abstract":"

    Fired when CueUpdateEvent occurs.

    ","parent_name":"TextTrackCueEventTypes"},"Structs/TextTrackCueEventTypes.html":{"name":"TextTrackCueEventTypes","abstract":"

    The types of TextTrackCue events. These events apply to a certain TextTrackCue.

    "},"Classes/CueEnterEvent.html":{"name":"CueEnterEvent","abstract":"

    Fired when TextTrackCueEventTypes.ENTER occurs for a TextTrackCue.

    "},"Classes/CueExitEvent.html":{"name":"CueExitEvent","abstract":"

    Fired when TextTrackCueEventTypes.EXIT occurs for a TextTrackCue.

    "},"Classes/CueUpdateEvent.html":{"name":"CueUpdateEvent","abstract":"

    Fired when TextTrackCueEventTypes.UPDATE occurs for a TextTrackCue.

    "},"Protocols/WebVttCue.html#/s:13THEOplayerSDK9WebVttCueP5alignSSvp":{"name":"align","abstract":"

    The WebVTT cue text alignment, following the WebVTT specification.

    ","parent_name":"WebVttCue"},"Protocols/WebVttCue.html#/s:13THEOplayerSDK9WebVttCueP4lineSSvp":{"name":"line","abstract":"

    The WebVTT cue line, following the WebVTT specification.

    ","parent_name":"WebVttCue"},"Protocols/WebVttCue.html#/s:13THEOplayerSDK9WebVttCueP9lineAlignSSvp":{"name":"lineAlign","abstract":"

    A string representing the WebVTT cue line alignment, following the WebVTT specification.

    ","parent_name":"WebVttCue"},"Protocols/WebVttCue.html#/s:13THEOplayerSDK9WebVttCueP8positionSSvp":{"name":"position","abstract":"

    The WebVTT cue position, following the WebVTT specification.

    ","parent_name":"WebVttCue"},"Protocols/WebVttCue.html#/s:13THEOplayerSDK9WebVttCueP13positionAlignSSvp":{"name":"positionAlign","abstract":"

    A string representing the WebVTT cue position alignment, following the WebVTT specification.

    ","parent_name":"WebVttCue"},"Protocols/WebVttCue.html#/s:13THEOplayerSDK9WebVttCueP6regionSSSgvp":{"name":"region","abstract":"

    The VTTRegion object to which this cue belongs, the WebVTTRegion objects follows the WebVTT specification for WebVTTRegions.

    ","parent_name":"WebVttCue"},"Protocols/WebVttCue.html#/s:13THEOplayerSDK9WebVttCueP4sizeSivp":{"name":"size","abstract":"

    The WebVTT cue size, following to the WebVTT specification.

    ","parent_name":"WebVttCue"},"Protocols/WebVttCue.html#/s:13THEOplayerSDK9WebVttCueP11snapToLinesSbvp":{"name":"snapToLines","abstract":"

    True if the WebVTT cue snap-to-lines flag is true, false otherwise, following the WebVTT specification.

    ","parent_name":"WebVttCue"},"Protocols/WebVttCue.html#/s:13THEOplayerSDK9WebVttCueP4textSSSgvp":{"name":"text","abstract":"

    The text track cue text in raw unparsed form, following to the WebVTT specification.

    ","parent_name":"WebVttCue"},"Protocols/WebVttCue.html#/s:13THEOplayerSDK9WebVttCueP8verticalSSvp":{"name":"vertical","abstract":"

    A string representing the WebVTT cue writing direction, following the WebVTT specification.

    ","parent_name":"WebVttCue"},"Protocols/TextTrackCue.html#/s:13THEOplayerSDK12TextTrackCueP7contentypSgvp":{"name":"content","abstract":"

    The cue’s content.

    ","parent_name":"TextTrackCue"},"Protocols/TextTrackCue.html#/s:13THEOplayerSDK12TextTrackCueP13contentStringSSSgvp":{"name":"contentString","abstract":"

    If the cue’s type is WebVtt, the contentString is used. It contains the text track cue text in raw unparsed form.

    ","parent_name":"TextTrackCue"},"Protocols/TextTrackCue.html#/s:13THEOplayerSDK12TextTrackCueP17contentDictionarySDyS2SGSgvp":{"name":"contentDictionary","abstract":"

    If the cue’s type is WebVtt, the contentDictionary is used. It contains the text track cue info in a dictionary.

    ","parent_name":"TextTrackCue"},"Protocols/TextTrackCue.html#/s:13THEOplayerSDK12TextTrackCueP7endTimeSdvp":{"name":"endTime","abstract":"

    The time in seconds and relative to a THEOplayer instance’s currentTime at which the cue becomes inactive.

    ","parent_name":"TextTrackCue"},"Protocols/TextTrackCue.html#/s:13THEOplayerSDK12TextTrackCueP2idSSvp":{"name":"id","abstract":"

    The cue’s identifier.

    ","parent_name":"TextTrackCue"},"Protocols/TextTrackCue.html#/s:13THEOplayerSDK12TextTrackCueP3uidSivp":{"name":"uid","abstract":"

    The cue’s unique identifier.

    ","parent_name":"TextTrackCue"},"Protocols/TextTrackCue.html#/s:13THEOplayerSDK12TextTrackCueP9startTimeSdvp":{"name":"startTime","abstract":"

    The time in seconds and relative to a THEOplayer instance’s currentTime at which the cue becomes active.

    ","parent_name":"TextTrackCue"},"Protocols/TextTrackCue.html#/s:13THEOplayerSDK12TextTrackCueP5trackAA0cD0_pSgvp":{"name":"track","abstract":"

    The track the given cue belongs to.

    ","parent_name":"TextTrackCue"},"Protocols/TextTrackCue.html#/s:13THEOplayerSDK12TextTrackCueP16addEventListener4type8listenerAA0gH0_pAA0G4TypeCyqd__G_yqd__ctAA0G8ProtocolRd__lF":{"name":"addEventListener(type:listener:)","abstract":"

    Adds the given event listener of the given TextTrackCueEventType.

    ","parent_name":"TextTrackCue"},"Protocols/TextTrackCue.html#/s:13THEOplayerSDK12TextTrackCueP19removeEventListener4type8listeneryAA0G4TypeCyqd__G_AA0gH0_ptAA0G8ProtocolRd__lF":{"name":"removeEventListener(type:listener:)","abstract":"

    Removes the given event listener of the given TextTrackCueEventType.

    ","parent_name":"TextTrackCue"},"Classes/CustomAttributes.html#/s:13THEOplayerSDK16CustomAttributesC9getDouble3forSdSgSS_tKF":{"name":"getDouble(for:)","abstract":"

    The Double value from the CustomAttribute list.

    ","parent_name":"CustomAttributes"},"Classes/CustomAttributes.html#/s:13THEOplayerSDK16CustomAttributesC9getString3forSSSgSS_tKF":{"name":"getString(for:)","abstract":"

    The String value from the CustomAttribute list.

    ","parent_name":"CustomAttributes"},"Classes/CustomAttributes.html#/s:13THEOplayerSDK16CustomAttributesC8getBytes3for10Foundation4DataVSgSS_tKF":{"name":"getBytes(for:)","abstract":"

    The byte buffer from the CustomAttribute list.

    ","parent_name":"CustomAttributes"},"Classes/CustomAttributes.html#/s:13THEOplayerSDK16CustomAttributesC03getD12AsDictionarySDySSAA0C9AttributeCGyF":{"name":"getAttributesAsDictionary()","abstract":"

    The CustomAttribute list as a dictionary.

    ","parent_name":"CustomAttributes"},"Protocols/DateRangeCue.html#/s:13THEOplayerSDK12DateRangeCueP14attributeClassSSSgvp":{"name":"attributeClass","abstract":"

    Identifier of some set of attributes with associated value semantics.

    ","parent_name":"DateRangeCue"},"Protocols/DateRangeCue.html#/s:13THEOplayerSDK12DateRangeCueP05startC010Foundation0C0Vvp":{"name":"startDate","abstract":"

    Returns the date at which the DateRange begins.

    ","parent_name":"DateRangeCue"},"Protocols/DateRangeCue.html#/s:13THEOplayerSDK12DateRangeCueP03endC010Foundation0C0VSgvp":{"name":"endDate","abstract":"

    Returns the date at which the DateRange ends. The date will be equal to or later than the startDate.

    ","parent_name":"DateRangeCue"},"Protocols/DateRangeCue.html#/s:13THEOplayerSDK12DateRangeCueP8durationSdSgvp":{"name":"duration","abstract":"

    Returns the duration in seconds of the timed metadata.

    ","parent_name":"DateRangeCue"},"Protocols/DateRangeCue.html#/s:13THEOplayerSDK12DateRangeCueP15plannedDurationSdSgvp":{"name":"plannedDuration","abstract":"

    Returns the expected duration in seconds of the timed metadata. Use this whenever the exact duration is not known.

    ","parent_name":"DateRangeCue"},"Protocols/DateRangeCue.html#/s:13THEOplayerSDK12DateRangeCueP9endOnNextSbvp":{"name":"endOnNext","abstract":"

    Returns true if the end of this DateRange is equal to the startDate of the Following Range.

    ","parent_name":"DateRangeCue"},"Protocols/DateRangeCue.html#/s:13THEOplayerSDK12DateRangeCueP9scte35Cmd10Foundation4DataVSgvp":{"name":"scte35Cmd","abstract":"

    Returns the SCTE ‘cmd’ splice_info_section.

    ","parent_name":"DateRangeCue"},"Protocols/DateRangeCue.html#/s:13THEOplayerSDK12DateRangeCueP9scte35Out10Foundation4DataVSgvp":{"name":"scte35Out","abstract":"

    Returns the SCTE ‘out’ splice_info_section.

    ","parent_name":"DateRangeCue"},"Protocols/DateRangeCue.html#/s:13THEOplayerSDK12DateRangeCueP8scte35In10Foundation4DataVSgvp":{"name":"scte35In","abstract":"

    Returns the SCTE ‘in’ splice_info_section.

    ","parent_name":"DateRangeCue"},"Protocols/DateRangeCue.html#/s:13THEOplayerSDK12DateRangeCueP16customAttributesAA06CustomG0Cvp":{"name":"customAttributes","abstract":"

    Returns all client-defined attributes. The attribute name does not include the ‘X-’ prefix.

    ","parent_name":"DateRangeCue"},"Text%20Track%20Cue%20API.html#/s:13THEOplayerSDK16CueEventProtocolP":{"name":"CueEventProtocol","abstract":"

    The base TextTrackCue Event protocol.

    "},"Text%20Track%20Cue%20API.html#/s:13THEOplayerSDK25TextTrackCueEventProtocolP":{"name":"TextTrackCueEventProtocol","abstract":"

    The base TextTrack cue Event protocol.

    "},"Protocols/DateRangeCue.html":{"name":"DateRangeCue","abstract":"

    Represents the HLS date range cue which is a part of the metadata text track.

    "},"Text%20Track%20Cue%20API.html#/c:@M@THEOplayerSDK@objc(cs)CustomAttribute":{"name":"CustomAttribute","abstract":"

    The CustomAttribute object of the date range cue."},"Classes/CustomAttributes.html":{"name":"CustomAttributes","abstract":"

    An array of CustomAttribute objects for the dateRangeCue.

    "},"Protocols/TextTrackCue.html":{"name":"TextTrackCue","abstract":"

    A TextTrackCue object represents an individual cue and provides methods and properties to access the data and events to act on changes to cue state. Depending on the TextTrack’s type, a cue might have different properties.

    "},"Protocols/WebVttCue.html":{"name":"WebVttCue","abstract":"

    Web Video Text Tracks cue.

    "},"Text%20Track%20Cue%20API.html#/s:13THEOplayerSDK6Id3CueP":{"name":"Id3Cue","abstract":"

    ID3 Text Track cue. Content type is [String:String].

    "},"Classes/ExitCueEvent.html#/s:13THEOplayerSDK12ExitCueEventC4typeSSvp":{"name":"type","abstract":"

    The textual representation of the type of event, “exitcue”.

    ","parent_name":"ExitCueEvent"},"Classes/ExitCueEvent.html#/s:13THEOplayerSDK12ExitCueEventC4date10Foundation4DateVvp":{"name":"date","abstract":"

    The date at which the event occurred.

    ","parent_name":"ExitCueEvent"},"Classes/ExitCueEvent.html#/s:13THEOplayerSDK12ExitCueEventC3cueAA09TextTrackD0_pvp":{"name":"cue","abstract":"

    The TextTrackCue that exited.

    ","parent_name":"ExitCueEvent"},"Classes/EnterCueEvent.html#/s:13THEOplayerSDK13EnterCueEventC4typeSSvp":{"name":"type","abstract":"

    The textual representation of the type of event, “entercue”.

    ","parent_name":"EnterCueEvent"},"Classes/EnterCueEvent.html#/s:13THEOplayerSDK13EnterCueEventC4date10Foundation4DateVvp":{"name":"date","abstract":"

    The date at which the event occurred.

    ","parent_name":"EnterCueEvent"},"Classes/EnterCueEvent.html#/s:13THEOplayerSDK13EnterCueEventC3cueAA09TextTrackD0_pvp":{"name":"cue","abstract":"

    The TextTrackCue that entered.

    ","parent_name":"EnterCueEvent"},"Classes/CueChangeEvent.html#/s:13THEOplayerSDK14CueChangeEventC4typeSSvp":{"name":"type","abstract":"

    The textual representation of the type of event, “cuechange”.

    ","parent_name":"CueChangeEvent"},"Classes/CueChangeEvent.html#/s:13THEOplayerSDK14CueChangeEventC4date10Foundation4DateVvp":{"name":"date","abstract":"

    The date at which the event occurred.

    ","parent_name":"CueChangeEvent"},"Classes/CueChangeEvent.html#/s:13THEOplayerSDK14CueChangeEventC5trackAA5Track_pvp":{"name":"track","abstract":"

    The TextTrackfor which the TextTrackCue changed.

    ","parent_name":"CueChangeEvent"},"Classes/RemoveCueEvent.html#/s:13THEOplayerSDK14RemoveCueEventC4typeSSvp":{"name":"type","abstract":"

    The textual representation of the type of event, “removecue”.

    ","parent_name":"RemoveCueEvent"},"Classes/RemoveCueEvent.html#/s:13THEOplayerSDK14RemoveCueEventC4date10Foundation4DateVvp":{"name":"date","abstract":"

    The date at which the event occurred.

    ","parent_name":"RemoveCueEvent"},"Classes/RemoveCueEvent.html#/s:13THEOplayerSDK14RemoveCueEventC3cueAA09TextTrackD0_pvp":{"name":"cue","abstract":"

    The TextTrackCue that was removed.

    ","parent_name":"RemoveCueEvent"},"Classes/AddCueEvent.html#/s:13THEOplayerSDK11AddCueEventC4typeSSvp":{"name":"type","abstract":"

    The textual representation of the type of event, “addcue”.

    ","parent_name":"AddCueEvent"},"Classes/AddCueEvent.html#/s:13THEOplayerSDK11AddCueEventC4date10Foundation4DateVvp":{"name":"date","abstract":"

    The date at which the event occurred.

    ","parent_name":"AddCueEvent"},"Classes/AddCueEvent.html#/s:13THEOplayerSDK11AddCueEventC3cueAA09TextTrackD0_pvp":{"name":"cue","abstract":"

    The TextTrackCue that was added.

    ","parent_name":"AddCueEvent"},"Structs/TextTrackEventTypes.html#/s:13THEOplayerSDK19TextTrackEventTypesV10CUE_CHANGEAA0E4TypeCyAA09CueChangeE0CGvpZ":{"name":"CUE_CHANGE","abstract":"

    Fired when CueChangeEvent occurs.

    ","parent_name":"TextTrackEventTypes"},"Structs/TextTrackEventTypes.html#/s:13THEOplayerSDK19TextTrackEventTypesV7ADD_CUEAA0E4TypeCyAA06AddCueE0CGvpZ":{"name":"ADD_CUE","abstract":"

    Fired when AddCueEvent occurs.

    ","parent_name":"TextTrackEventTypes"},"Structs/TextTrackEventTypes.html#/s:13THEOplayerSDK19TextTrackEventTypesV10REMOVE_CUEAA0E4TypeCyAA09RemoveCueE0CGvpZ":{"name":"REMOVE_CUE","abstract":"

    Fired when RemoveCueEvent occurs.

    ","parent_name":"TextTrackEventTypes"},"Structs/TextTrackEventTypes.html#/s:13THEOplayerSDK19TextTrackEventTypesV9ENTER_CUEAA0E4TypeCyAA08EnterCueE0CGvpZ":{"name":"ENTER_CUE","abstract":"

    Fired when EnterCueEvent occurs.

    ","parent_name":"TextTrackEventTypes"},"Structs/TextTrackEventTypes.html#/s:13THEOplayerSDK19TextTrackEventTypesV8EXIT_CUEAA0E4TypeCyAA07ExitCueE0CGvpZ":{"name":"EXIT_CUE","abstract":"

    Fired when ExitCueEvent occurs.

    ","parent_name":"TextTrackEventTypes"},"Structs/MediaTrackEventTypes.html#/s:13THEOplayerSDK20MediaTrackEventTypesV22ACTIVE_QUALITY_CHANGEDAA0E4TypeCyAA020ActiveQualityChangedE0CGvpZ":{"name":"ACTIVE_QUALITY_CHANGED","abstract":"

    Fired when the activeQualityBandwidth property of a MediaTrack has been updated.

    ","parent_name":"MediaTrackEventTypes"},"Structs/TrackEventTypes.html#/s:13THEOplayerSDK15TrackEventTypesV6UPDATEAA0D4TypeCyAA0c6UpdateD0CGvpZ":{"name":"UPDATE","abstract":"

    Fired when one or more properties of a track have been updated.

    ","parent_name":"TrackEventTypes"},"Structs/TrackEventTypes.html":{"name":"TrackEventTypes","abstract":"

    The events fired by a Track.

    "},"Structs/MediaTrackEventTypes.html":{"name":"MediaTrackEventTypes","abstract":"

    The events fired by a MediaTrack.

    "},"Structs/TextTrackEventTypes.html":{"name":"TextTrackEventTypes","abstract":"

    The types of TextTrack events. These events apply to the list of TextTrackCues.

    "},"Classes/AddCueEvent.html":{"name":"AddCueEvent","abstract":"

    Fired when TextTrackEventTypes.ADD_CUE occurs for the list of TextTrackCues.

    "},"Classes/RemoveCueEvent.html":{"name":"RemoveCueEvent","abstract":"

    Fired when TextTrackEventTypes.REMOVE_CUE occurs for the list of TextTrackCues.

    "},"Classes/CueChangeEvent.html":{"name":"CueChangeEvent","abstract":"

    Fired when TextTrackEventTypes.CUE_CHANGE occurs for the list of TextTrackCues.

    "},"Classes/EnterCueEvent.html":{"name":"EnterCueEvent","abstract":"

    Fired when TextTrackEventTypes.ENTER_CUE occurs for the list of TextTrackCues.

    "},"Classes/ExitCueEvent.html":{"name":"ExitCueEvent","abstract":"

    Fired when TextTrackEventTypes.EXIT_CUE occurs for the list of TextTrackCues.

    "},"Enums/TextTrackFormat.html#/s:13THEOplayerSDK15TextTrackFormatO6WebVTTyA2CmF":{"name":"WebVTT","abstract":"

    The text track is in the Web Video Text Tracks format.

    ","parent_name":"TextTrackFormat"},"Enums/TextTrackFormat.html#/s:13THEOplayerSDK15TextTrackFormatO3SRTyA2CmF":{"name":"SRT","abstract":"

    The text track is in the SubRip Text Tracks format.

    ","parent_name":"TextTrackFormat"},"Enums/TextTrackFormat.html#/s:13THEOplayerSDK15TextTrackFormatO9_rawValueSSvp":{"name":"_rawValue","abstract":"

    The raw value of type String.

    ","parent_name":"TextTrackFormat"},"Enums/TextTrackKind.html#/s:13THEOplayerSDK13TextTrackKindO9subtitlesyA2CmF":{"name":"subtitles","abstract":"

    The text track contains subtitles.

    ","parent_name":"TextTrackKind"},"Enums/TextTrackKind.html#/s:13THEOplayerSDK13TextTrackKindO8captionsyA2CmF":{"name":"captions","abstract":"

    The text track contains closed captions, a translation of dialogue and sound effects.

    ","parent_name":"TextTrackKind"},"Enums/TextTrackKind.html#/s:13THEOplayerSDK13TextTrackKindO11descriptionyA2CmF":{"name":"description","abstract":"

    The text track contains descriptions, a textual description of the video.

    ","parent_name":"TextTrackKind"},"Enums/TextTrackKind.html#/s:13THEOplayerSDK13TextTrackKindO8chaptersyA2CmF":{"name":"chapters","abstract":"

    The text track contains chapter titles suitable for navigating the media resource.

    ","parent_name":"TextTrackKind"},"Enums/TextTrackKind.html#/s:13THEOplayerSDK13TextTrackKindO8metadatayA2CmF":{"name":"metadata","abstract":"

    The text track contains metadata.

    ","parent_name":"TextTrackKind"},"Enums/TextTrackKind.html#/s:13THEOplayerSDK13TextTrackKindO9_rawValueSSvp":{"name":"_rawValue","abstract":"

    The raw value of type String.

    ","parent_name":"TextTrackKind"},"Enums/TextTrackMode.html#/s:13THEOplayerSDK13TextTrackModeO9_rawValueSSvp":{"name":"_rawValue","abstract":"

    The raw value of type String.

    ","parent_name":"TextTrackMode"},"Protocols/TextTrack.html#/s:13THEOplayerSDK9TextTrackP014inBandMetadataD12DispatchTypeSSvp":{"name":"inBandMetadataTrackDispatchType","abstract":"

    The text track in-band metadata track dispatch type of the text track that the TextTrack object represents.

    ","parent_name":"TextTrack"},"Protocols/TextTrack.html#/s:13THEOplayerSDK9TextTrackP4modeAA0cD4ModeOvp":{"name":"mode","abstract":"

    The text track mode.

    ","parent_name":"TextTrack"},"Protocols/TextTrack.html#/s:13THEOplayerSDK9TextTrackP4cuesSayAA0cD3Cue_pGvp":{"name":"cues","abstract":"

    The text track’s list of TextTrackCue objects as a TextTrackCueList. This list includes all of the text track’s known cues.

    ","parent_name":"TextTrack"},"Protocols/TextTrack.html#/s:13THEOplayerSDK9TextTrackP3srcSSvp":{"name":"src","abstract":"

    The text track’s resource path

    ","parent_name":"TextTrack"},"Protocols/TextTrack.html#/s:13THEOplayerSDK9TextTrackP10activeCuesSayAA0cD3Cue_pGvp":{"name":"activeCues","abstract":"

    The text track’s list of active TextTrackCue objects as a TextTrackCueList.

    ","parent_name":"TextTrack"},"Protocols/TextTrack.html#/s:13THEOplayerSDK9TextTrackP4typeSSvp":{"name":"type","abstract":"

    The content type of the given track.

    ","parent_name":"TextTrack"},"Protocols/TextTrack.html#/s:13THEOplayerSDK9TextTrackP6forcedSbvp":{"name":"forced","abstract":"

    Indicates whether the track contains Forced Narrative cues.

    ","parent_name":"TextTrack"},"Protocols/TextTrack.html#/s:13THEOplayerSDK9TextTrackP16addEventListener4type8listenerAA0fG0_pAA0F4TypeCyqd__G_yqd__ctAA0F8ProtocolRd__lF":{"name":"addEventListener(type:listener:)","abstract":"

    Adds the given event listener of the given TextTrackEventType.

    ","parent_name":"TextTrack"},"Protocols/TextTrack.html#/s:13THEOplayerSDK9TextTrackP19removeEventListener4type8listeneryAA0F4TypeCyqd__G_AA0fG0_ptAA0F8ProtocolRd__lF":{"name":"removeEventListener(type:listener:)","abstract":"

    Removes the given event listener of the given TextTrackEventType.

    ","parent_name":"TextTrack"},"Protocols/AudioTrack.html#/s:13THEOplayerSDK10AudioTrackP7enabledSbvp":{"name":"enabled","abstract":"

    Indicates whether the track is enabled.

    ","parent_name":"AudioTrack"},"Protocols/MediaTrack.html#/s:13THEOplayerSDK10MediaTrackP7enabledSbvp":{"name":"enabled","abstract":"

    Indicates whether the track is enabled.

    ","parent_name":"MediaTrack"},"Protocols/MediaTrack.html#/s:13THEOplayerSDK10MediaTrackP22activeQualityBandwidthSivp":{"name":"activeQualityBandwidth","abstract":"

    Returns the bandwidth of the media track’s current active quality.

    ","parent_name":"MediaTrack"},"Protocols/MediaTrack.html#/s:13THEOplayerSDK10MediaTrackP13activeQualityAA0F0_pSgvp":{"name":"activeQuality","abstract":"

    The active quality of the media track, i.e. the quality that is currently being played.

    ","parent_name":"MediaTrack"},"Protocols/MediaTrack.html#/s:13THEOplayerSDK10MediaTrackP9qualitiesAA11QualityList_pvp":{"name":"qualities","abstract":"

    The qualities of the media track.

    ","parent_name":"MediaTrack"},"Protocols/MediaTrack.html#/s:13THEOplayerSDK10MediaTrackP15targetQualitiesSayAA7Quality_pGSgvp":{"name":"targetQualities","abstract":"

    One or more desired qualities of the media track.

    ","parent_name":"MediaTrack"},"Protocols/Track.html#/s:13THEOplayerSDK5TrackP4kindSSvp":{"name":"kind","abstract":"

    The kind of the track.

    ","parent_name":"Track"},"Protocols/Track.html#/s:13THEOplayerSDK5TrackP8languageSSvp":{"name":"language","abstract":"

    The language of the track.

    ","parent_name":"Track"},"Protocols/Track.html#/s:13THEOplayerSDK5TrackP5labelSSvp":{"name":"label","abstract":"

    The label of the track. This label could be localized.

    ","parent_name":"Track"},"Protocols/Track.html#/s:13THEOplayerSDK5TrackP16unlocalizedLabelSSvp":{"name":"unlocalizedLabel","abstract":"

    The unlocalized label of the track. This is guaranteed to be not localized.

    ","parent_name":"Track"},"Protocols/Track.html#/s:13THEOplayerSDK5TrackP2idSSvp":{"name":"id","abstract":"

    The identifier of the track.

    ","parent_name":"Track"},"Protocols/Track.html#/s:13THEOplayerSDK5TrackP3uidSivp":{"name":"uid","abstract":"

    A unique identifier of the track.

    ","parent_name":"Track"},"Protocols/Track.html":{"name":"Track","abstract":"

    A track object.

    "},"Protocols/MediaTrack.html":{"name":"MediaTrack","abstract":"

    A MediaTrack is an element that represents a single video or audio track that can be played by the player.

    "},"Track%20API.html#/s:13THEOplayerSDK10VideoTrackP":{"name":"VideoTrack","abstract":"

    A VideoTrack object is an element that represents a single video track that can be played by the player.

    "},"Protocols/AudioTrack.html":{"name":"AudioTrack","abstract":"

    An AudioTrack object is an element that represents a single audio track that can be played by the player.

    "},"Protocols/TextTrack.html":{"name":"TextTrack","abstract":"

    A TextTrack object is an element that represents a single text track that can be displayed in the player.

    "},"Enums/TextTrackMode.html":{"name":"TextTrackMode","abstract":"

    The different TextTrack modes.

    "},"Enums/TextTrackKind.html":{"name":"TextTrackKind","abstract":"

    Describes the kind of the text track.

    "},"Enums/TextTrackFormat.html":{"name":"TextTrackFormat","abstract":"

    Describes the format of the text track.

    "},"Classes/RemoveTrackEvent.html#/s:13THEOplayerSDK16RemoveTrackEventC4typeSSvp":{"name":"type","abstract":"

    The textual representation of the type of event, “removetrack”.

    ","parent_name":"RemoveTrackEvent"},"Classes/RemoveTrackEvent.html#/s:13THEOplayerSDK16RemoveTrackEventC4date10Foundation4DateVvp":{"name":"date","abstract":"

    The date at which the event occurred.

    ","parent_name":"RemoveTrackEvent"},"Classes/RemoveTrackEvent.html#/s:13THEOplayerSDK16RemoveTrackEventC5trackAA0D0_pvp":{"name":"track","abstract":"

    The Track which was just removed from the track list.

    ","parent_name":"RemoveTrackEvent"},"Classes/AddTrackEvent.html#/s:13THEOplayerSDK13AddTrackEventC4typeSSvp":{"name":"type","abstract":"

    The textual representation of the type of event, “addtrack”.

    ","parent_name":"AddTrackEvent"},"Classes/AddTrackEvent.html#/s:13THEOplayerSDK13AddTrackEventC4date10Foundation4DateVvp":{"name":"date","abstract":"

    The date at which the event occurred.

    ","parent_name":"AddTrackEvent"},"Classes/AddTrackEvent.html#/s:13THEOplayerSDK13AddTrackEventC5trackAA0D0_pvp":{"name":"track","abstract":"

    The Track which was just added to the track list.

    ","parent_name":"AddTrackEvent"},"Classes/TrackChangeEvent.html#/s:13THEOplayerSDK16TrackChangeEventC4typeSSvp":{"name":"type","abstract":"

    The textual representation of the type of event, “change”.

    ","parent_name":"TrackChangeEvent"},"Classes/TrackChangeEvent.html#/s:13THEOplayerSDK16TrackChangeEventC4date10Foundation4DateVvp":{"name":"date","abstract":"

    The date at which the event occurred.

    ","parent_name":"TrackChangeEvent"},"Classes/TrackChangeEvent.html#/s:13THEOplayerSDK16TrackChangeEventC5trackAA0C0_pvp":{"name":"track","abstract":"

    The Track which has its state just changed.

    ","parent_name":"TrackChangeEvent"},"Structs/TextTrackListEventTypes.html#/s:13THEOplayerSDK23TextTrackListEventTypesV9ADD_TRACKAA0F4TypeCyAA03AdddF0CGvpZ":{"name":"ADD_TRACK","abstract":"

    Fired when AddTrackEvent occurs.

    ","parent_name":"TextTrackListEventTypes"},"Structs/TextTrackListEventTypes.html#/s:13THEOplayerSDK23TextTrackListEventTypesV12REMOVE_TRACKAA0F4TypeCyAA06RemovedF0CGvpZ":{"name":"REMOVE_TRACK","abstract":"

    Fired when RemoveTrackEvent occurs.

    ","parent_name":"TextTrackListEventTypes"},"Structs/TextTrackListEventTypes.html#/s:13THEOplayerSDK23TextTrackListEventTypesV6CHANGEAA0F4TypeCyAA0d6ChangeF0CGvpZ":{"name":"CHANGE","abstract":"

    Fired when TrackChangeEvent occurs.

    ","parent_name":"TextTrackListEventTypes"},"Structs/AudioTrackListEventTypes.html#/s:13THEOplayerSDK24AudioTrackListEventTypesV9ADD_TRACKAA0F4TypeCyAA03AdddF0CGvpZ":{"name":"ADD_TRACK","abstract":"

    Fired when AddTrackEvent occurs.

    ","parent_name":"AudioTrackListEventTypes"},"Structs/AudioTrackListEventTypes.html#/s:13THEOplayerSDK24AudioTrackListEventTypesV12REMOVE_TRACKAA0F4TypeCyAA06RemovedF0CGvpZ":{"name":"REMOVE_TRACK","abstract":"

    Fired when RemoveTrackEvent occurs.

    ","parent_name":"AudioTrackListEventTypes"},"Structs/AudioTrackListEventTypes.html#/s:13THEOplayerSDK24AudioTrackListEventTypesV6CHANGEAA0F4TypeCyAA0d6ChangeF0CGvpZ":{"name":"CHANGE","abstract":"

    Fired when TrackChangeEvent occurs.

    ","parent_name":"AudioTrackListEventTypes"},"Structs/VideoTrackListEventTypes.html#/s:13THEOplayerSDK24VideoTrackListEventTypesV9ADD_TRACKAA0F4TypeCyAA03AdddF0CGvpZ":{"name":"ADD_TRACK","abstract":"

    Fired when AddTrackEvent occurs.

    ","parent_name":"VideoTrackListEventTypes"},"Structs/VideoTrackListEventTypes.html#/s:13THEOplayerSDK24VideoTrackListEventTypesV12REMOVE_TRACKAA0F4TypeCyAA06RemovedF0CGvpZ":{"name":"REMOVE_TRACK","abstract":"

    Fired when RemoveTrackEvent occurs.

    ","parent_name":"VideoTrackListEventTypes"},"Structs/VideoTrackListEventTypes.html#/s:13THEOplayerSDK24VideoTrackListEventTypesV6CHANGEAA0F4TypeCyAA0d6ChangeF0CGvpZ":{"name":"CHANGE","abstract":"

    Fired when TrackChangeEvent occurs.

    ","parent_name":"VideoTrackListEventTypes"},"Structs/VideoTrackListEventTypes.html":{"name":"VideoTrackListEventTypes","abstract":"

    The types of VideoTrackList events.

    "},"Structs/AudioTrackListEventTypes.html":{"name":"AudioTrackListEventTypes","abstract":"

    The types of AudioTrackList events.

    "},"Structs/TextTrackListEventTypes.html":{"name":"TextTrackListEventTypes","abstract":"

    The types of TextTrackList events.

    "},"Classes/TrackChangeEvent.html":{"name":"TrackChangeEvent","abstract":"

    Fired when TextTrackListEventTypes.CHANGE occurs for a TextTrackList.

    "},"Classes/AddTrackEvent.html":{"name":"AddTrackEvent","abstract":"

    Fired when TextTrackListEventTypes.ADD_TRACK occurs for a TextTrackList.

    "},"Classes/RemoveTrackEvent.html":{"name":"RemoveTrackEvent","abstract":"

    Fired when TextTrackListEventTypes.REMOVE_TRACK occurs for a TextTrackList.

    "},"Protocols/TextTrackList.html#/s:13THEOplayerSDK13TextTrackListP5countSivp":{"name":"count","abstract":"

    The number of text tracks in the list of text tracks.

    ","parent_name":"TextTrackList"},"Protocols/TextTrackList.html#/s:13THEOplayerSDK13TextTrackListP3getyAA0cD0_pSiF":{"name":"get(_:)","abstract":"

    The TextTrack object representing the text track at the index position in the player’s list of text tracks.

    ","parent_name":"TextTrackList"},"Protocols/TextTrackList.html#/s:13THEOplayerSDK13TextTrackListPyAA0cD0_pSicip":{"name":"subscript(_:)","abstract":"

    Returns the TextTrack object representing the text track at the index position in the player’s list of text tracks.

    ","parent_name":"TextTrackList"},"Protocols/TextTrackList.html#/s:13THEOplayerSDK13TextTrackListP16addEventListener4type8listenerAA0gH0_pAA0G4TypeCyqd__G_yqd__ctAA0G8ProtocolRd__lF":{"name":"addEventListener(type:listener:)","abstract":"

    Adds the given event listener of the given TextTrackListEventType.

    ","parent_name":"TextTrackList"},"Protocols/TextTrackList.html#/s:13THEOplayerSDK13TextTrackListP19removeEventListener4type8listeneryAA0G4TypeCyqd__G_AA0gH0_ptAA0G8ProtocolRd__lF":{"name":"removeEventListener(type:listener:)","abstract":"

    Removes the given event listener of the given TextTrackListEventType.

    ","parent_name":"TextTrackList"},"Protocols/AudioTrackList.html#/s:13THEOplayerSDK14AudioTrackListP16addEventListener4type8listenerAA0gH0_pAA0G4TypeCyqd__G_yqd__ctAA0G8ProtocolRd__lF":{"name":"addEventListener(type:listener:)","abstract":"

    Adds the given event listener of the given AudioTrackListEventType.

    ","parent_name":"AudioTrackList"},"Protocols/AudioTrackList.html#/s:13THEOplayerSDK14AudioTrackListP19removeEventListener4type8listeneryAA0G4TypeCyqd__G_AA0gH0_ptAA0G8ProtocolRd__lF":{"name":"removeEventListener(type:listener:)","abstract":"

    Removes the given event listener of the given AudioTrackListEventType.

    ","parent_name":"AudioTrackList"},"Protocols/VideoTrackList.html#/s:13THEOplayerSDK14VideoTrackListP16addEventListener4type8listenerAA0gH0_pAA0G4TypeCyqd__G_yqd__ctAA0G8ProtocolRd__lF":{"name":"addEventListener(type:listener:)","abstract":"

    Adds the given event listener of the given VideoTrackListEventType.

    ","parent_name":"VideoTrackList"},"Protocols/VideoTrackList.html#/s:13THEOplayerSDK14VideoTrackListP19removeEventListener4type8listeneryAA0G4TypeCyqd__G_AA0gH0_ptAA0G8ProtocolRd__lF":{"name":"removeEventListener(type:listener:)","abstract":"

    Removes the given event listener of the given VideoTrackListEventType.

    ","parent_name":"VideoTrackList"},"Protocols/MediaTrackList.html#/s:13THEOplayerSDK14MediaTrackListP5countSivp":{"name":"count","abstract":"

    The number of media tracks in the list of media tracks.

    ","parent_name":"MediaTrackList"},"Protocols/MediaTrackList.html#/s:13THEOplayerSDK14MediaTrackListP3getyAA0cD0_pSiF":{"name":"get(_:)","abstract":"

    Returns the MediaTrack object representing the media track at the index position in the player’s list of audio or video tracks.

    ","parent_name":"MediaTrackList"},"Protocols/MediaTrackList.html#/s:13THEOplayerSDK14MediaTrackListPyAA0cD0_pSicip":{"name":"subscript(_:)","abstract":"

    Returns the MediaTrack object representing the media track at the index position in the player’s list of audio or video tracks.

    ","parent_name":"MediaTrackList"},"Protocols/MediaTrackList.html":{"name":"MediaTrackList","abstract":"

    A MediaTrackList lists all available MediaTrack objects that the player can play. It contains MediaTrack objects, which are either AudioTracks or VideoTracks.

    "},"Protocols/VideoTrackList.html":{"name":"VideoTrackList","abstract":"

    A VideoTrackList lists all available VideoTrack objects that the player can play.

    "},"Protocols/AudioTrackList.html":{"name":"AudioTrackList","abstract":"

    An AudioTrackList lists all available AudioTrack objects that the player can play.

    "},"Protocols/TextTrackList.html":{"name":"TextTrackList","abstract":"

    A TextTrackList lists all available TextTrack objects that the player can display.

    "},"Classes/VolumeChangeEvent.html#/s:13THEOplayerSDK17VolumeChangeEventC6volumeSfvp":{"name":"volume","abstract":"

    The new value, between 0 and 1, of the player’s volume.

    ","parent_name":"VolumeChangeEvent"},"Classes/VolumeChangeEvent.html#/s:13THEOplayerSDK17VolumeChangeEventC06deviceC0Sfvp":{"name":"deviceVolume","abstract":"

    The new value, between 0 and 1, of the device’s volume.

    ","parent_name":"VolumeChangeEvent"},"Classes/PresentationModeChangeEvent.html#/s:13THEOplayerSDK27PresentationModeChangeEventC012presentationD0AA0cD0Ovp":{"name":"presentationMode","abstract":"

    The new PresentationMode of the player.

    ","parent_name":"PresentationModeChangeEvent"},"Classes/ErrorEvent.html#/s:13THEOplayerSDK10ErrorEventC5errorSSvp":{"name":"error","abstract":"

    The textual representation of the error that happened.

    ","parent_name":"ErrorEvent"},"Classes/ErrorEvent.html#/s:13THEOplayerSDK10ErrorEventC11errorObjectAA9THEOError_pSgvp":{"name":"errorObject","abstract":"

    A more descriptive THEOErrorcontaining information about the error.

    ","parent_name":"ErrorEvent"},"Classes/RateChangeEvent.html#/s:13THEOplayerSDK15RateChangeEventC08playbackC0Sdvp":{"name":"playbackRate","abstract":"

    The new rate of playback of the player.

    ","parent_name":"RateChangeEvent"},"Classes/TimeUpdateEvent.html#/s:13THEOplayerSDK15TimeUpdateEventC018currentProgramDateC010Foundation0H0VSgvp":{"name":"currentProgramDateTime","abstract":"

    The current program date time of the player.

    ","parent_name":"TimeUpdateEvent"},"Classes/DurationChangeEvent.html#/s:13THEOplayerSDK19DurationChangeEventC8durationSdSgvp":{"name":"duration","abstract":"

    The new duration of the content, in seconds.

    ","parent_name":"DurationChangeEvent"},"Classes/ReadyStateEvent.html#/s:13THEOplayerSDK15ReadyStateEventC05readyD0AA0cD0Ovp":{"name":"readyState","abstract":"

    The ReadyState of the player.

    ","parent_name":"ReadyStateEvent"},"Classes/SourceChangeEvent.html#/s:13THEOplayerSDK17SourceChangeEventC6sourceAA0C11DescriptionCSgvp":{"name":"source","abstract":"

    The new SourceDescription that was set.

    ","parent_name":"SourceChangeEvent"},"Structs/PlayerEventTypes.html#/s:13THEOplayerSDK16PlayerEventTypesV4PLAYAA0D4TypeCyAA04PlayD0CGvpZ":{"name":"PLAY","abstract":"

    Fired when PlayEvent occurs.

    ","parent_name":"PlayerEventTypes"},"Structs/PlayerEventTypes.html#/s:13THEOplayerSDK16PlayerEventTypesV7PLAYINGAA0D4TypeCyAA07PlayingD0CGvpZ":{"name":"PLAYING","abstract":"

    Fired when PlayingEvent occurs.

    ","parent_name":"PlayerEventTypes"},"Structs/PlayerEventTypes.html#/s:13THEOplayerSDK16PlayerEventTypesV5PAUSEAA0D4TypeCyAA05PauseD0CGvpZ":{"name":"PAUSE","abstract":"

    Fired when PauseEvent occurs.

    ","parent_name":"PlayerEventTypes"},"Structs/PlayerEventTypes.html#/s:13THEOplayerSDK16PlayerEventTypesV8PROGRESSAA0D4TypeCyAA08ProgressD0CGvpZ":{"name":"PROGRESS","abstract":"

    Fired when ProgressEvent occurs.

    ","parent_name":"PlayerEventTypes"},"Structs/PlayerEventTypes.html#/s:13THEOplayerSDK16PlayerEventTypesV7SEEKINGAA0D4TypeCyAA07SeekingD0CGvpZ":{"name":"SEEKING","abstract":"

    Fired when SeekingEvent occurs.

    ","parent_name":"PlayerEventTypes"},"Structs/PlayerEventTypes.html#/s:13THEOplayerSDK16PlayerEventTypesV6SEEKEDAA0D4TypeCyAA06SeekedD0CGvpZ":{"name":"SEEKED","abstract":"

    Fired when SeekedEvent occurs.

    ","parent_name":"PlayerEventTypes"},"Structs/PlayerEventTypes.html#/s:13THEOplayerSDK16PlayerEventTypesV7WAITINGAA0D4TypeCyAA07WaitingD0CGvpZ":{"name":"WAITING","abstract":"

    Fired when WaitingEvent occurs.

    ","parent_name":"PlayerEventTypes"},"Structs/PlayerEventTypes.html#/s:13THEOplayerSDK16PlayerEventTypesV11TIME_UPDATEAA0D4TypeCyAA010TimeUpdateD0CGvpZ":{"name":"TIME_UPDATE","abstract":"

    Fired when TimeUpdateEvent occurs.

    ","parent_name":"PlayerEventTypes"},"Structs/PlayerEventTypes.html#/s:13THEOplayerSDK16PlayerEventTypesV5ENDEDAA0D4TypeCyAA05EndedD0CGvpZ":{"name":"ENDED","abstract":"

    Fired when EndedEvent occurs.

    ","parent_name":"PlayerEventTypes"},"Structs/PlayerEventTypes.html#/s:13THEOplayerSDK16PlayerEventTypesV11RATE_CHANGEAA0D4TypeCyAA010RateChangeD0CGvpZ":{"name":"RATE_CHANGE","abstract":"

    Fired when RateChangeEvent occurs.

    ","parent_name":"PlayerEventTypes"},"Structs/PlayerEventTypes.html#/s:13THEOplayerSDK16PlayerEventTypesV18READY_STATE_CHANGEAA0D4TypeCyAA016ReadyStateChangeD0CGvpZ":{"name":"READY_STATE_CHANGE","abstract":"

    Fired when ReadyStateChangeEvent occurs.

    ","parent_name":"PlayerEventTypes"},"Structs/PlayerEventTypes.html#/s:13THEOplayerSDK16PlayerEventTypesV16LOADED_META_DATAAA0D4TypeCyAA014LoadedMetaDataD0CGvpZ":{"name":"LOADED_META_DATA","abstract":"

    Fired when LoadedMetaDataEvent occurs.

    ","parent_name":"PlayerEventTypes"},"Structs/PlayerEventTypes.html#/s:13THEOplayerSDK16PlayerEventTypesV11LOADED_DATAAA0D4TypeCyAA010LoadedDataD0CGvpZ":{"name":"LOADED_DATA","abstract":"

    Fired when LoadedDataEvent occurs.

    ","parent_name":"PlayerEventTypes"},"Structs/PlayerEventTypes.html#/s:13THEOplayerSDK16PlayerEventTypesV10LOAD_STARTAA0D4TypeCyAA09LoadStartD0CGvpZ":{"name":"LOAD_START","abstract":"

    Fired when LoadStartEvent occurs.

    ","parent_name":"PlayerEventTypes"},"Structs/PlayerEventTypes.html#/s:13THEOplayerSDK16PlayerEventTypesV8CAN_PLAYAA0D4TypeCyAA07CanPlayD0CGvpZ":{"name":"CAN_PLAY","abstract":"

    Fired when CanPlayEvent occurs.

    ","parent_name":"PlayerEventTypes"},"Structs/PlayerEventTypes.html#/s:13THEOplayerSDK16PlayerEventTypesV16CAN_PLAY_THROUGHAA0D4TypeCyAA014CanPlayThroughD0CGvpZ":{"name":"CAN_PLAY_THROUGH","abstract":"

    Fired when CanPlayThroughEvent occurs.

    ","parent_name":"PlayerEventTypes"},"Structs/PlayerEventTypes.html#/s:13THEOplayerSDK16PlayerEventTypesV5ERRORAA0D4TypeCyAA05ErrorD0CGvpZ":{"name":"ERROR","abstract":"

    Fired when ErrorEvent occurs.

    ","parent_name":"PlayerEventTypes"},"Structs/PlayerEventTypes.html#/s:13THEOplayerSDK16PlayerEventTypesV15DURATION_CHANGEAA0D4TypeCyAA014DurationChangeD0CGvpZ":{"name":"DURATION_CHANGE","abstract":"

    Fired when DurationChangeEvent occurs.

    ","parent_name":"PlayerEventTypes"},"Structs/PlayerEventTypes.html#/s:13THEOplayerSDK16PlayerEventTypesV13SOURCE_CHANGEAA0D4TypeCyAA012SourceChangeD0CGvpZ":{"name":"SOURCE_CHANGE","abstract":"

    Fired when SourceChangeEvent occurs.

    ","parent_name":"PlayerEventTypes"},"Structs/PlayerEventTypes.html#/s:13THEOplayerSDK16PlayerEventTypesV21CURRENT_SOURCE_CHANGEAA0D4TypeCyAA019CurrentSourceChangeD0CGvpZ":{"name":"CURRENT_SOURCE_CHANGE","abstract":"

    Fired when the current source, which is chosen from SourceDescription.sources, changes.

    ","parent_name":"PlayerEventTypes"},"Structs/PlayerEventTypes.html#/s:13THEOplayerSDK16PlayerEventTypesV24PRESENTATION_MODE_CHANGEAA0D4TypeCyAA022PresentationModeChangeD0CGvpZ":{"name":"PRESENTATION_MODE_CHANGE","abstract":"

    Fired when PresentationModeChangeEvent occurs.

    ","parent_name":"PlayerEventTypes"},"Structs/PlayerEventTypes.html#/s:13THEOplayerSDK16PlayerEventTypesV19ASPECT_RATIO_CHANGEAA0D4TypeCyAA017AspectRatioChangeD0CGvpZ":{"name":"ASPECT_RATIO_CHANGE","abstract":"

    Fired when AspectRatioChangeEvent occurs.

    ","parent_name":"PlayerEventTypes"},"Structs/PlayerEventTypes.html#/s:13THEOplayerSDK16PlayerEventTypesV13VOLUME_CHANGEAA0D4TypeCyAA012VolumeChangeD0CGvpZ":{"name":"VOLUME_CHANGE","abstract":"

    Fired when VolumeChangeEvent occurs.

    ","parent_name":"PlayerEventTypes"},"Structs/PlayerEventTypes.html#/s:13THEOplayerSDK16PlayerEventTypesV6RESIZEAA0D4TypeCyAA06ResizeD0CGvpZ":{"name":"RESIZE","abstract":"

    Fired when ResizeEvent occurs.

    ","parent_name":"PlayerEventTypes"},"Structs/PlayerEventTypes.html#/s:13THEOplayerSDK16PlayerEventTypesV7DESTROYAA0D4TypeCyAA07DestroyD0CGvpZ":{"name":"DESTROY","abstract":"

    Fired when DestroyEvent occurs.

    ","parent_name":"PlayerEventTypes"},"Structs/PlayerEventTypes.html#/s:13THEOplayerSDK16PlayerEventTypesV9ENCRYPTEDAA0D4TypeCyAA09EncryptedD0CGvpZ":{"name":"ENCRYPTED","abstract":"

    Fired when the player encounters key system initialization data in the media data.

    ","parent_name":"PlayerEventTypes"},"Structs/PlayerEventTypes.html#/s:13THEOplayerSDK16PlayerEventTypesV26CONTENT_PROTECTION_SUCCESSAA0D4TypeCyAA024ContentProtectionSuccessD0CGvpZ":{"name":"CONTENT_PROTECTION_SUCCESS","abstract":"

    Fired when the key is usable for decryption.

    ","parent_name":"PlayerEventTypes"},"Structs/PlayerEventTypes.html":{"name":"PlayerEventTypes","abstract":"

    The types of Player events.

    "},"Classes/SourceChangeEvent.html":{"name":"SourceChangeEvent","abstract":"

    Fired when PlayerEventTypes.SOURCE_CHANGE occurs for the THEOplayer.

    "},"Classes/ReadyStateEvent.html":{"name":"ReadyStateEvent","abstract":"

    The base event for all events that change the ReadyState of the player.

    "},"Player%20Events.html#/c:@M@THEOplayerSDK@objc(cs)PlayEvent":{"name":"PlayEvent","abstract":"

    Fired when PlayerEventTypes.PLAY occurs for the THEOplayer.

    "},"Player%20Events.html#/c:@M@THEOplayerSDK@objc(cs)PlayingEvent":{"name":"PlayingEvent","abstract":"

    Fired when PlayerEventTypes.PLAYING occurs for the THEOplayer.

    "},"Player%20Events.html#/c:@M@THEOplayerSDK@objc(cs)PauseEvent":{"name":"PauseEvent","abstract":"

    Fired when PlayerEventTypes.PAUSE occurs for the THEOplayer.

    "},"Player%20Events.html#/c:@M@THEOplayerSDK@objc(cs)ProgressEvent":{"name":"ProgressEvent","abstract":"

    Fired when PlayerEventTypes.PROGRESS occurs for the THEOplayer.

    "},"Classes/DurationChangeEvent.html":{"name":"DurationChangeEvent","abstract":"

    Fired when PlayerEventTypes.DURATION_CHANGE occurs for the THEOplayer.

    "},"Player%20Events.html#/c:@M@THEOplayerSDK@objc(cs)SeekingEvent":{"name":"SeekingEvent","abstract":"

    Fired when PlayerEventTypes.SEEKING occurs for the THEOplayer.

    "},"Player%20Events.html#/c:@M@THEOplayerSDK@objc(cs)SeekedEvent":{"name":"SeekedEvent","abstract":"

    Fired when PlayerEventTypes.SEEKED occurs for the THEOplayer.

    "},"Player%20Events.html#/c:@M@THEOplayerSDK@objc(cs)WaitingEvent":{"name":"WaitingEvent","abstract":"

    Fired when PlayerEventTypes.WAITING occurs for the THEOplayer.

    "},"Classes/TimeUpdateEvent.html":{"name":"TimeUpdateEvent","abstract":"

    Fired when PlayerEventTypes.TIME_UPDATE occurs for the THEOplayer.

    "},"Player%20Events.html#/c:@M@THEOplayerSDK@objc(cs)EndedEvent":{"name":"EndedEvent","abstract":"

    Fired when PlayerEventTypes.ENDED occurs for the THEOplayer.

    "},"Classes/RateChangeEvent.html":{"name":"RateChangeEvent","abstract":"

    Fired when PlayerEventTypes.RATE_CHANGE occurs for the THEOplayer.

    "},"Player%20Events.html#/c:@M@THEOplayerSDK@objc(cs)ReadyStateChangeEvent":{"name":"ReadyStateChangeEvent","abstract":"

    Fired when PlayerEventTypes.READY_STATE_CHANGE occurs for the THEOplayer.

    "},"Player%20Events.html#/c:@M@THEOplayerSDK@objc(cs)LoadedMetaDataEvent":{"name":"LoadedMetaDataEvent","abstract":"

    Fired when PlayerEventTypes.LOADED_META_DATA occurs for the THEOplayer.

    "},"Player%20Events.html#/c:@M@THEOplayerSDK@objc(cs)LoadedDataEvent":{"name":"LoadedDataEvent","abstract":"

    Fired when PlayerEventTypes.LOADED_DATA occurs for the THEOplayer.

    "},"Player%20Events.html#/c:@M@THEOplayerSDK@objc(cs)CanPlayEvent":{"name":"CanPlayEvent","abstract":"

    Fired when PlayerEventTypes.CAN_PLAY occurs for the THEOplayer.

    "},"Player%20Events.html#/c:@M@THEOplayerSDK@objc(cs)CanPlayThroughEvent":{"name":"CanPlayThroughEvent","abstract":"

    Fired when PlayerEventTypes.CAN_PLAY_THROUGH occurs for the THEOplayer.

    "},"Classes/ErrorEvent.html":{"name":"ErrorEvent","abstract":"

    Fired when PlayerEventTypes.ERROR occurs for the THEOplayer.

    "},"Classes/PresentationModeChangeEvent.html":{"name":"PresentationModeChangeEvent","abstract":"

    Fired when PlayerEventTypes.PRESENTATION_MODE_CHANGE occurs for the THEOplayer.

    "},"Classes/VolumeChangeEvent.html":{"name":"VolumeChangeEvent","abstract":"

    Fired when PlayerEventTypes.VOLUME_CHANGE occurs for the THEOplayer.

    "},"Player%20Events.html#/c:@M@THEOplayerSDK@objc(cs)ResizeEvent":{"name":"ResizeEvent","abstract":"

    Fired when PlayerEventTypes.RESIZE occurs for the THEOplayer.

    "},"Player%20Events.html#/c:@M@THEOplayerSDK@objc(cs)LoadStartEvent":{"name":"LoadStartEvent","abstract":"

    Fired when PlayerEventTypes.LOAD_START occurs for the THEOplayer.

    "},"Player%20Events.html#/c:@M@THEOplayerSDK@objc(cs)DestroyEvent":{"name":"DestroyEvent","abstract":"

    Fired when PlayerEventTypes.DESTROY occurs for the THEOplayer.

    "},"Protocols/BackgroundPlaybackDelegate.html#/s:13THEOplayerSDK26BackgroundPlaybackDelegateP019shouldContinueAudiod2InC0SbyF":{"name":"shouldContinueAudioPlaybackInBackground()","abstract":"

    Decides whether audio should continue playing when the application goes to background and the video is not visible anymore.

    ","parent_name":"BackgroundPlaybackDelegate"},"Classes/Metrics.html#/s:13THEOplayerSDK7MetricsC18droppedVideoFramesSivp":{"name":"droppedVideoFrames","abstract":"

    The total number of dropped video frames.

    ","parent_name":"Metrics"},"Classes/Metrics.html#/s:13THEOplayerSDK7MetricsC17renderedFramerateSdvp":{"name":"renderedFramerate","abstract":"

    The rendered frame rate of the video as it plays, in units of frames per second.

    ","parent_name":"Metrics"},"Enums/Preload.html#/s:13THEOplayerSDK7PreloadO4noneyA2CmF":{"name":"none","abstract":"

    The player will not load any data.

    ","parent_name":"Preload"},"Enums/Preload.html#/s:13THEOplayerSDK7PreloadO4autoyA2CmF":{"name":"auto","abstract":"

    The player will load the metadata and the media.

    ","parent_name":"Preload"},"Enums/Preload.html#/s:13THEOplayerSDK7PreloadO8metadatayA2CmF":{"name":"metadata","abstract":"

    The player will load the metadata.

    ","parent_name":"Preload"},"Enums/Preload.html#/s:13THEOplayerSDK7PreloadO9_rawValueSSvp":{"name":"_rawValue","abstract":"

    The raw value of type String.

    ","parent_name":"Preload"},"Enums/PresentationMode.html#/s:13THEOplayerSDK16PresentationModeO6inlineyA2CmF":{"name":"inline","abstract":"

    The player is shown in its original location in the view.

    ","parent_name":"PresentationMode"},"Enums/PresentationMode.html#/s:13THEOplayerSDK16PresentationModeO10fullscreenyA2CmF":{"name":"fullscreen","abstract":"

    The player fills the entire screen and overlays all the other view controllers.

    ","parent_name":"PresentationMode"},"Enums/PresentationMode.html#/s:13THEOplayerSDK16PresentationModeO16pictureInPictureyA2CmF":{"name":"pictureInPicture","abstract":"

    The player is shown in a window that overlays all the views. Further configurations can be made through PictureInPicture.configure

    ","parent_name":"PresentationMode"},"Enums/PresentationMode.html#/s:13THEOplayerSDK16PresentationModeO9_rawValueSSvp":{"name":"_rawValue","abstract":"

    The raw value of type String.

    ","parent_name":"PresentationMode"},"Enums/ReadyState.html#/s:13THEOplayerSDK10ReadyStateO12HAVE_NOTHINGyA2CmF":{"name":"HAVE_NOTHING","abstract":"

    The player has no information about the duration of its source.

    ","parent_name":"ReadyState"},"Enums/ReadyState.html#/s:13THEOplayerSDK10ReadyStateO13HAVE_METADATAyA2CmF":{"name":"HAVE_METADATA","abstract":"

    The player has information about the duration of its source.

    ","parent_name":"ReadyState"},"Enums/ReadyState.html#/s:13THEOplayerSDK10ReadyStateO17HAVE_CURRENT_DATAyA2CmF":{"name":"HAVE_CURRENT_DATA","abstract":"

    The player has its current frame in its buffer.

    ","parent_name":"ReadyState"},"Enums/ReadyState.html#/s:13THEOplayerSDK10ReadyStateO16HAVE_FUTURE_DATAyA2CmF":{"name":"HAVE_FUTURE_DATA","abstract":"

    The player has enough data for the current playback position, as well as for at least a little bit of time into the future (at least two frames of video, for example).

    ","parent_name":"ReadyState"},"Enums/ReadyState.html#/s:13THEOplayerSDK10ReadyStateO16HAVE_ENOUGH_DATAyA2CmF":{"name":"HAVE_ENOUGH_DATA","abstract":"

    The player has enough data available, and the download rate is high enough that the media can be played through to the end without interruption.

    ","parent_name":"ReadyState"},"Protocols/Cast.html#/s:13THEOplayerSDK4CastP7castingSbvp":{"name":"casting","abstract":"

    Whether THEOplayer is currently connected with a casting device.

    ","parent_name":"Cast"},"Protocols/Cast.html#/s:13THEOplayerSDK4CastP10chromecastAA10Chromecast_pSgvp":{"name":"chromecast","abstract":"

    A Chromecast integration object that allows you to cast to Chromecast and inspect its state.

    ","parent_name":"Cast"},"Protocols/Cast.html#/s:13THEOplayerSDK4CastP7airPlayAA03AirE0_pSgvp":{"name":"airPlay","abstract":"

    An AirPlay integration object that allows you to cast to AirPlay and inspect its state.

    ","parent_name":"Cast"},"Classes/THEOplayerConfiguration.html#/s:13THEOplayerSDK0A13ConfigurationC12hlsDateRangeSbSgvp":{"name":"hlsDateRange","abstract":"

    Whether the logic to expose date ranges parsed from HLS manifests is enabled.

    ","parent_name":"THEOplayerConfiguration"},"Classes/THEOplayerConfiguration.html#/s:13THEOplayerSDK0A13ConfigurationC7licenseSSSgvp":{"name":"license","abstract":"

    The license for the player.

    ","parent_name":"THEOplayerConfiguration"},"Classes/THEOplayerConfiguration.html#/s:13THEOplayerSDK0A13ConfigurationC10licenseUrlSSSgvp":{"name":"licenseUrl","abstract":"

    The url to fetch the license for the player.

    ","parent_name":"THEOplayerConfiguration"},"Classes/THEOplayerConfiguration.html#/s:13THEOplayerSDK0A13ConfigurationC3pipAA16PiPConfigurationCSgvp":{"name":"pip","abstract":"

    The picture in picture configuration of the player.

    ","parent_name":"THEOplayerConfiguration"},"Classes/THEOplayerConfiguration.html#/s:13THEOplayerSDK0A13ConfigurationC7networkAA07NetworkC0CSgvp":{"name":"network","abstract":"

    The network configuration of the player.

    ","parent_name":"THEOplayerConfiguration"},"Classes/THEOplayerConfiguration.html#/s:13THEOplayerSDK0A13ConfigurationC16autoIntegrationsSbvp":{"name":"autoIntegrations","abstract":"

    Flag that enables the player to automatically look for THEOplayer integration libraries (e.g. THEOlive) and register those on the player instance.","parent_name":"THEOplayerConfiguration"},"Classes/THEOplayerConfiguration.html#/s:13THEOplayerSDK0A13ConfigurationC3uidSiSgvp":{"name":"uid","abstract":"

    The unique identifier of the player.

    ","parent_name":"THEOplayerConfiguration"},"Classes/THEOplayerConfiguration.html#/s:13THEOplayerSDK0A13ConfigurationC6encode2toys7Encoder_p_tKF":{"name":"encode(to:)","abstract":"

    :nodoc

    ","parent_name":"THEOplayerConfiguration"},"Classes/THEOplayer.html#/s:13THEOplayerSDK0A0C26backgroundPlaybackDelegateAA010BackgrounddE0_pSgvp":{"name":"backgroundPlaybackDelegate","abstract":"

    The delegate defining behavior for background playback

    ","parent_name":"THEOplayer"},"Classes/THEOplayer.html#/s:13THEOplayerSDK0A0C4with13configurationACSo6CGRectVSg_AA0A13ConfigurationCSgtcfc":{"name":"init(with:configuration:)","abstract":"

    Create a new instance of THEOplayer with a frame.

    ","parent_name":"THEOplayer"},"Classes/THEOplayer.html#/s:13THEOplayerSDK0A0C7versionSSvpZ":{"name":"version","abstract":"

    THEOplayer’s Version.

    ","parent_name":"THEOplayer"},"Classes/THEOplayer.html#/s:13THEOplayerSDK0A0C5frameSo6CGRectVvp":{"name":"frame","abstract":"

    The frame rectangle, which describes the THEOplayer view’s location and size in its superview’s coordinate system.

    ","parent_name":"THEOplayer"},"Classes/THEOplayer.html#/s:13THEOplayerSDK0A0C6boundsSo6CGRectVvp":{"name":"bounds","abstract":"

    The bounds rectangle, which describes the THEOplayer view’s location and size in its own coordinate system.

    ","parent_name":"THEOplayer"},"Classes/THEOplayer.html#/s:13THEOplayerSDK0A0C6centerSo7CGPointVvp":{"name":"center","abstract":"

    The center of the THEOplayer view’s frame.

    ","parent_name":"THEOplayer"},"Classes/THEOplayer.html#/s:13THEOplayerSDK0A0C16autoresizingMaskSo18UIViewAutoresizingVvp":{"name":"autoresizingMask","abstract":"

    An integer bit mask that determines how the THEOplayer view resizes itself when its superview’s bounds change.

    ","parent_name":"THEOplayer"},"Classes/THEOplayer.html#/s:13THEOplayerSDK0A0C11videoHeightSivp":{"name":"videoHeight","abstract":"

    Returns the height of the video in pixels for the current quality.

    ","parent_name":"THEOplayer"},"Classes/THEOplayer.html#/s:13THEOplayerSDK0A0C10videoWidthSivp":{"name":"videoWidth","abstract":"

    Returns the width of the video in pixels for the current quality.

    ","parent_name":"THEOplayer"},"Classes/THEOplayer.html#/c:@M@THEOplayerSDK@objc(cs)THEOplayer(py)videoRect":{"name":"videoRect","abstract":"

    Returns the current size and position of the video image as displayed within the receiver’s bounds.

    ","parent_name":"THEOplayer"},"Classes/THEOplayer.html#/s:13THEOplayerSDK0A0C23resizeTransitionEnabledSbvp":{"name":"resizeTransitionEnabled","abstract":"

    Enables or disables the transition animation when resizing the player. Defaults to true.

    ","parent_name":"THEOplayer"},"Classes/THEOplayer.html#/s:13THEOplayerSDK0A0C3abrAA16ABRConfiguration_pvp":{"name":"abr","abstract":"

    Allows you to modify the player’s ABR behavior. See documentation for ABRConfiguration to see how this is done.

    ","parent_name":"THEOplayer"},"Classes/THEOplayer.html#/s:13THEOplayerSDK0A0C11aspectRatioAA06AspectD0Ovp":{"name":"aspectRatio","abstract":"

    Specifies how to handle the aspect ratio of the content.

    ","parent_name":"THEOplayer"},"Classes/THEOplayer.html#/s:13THEOplayerSDK0A0C7networkAA7Network_pvp":{"name":"network","abstract":"

    The network status of the player which can be used to monitor the network related errors.

    ","parent_name":"THEOplayer"},"Classes/THEOplayer.html#/s:13THEOplayerSDK0A0C10textTracksAA13TextTrackList_pvp":{"name":"textTracks","abstract":"

    The list of Text Tracks.

    ","parent_name":"THEOplayer"},"Classes/THEOplayer.html#/s:13THEOplayerSDK0A0C11audioTracksAA14AudioTrackList_pvp":{"name":"audioTracks","abstract":"

    The list of Audio Tracks.

    ","parent_name":"THEOplayer"},"Classes/THEOplayer.html#/s:13THEOplayerSDK0A0C11videoTracksAA14VideoTrackList_pvp":{"name":"videoTracks","abstract":"

    The list of Video Tracks.

    ","parent_name":"THEOplayer"},"Classes/THEOplayer.html#/s:13THEOplayerSDK0A0C8durationSdSgvp":{"name":"duration","abstract":"

    The length of the currently loaded video, in seconds.

    ","parent_name":"THEOplayer"},"Classes/THEOplayer.html#/s:13THEOplayerSDK0A0C8autoplaySbvp":{"name":"autoplay","abstract":"

    Sets or returns if the video should automatically start playing.

    ","parent_name":"THEOplayer"},"Classes/THEOplayer.html#/s:13THEOplayerSDK0A0C6sourceAA17SourceDescriptionCSgvp":{"name":"source","abstract":"

    Sets or returns the current source of the video.

    ","parent_name":"THEOplayer"},"Classes/THEOplayer.html#/s:13THEOplayerSDK0A0C3srcSSSgvp":{"name":"src","abstract":"

    Returns the current source URL of the video.

    ","parent_name":"THEOplayer"},"Classes/THEOplayer.html#/s:13THEOplayerSDK0A0C6volumeSfvp":{"name":"volume","abstract":"

    Sets or returns the volume of the video.

    ","parent_name":"THEOplayer"},"Classes/THEOplayer.html#/s:13THEOplayerSDK0A0C5mutedSbvp":{"name":"muted","abstract":"

    Sets or returns whether the audio output of the video is muted.

    ","parent_name":"THEOplayer"},"Classes/THEOplayer.html#/s:13THEOplayerSDK0A0C7seekingSbvp":{"name":"seeking","abstract":"

    Return whether the video is seeking.

    ","parent_name":"THEOplayer"},"Classes/THEOplayer.html#/s:13THEOplayerSDK0A0C6pausedSbvp":{"name":"paused","abstract":"

    Returns whether the video is paused.

    ","parent_name":"THEOplayer"},"Classes/THEOplayer.html#/s:13THEOplayerSDK0A0C5endedSbvp":{"name":"ended","abstract":"

    Returns whether the video has ended.

    ","parent_name":"THEOplayer"},"Classes/THEOplayer.html#/s:13THEOplayerSDK0A0C39preventsDisplaySleepDuringVideoPlaybackSbvp":{"name":"preventsDisplaySleepDuringVideoPlayback","abstract":"

    Prevents the display from sleeping during video playback. Defaults to true.

    ","parent_name":"THEOplayer"},"Classes/THEOplayer.html#/s:13THEOplayerSDK0A0C22allowsExternalPlaybackSbvp":{"name":"allowsExternalPlayback","abstract":"

    Whether to allow the player to playback externally (Airplay).","parent_name":"THEOplayer"},"Classes/THEOplayer.html#/s:13THEOplayerSDK0A0C7preloadAA7PreloadOvp":{"name":"preload","abstract":"

    Returns whether the player should preload a certain type of data.

    ","parent_name":"THEOplayer"},"Classes/THEOplayer.html#/s:13THEOplayerSDK0A0C12playbackRateSdvp":{"name":"playbackRate","abstract":"

    Returns current playback rate of the player.

    ","parent_name":"THEOplayer"},"Classes/THEOplayer.html#/s:13THEOplayerSDK0A0C8bufferedSayAA9TimeRangeCGvp":{"name":"buffered","abstract":"

    Returns the buffered TimeRanges of the player.

    ","parent_name":"THEOplayer"},"Classes/THEOplayer.html#/s:13THEOplayerSDK0A0C6playedSayAA9TimeRangeCGvp":{"name":"played","abstract":"

    Returns the played TimeRanges of the player.

    ","parent_name":"THEOplayer"},"Classes/THEOplayer.html#/s:13THEOplayerSDK0A0C8seekableSayAA9TimeRangeCGvp":{"name":"seekable","abstract":"

    Returns the seekable TimeRanges of the player.

    ","parent_name":"THEOplayer"},"Classes/THEOplayer.html#/s:13THEOplayerSDK0A0C7metricsypSgvp":{"name":"metrics","abstract":"

    Returns the Metrics data.

    ","parent_name":"THEOplayer"},"Classes/THEOplayer.html#/s:13THEOplayerSDK0A0C13playerMetricsAA0D0Cvp":{"name":"playerMetrics","abstract":"

    The metrics API.

    ","parent_name":"THEOplayer"},"Classes/THEOplayer.html#/s:13THEOplayerSDK0A0C16presentationModeAA012PresentationD0Ovp":{"name":"presentationMode","abstract":"

    Sets or returns the presentationMode of the player.

    ","parent_name":"THEOplayer"},"Classes/THEOplayer.html#/s:13THEOplayerSDK0A0C10readyStateAA05ReadyD0Ovp":{"name":"readyState","abstract":"

    Returns the readystate of the player.

    ","parent_name":"THEOplayer"},"Classes/THEOplayer.html#/s:13THEOplayerSDK0A0C5errorSSSgvp":{"name":"error","abstract":"

    Returns the last encountered player error.

    ","parent_name":"THEOplayer"},"Classes/THEOplayer.html#/s:13THEOplayerSDK0A0C3uidSivp":{"name":"uid","abstract":"

    Returns the unique ID of the player

    ","parent_name":"THEOplayer"},"Classes/THEOplayer.html#/s:13THEOplayerSDK0A0C11currentTimeSdvp":{"name":"currentTime","abstract":"

    The current playback position of the video, in seconds. Setting it allows to change the playback position.

    ","parent_name":"THEOplayer"},"Classes/THEOplayer.html#/s:13THEOplayerSDK0A0C22currentProgramDateTime10Foundation0E0VSgvp":{"name":"currentProgramDateTime","abstract":"

    Returns the current playback position of the media, as a timestamp.

    ","parent_name":"THEOplayer"},"Classes/THEOplayer.html#/s:13THEOplayerSDK0A0C31automaticallyManageAudioSessionSbvpZ":{"name":"automaticallyManageAudioSession","abstract":"

    Sets whether THEOplayer automatically manages the AVAudioSession.

    ","parent_name":"THEOplayer"},"Classes/THEOplayer.html#/s:13THEOplayerSDK0A0C4playyyF":{"name":"play()","abstract":"

    After invoking this method, the player starts playback.

    ","parent_name":"THEOplayer"},"Classes/THEOplayer.html#/s:13THEOplayerSDK0A0C5pauseyyF":{"name":"pause()","abstract":"

    After invoking this method, the player pauses playback.

    ","parent_name":"THEOplayer"},"Classes/THEOplayer.html#/s:13THEOplayerSDK0A0C4stop17completionHandleryySbSg_s5Error_pSgtcSg_tF":{"name":"stop(completionHandler:)","abstract":"

    After invoking this method, the player stops playback completely and unloads all loaded resources.

    ","parent_name":"THEOplayer"},"Classes/THEOplayer.html#/s:13THEOplayerSDK0A0C16addEventListener4type8listenerAA0dE0_pAA0D4TypeCyxG_yxctAA0D8ProtocolRzlF":{"name":"addEventListener(type:listener:)","abstract":"

    Adds the given event listener of the given PlayerEventType.

    ","parent_name":"THEOplayer"},"Classes/THEOplayer.html#/s:13THEOplayerSDK0A0C19removeEventListener4type8listeneryAA0D4TypeCyxG_AA0dE0_ptAA0D8ProtocolRzlF":{"name":"removeEventListener(type:listener:)","abstract":"

    Removes the given event listener of the given PlayerEventType.

    ","parent_name":"THEOplayer"},"Classes/THEOplayer.html#/s:13THEOplayerSDK0A0C14setCurrentTime_17completionHandlerySd_yypSg_s5Error_pSgtcSgtF":{"name":"setCurrentTime(_:completionHandler:)","abstract":"

    Sets the current playback position in the video.

    ","parent_name":"THEOplayer"},"Classes/THEOplayer.html#/s:13THEOplayerSDK0A0C25setCurrentProgramDateTime_17completionHandlery10Foundation0F0V_yypSg_s5Error_pSgtcSgtF":{"name":"setCurrentProgramDateTime(_:completionHandler:)","abstract":"

    Sets the current ProgramDateTime of the player.

    ","parent_name":"THEOplayer"},"Classes/THEOplayer.html#/s:13THEOplayerSDK0A0C12addAsSubview2ofySo6UIViewC_tF":{"name":"addAsSubview(of:)","abstract":"

    Adds the THEOplayer view to the end of the parameter view’s list of subviews.

    ","parent_name":"THEOplayer"},"Classes/THEOplayer.html#/s:13THEOplayerSDK0A0C15insertAsSubview2of2atySo6UIViewC_SitF":{"name":"insertAsSubview(of:at:)","abstract":"

    Inserts the THEOplayer view at the specified index of the parameter view’s list of subviews.

    ","parent_name":"THEOplayer"},"Classes/THEOplayer.html#/s:13THEOplayerSDK0A0C15insertAsSubview2of05belowE0ySo6UIViewC_AHtF":{"name":"insertAsSubview(of:belowSubview:)","abstract":"

    Inserts the THEOplayer view below another view in the parameter view’s hierarchy.

    ","parent_name":"THEOplayer"},"Classes/THEOplayer.html#/s:13THEOplayerSDK0A0C15insertAsSubview2of05aboveE0ySo6UIViewC_AHtF":{"name":"insertAsSubview(of:aboveSubview:)","abstract":"

    Inserts the THEOplayer view above another view in the parameter view’s hierarchy.

    ","parent_name":"THEOplayer"},"Classes/THEOplayer.html#/s:13THEOplayerSDK0A0C11isContained2inSbSaySo6UIViewCG_tF":{"name":"isContained(in:)","abstract":"

    Returns a Boolean value indicating whether THEOplayer is contained in the given array of UIview.

    ","parent_name":"THEOplayer"},"Classes/THEOplayer.html#/s:13THEOplayerSDK0A0C36registerContentProtectionIntegration13integrationId9keySystem0G7FactoryySS_AA03KeyjH0OAA0defK0_ptFZ":{"name":"registerContentProtectionIntegration(integrationId:keySystem:integrationFactory:)","abstract":"

    Register a content protection integration

    ","parent_name":"THEOplayer"},"Classes/THEOplayer.html#/s:13THEOplayerSDK0A0C14addIntegrationyyAA0D0_pF":{"name":"addIntegration(_:)","abstract":"

    Add an Integration to the THEOplayer instance .

    ","parent_name":"THEOplayer"},"Classes/THEOplayer.html#/s:13THEOplayerSDK0A0C17removeIntegrationyyAA0D0_pF":{"name":"removeIntegration(_:)","abstract":"

    Removes an Integration from the THEOplayer instance.

    ","parent_name":"THEOplayer"},"Classes/THEOplayer.html#/s:13THEOplayerSDK0A0C21removeAllIntegrationsyyF":{"name":"removeAllIntegrations()","abstract":"

    Removes all Integrations from the THEOplayer instance.

    ","parent_name":"THEOplayer"},"Classes/THEOplayer.html#/s:13THEOplayerSDK0A0C18getAllIntegrationsSayAA11Integration_pGyF":{"name":"getAllIntegrations()","abstract":"

    Returns all registered Integrations on the THEOplayer instance

    ","parent_name":"THEOplayer"},"Classes/THEOplayer.html#/s:13THEOplayerSDK0A0C20getIntegrationByKindyAA0D0_pSgAA0dF0OF":{"name":"getIntegrationByKind(_:)","abstract":"

    Returns the registered Integration on the THEOplayer instance of the specified kind. Returns nil if not found.

    ","parent_name":"THEOplayer"},"Classes/THEOplayer.html#/s:13THEOplayerSDK0A0C14textTrackStyleAA04TextdE0_pSgvp":{"name":"textTrackStyle","abstract":"

    API to configure TextTrack styles (for subtitles)

    ","parent_name":"THEOplayer"},"Classes/THEOplayer.html#/s:13THEOplayerSDK0A0C4castAA4Cast_pSgvp":{"name":"cast","abstract":"

    The Cast object helps you configure and control casting to external devices with THEOplayer.

    ","parent_name":"THEOplayer"},"Classes/THEOplayer.html#/s:13THEOplayerSDK0A0C10fullscreenAA10Fullscreen_pvp":{"name":"fullscreen","abstract":"

    The Fullscreen api of theoplayer.

    ","parent_name":"THEOplayer"},"Classes/THEOplayer.html#/s:13THEOplayerSDK0A0C20addGestureRecognizeryySo09UIGestureE0CF":{"name":"addGestureRecognizer(_:)","abstract":"

    Attaches a gesture recognizer to THEOplayer.

    ","parent_name":"THEOplayer"},"Classes/THEOplayer.html#/s:13THEOplayerSDK0A0C23removeGestureRecognizeryySo09UIGestureE0CF":{"name":"removeGestureRecognizer(_:)","abstract":"

    Detaches a gesture recognizer from THEOplayer.

    ","parent_name":"THEOplayer"},"Classes/THEOplayer.html#/s:13THEOplayerSDK0A0C18gestureRecognizersSaySo19UIGestureRecognizerCGSgvp":{"name":"gestureRecognizers","abstract":"

    List of the gesture recognizers attached to THEOplayer.

    ","parent_name":"THEOplayer"},"Classes/THEOplayer.html#/s:13THEOplayerSDK0A0C3adsAA3Ads_pvp":{"name":"ads","abstract":"

    An Ads object that contains information about the current and the scheduled advertisements.

    ","parent_name":"THEOplayer"},"Classes/THEOplayer.html#/s:13THEOplayerSDK0A0C3pipAA09PictureInD0_pSgvp":{"name":"pip","abstract":"

    A PictureInPicture object to configure Picture-In-Picture.

    ","parent_name":"THEOplayer"},"Classes/THEOplayer.html#/s:13THEOplayerSDK0A0C29fullscreenOrientationCouplingSbvp":{"name":"fullscreenOrientationCoupling","abstract":"

    Whether the fullscreen mode is coupled to device orientation, defaults to false.

    ","parent_name":"THEOplayer"},"Classes/THEOplayer.html#/s:13THEOplayerSDK0A0C5cacheAA5Cache_pvpZ":{"name":"cache","abstract":"

    The Cache object to access the caching API.

    ","parent_name":"THEOplayer"},"Classes/THEOplayer.html":{"name":"THEOplayer","abstract":"

    The THEOplayer object.

    "},"Classes/THEOplayerConfiguration.html":{"name":"THEOplayerConfiguration","abstract":"

    The configuration for a THEOplayer instance.

    "},"Protocols/Cast.html":{"name":"Cast","abstract":"

    The Cast object helps you configure and control casting to external devices with THEOplayer.

    "},"Enums/ReadyState.html":{"name":"ReadyState","abstract":"

    The ready state of the player.

    "},"Enums/PresentationMode.html":{"name":"PresentationMode","abstract":"

    The presentation mode specifies how the player will be displayed.

    "},"Enums/Preload.html":{"name":"Preload","abstract":"

    The preload strategy of the player. The strategy specifies what data to load on source change.

    "},"Classes/Metrics.html":{"name":"Metrics","abstract":"

    The metrics API which can be used to gather information related to the quality-of-service and video playback experience.

    "},"Protocols/BackgroundPlaybackDelegate.html":{"name":"BackgroundPlaybackDelegate","abstract":"

    A delegate defining behavior for background playback.

    "},"THEOplayer%20API.html":{"name":"THEOplayer API"},"Player%20Events.html":{"name":"Player Events"},"Track%20List%20API.html":{"name":"Track List API"},"Track%20List%20Events.html":{"name":"Track List Events"},"Track%20API.html":{"name":"Track API"},"Track%20Events.html":{"name":"Track Events"},"Text%20Track%20Cue%20API.html":{"name":"Text Track Cue API"},"Text%20Track%20Cue%20Events.html":{"name":"Text Track Cue Events"},"Text%20Track%20Styling%20API.html":{"name":"Text Track Styling API"},"Source%20Description%20API.html":{"name":"Source Description API"},"Content%20Protection.html":{"name":"Content Protection"},"SSAI.html":{"name":"SSAI"},"CSAI.html":{"name":"CSAI"},"Ads%20API.html":{"name":"Ads API"},"Ads%20Events.html":{"name":"Ads Events"},"ChromeCast%20API.html":{"name":"ChromeCast API"},"ChromeCast%20Events.html":{"name":"ChromeCast Events"},"Airplay%20API.html":{"name":"Airplay API"},"Airplay%20Events.html":{"name":"Airplay Events"},"Picture-In-Picture.html":{"name":"Picture-In-Picture"},"Fullscreen%20API.html":{"name":"Fullscreen API"},"Fullscreen%20Events.html":{"name":"Fullscreen Events"},"Network%20Events.html":{"name":"Network Events"},"Error%20API.html":{"name":"Error API"},"Cache%20API.html":{"name":"Cache API"},"Cache%20Events.html":{"name":"Cache Events"},"Adaptive%20Bit%20Rate%20API.html":{"name":"Adaptive Bit Rate API"},"External%20Content%20Protection%20integration%20API.html":{"name":"External Content Protection integration API"},"Util.html":{"name":"Util"},"Base%20classes%20%26%20interfaces.html":{"name":"Base classes & interfaces"},"Other%20Classes.html":{"name":"Other Classes","abstract":"

    The following classes are available globally.

    "},"Other%20Extensions.html":{"name":"Other Extensions","abstract":"

    The following extensions are available globally.

    "},"Other%20Protocols.html":{"name":"Other Protocols","abstract":"

    The following protocols are available globally.

    "},"Other%20Structs.html":{"name":"Other Structures","abstract":"

    The following structures are available globally.

    "}} \ No newline at end of file +{"Structs/THEOAdDescription/LayoutOverride.html#/s:13THEOplayerSDK17THEOAdDescriptionV14LayoutOverrideO6singleyA2EmF":{"name":"single","abstract":"

    Override to play all ad breaks using the “single” layout mode.

    ","parent_name":"LayoutOverride"},"Structs/THEOAdDescription/LayoutOverride.html#/s:13THEOplayerSDK17THEOAdDescriptionV14LayoutOverrideO6lShapeyA2EmF":{"name":"lShape","abstract":"

    Override to play all ad breaks using the “L-shape” layout mode.

    ","parent_name":"LayoutOverride"},"Structs/THEOAdDescription/LayoutOverride.html#/s:13THEOplayerSDK17THEOAdDescriptionV14LayoutOverrideO6doubleyA2EmF":{"name":"double","abstract":"

    Override to play all ad breaks using the “double” layout mode.

    ","parent_name":"LayoutOverride"},"Structs/THEOAdDescription.html#/s:13THEOplayerSDK13AdDescriptionP11integrationAA0C11IntegrationOSgvp":{"name":"integration","parent_name":"THEOAdDescription"},"Structs/THEOAdDescription.html#/s:13THEOplayerSDK17THEOAdDescriptionV11networkCodeSSSgvp":{"name":"networkCode","abstract":"

    Default GAM network code to use for ad requests.

    ","parent_name":"THEOAdDescription"},"Structs/THEOAdDescription.html#/s:13THEOplayerSDK17THEOAdDescriptionV14customAssetKeySSSgvp":{"name":"customAssetKey","abstract":"

    Default GAM custom asset key to use for ad requests.

    ","parent_name":"THEOAdDescription"},"Structs/THEOAdDescription.html#/s:13THEOplayerSDK17THEOAdDescriptionV17backdropDoubleBox10Foundation3URLVSgvp":{"name":"backdropDoubleBox","abstract":"

    Default backdrop image URL to be used as a background for ads with a double box layout.

    ","parent_name":"THEOAdDescription"},"Structs/THEOAdDescription.html#/s:13THEOplayerSDK17THEOAdDescriptionV14backdropLShape10Foundation3URLVSgvp":{"name":"backdropLShape","abstract":"

    Default backdrop image URL to be used as a background for ads in L-shape layout.

    ","parent_name":"THEOAdDescription"},"Structs/THEOAdDescription.html#/s:13THEOplayerSDK17THEOAdDescriptionV14overrideLayoutAC0F8OverrideOSgvp":{"name":"overrideLayout","abstract":"

    Overrides the layout of all THEOads ad breaks, if set.

    ","parent_name":"THEOAdDescription"},"Structs/THEOAdDescription.html#/s:13THEOplayerSDK17THEOAdDescriptionV13overrideAdSrc10Foundation3URLVSgvp":{"name":"overrideAdSrc","abstract":"

    Overrides the ad source of all THEOads ad breaks, if set.

    ","parent_name":"THEOAdDescription"},"Structs/THEOAdDescription.html#/s:13THEOplayerSDK17THEOAdDescriptionV15adTagParametersSDyS2SGSgvp":{"name":"adTagParameters","abstract":"

    The ad tag parameters added to the GAM stream request.

    ","parent_name":"THEOAdDescription"},"Structs/THEOAdDescription.html#/s:13THEOplayerSDK17THEOAdDescriptionV23streamActivityMonitorIdSSSgvp":{"name":"streamActivityMonitorId","abstract":"

    The streamActivityMonitorId added to the GAM Pod stream request.

    ","parent_name":"THEOAdDescription"},"Structs/THEOAdDescription.html#/s:13THEOplayerSDK17THEOAdDescriptionV6useId3Sbvp":{"name":"useId3","abstract":"

    Whether to use the ID3-based operating mode.

    ","parent_name":"THEOAdDescription"},"Structs/THEOAdDescription.html#/s:13THEOplayerSDK17THEOAdDescriptionV11sseEndpointSSSgvp":{"name":"sseEndpoint","abstract":"

    The endpoint from where to retrieve the server-sent events.

    ","parent_name":"THEOAdDescription"},"Structs/THEOAdDescription.html#/s:13THEOplayerSDK17THEOAdDescriptionV16retrievePodIdURISSSgvp":{"name":"retrievePodIdURI","abstract":"

    The URI from where to retrieve the PodID’s as returned from the EABN service from Google.

    ","parent_name":"THEOAdDescription"},"Structs/THEOAdDescription.html#/s:13THEOplayerSDK17THEOAdDescriptionV19initializationDelaySdSgvp":{"name":"initializationDelay","abstract":"

    The amount of seconds we wait to initialize THEOads.

    ","parent_name":"THEOAdDescription"},"Structs/THEOAdDescription.html#/s:13THEOplayerSDK17THEOAdDescriptionV12returnToLiveSbvp":{"name":"returnToLive","abstract":"

    Whether to return to the live edge when playing live content, after an ad break ends.

    ","parent_name":"THEOAdDescription"},"Structs/THEOAdDescription.html#/s:13THEOplayerSDK17THEOAdDescriptionV11daiAssetKeySSSgvp":{"name":"daiAssetKey","abstract":"

    The Google DAI asset key which will be used as a fallback source when THEOads is not supported.

    ","parent_name":"THEOAdDescription"},"Structs/THEOAdDescription/LayoutOverride.html":{"name":"LayoutOverride","abstract":"

    Describes how and when the layout of a THEOads ad break should be overridden.

    ","parent_name":"THEOAdDescription"},"Structs/THEOAdDescription.html":{"name":"THEOAdDescription","abstract":"

    Describes how TheoAds should be enabled

    "},"Protocols/DeveloperSettings.html#/s:13THEOplayerSDK17DeveloperSettingsP19manifestInterceptorAA08ManifestF0_pSgvp":{"name":"manifestInterceptor","abstract":"

    Manifest interceptor delegate

    ","parent_name":"DeveloperSettings"},"Protocols/ManifestInterceptor.html#/s:13THEOplayerSDK19ManifestInterceptorP12customSchemeSSvp":{"name":"customScheme","abstract":"

    The custom URL scheme that THEOplayer will use when playing the sources.","parent_name":"ManifestInterceptor"},"Protocols/NetworkAPI.html#/s:13THEOplayerSDK10NetworkAPIP27addMediaPlaylistInterceptoryyAA0fgH0_pF":{"name":"addMediaPlaylistInterceptor(_:)","abstract":"

    Adds a MediaPlaylistInterceptor to manipulate media playlist requests and responses. (Experimental)

    ","parent_name":"NetworkAPI"},"Protocols/NetworkAPI.html#/s:13THEOplayerSDK10NetworkAPIP30removeMediaPlaylistInterceptoryyAA0fgH0_pF":{"name":"removeMediaPlaylistInterceptor(_:)","abstract":"

    Removes a MediaPlaylistInterceptor. (Experimental)

    ","parent_name":"NetworkAPI"},"Protocols/NetworkAPI.html#/s:13THEOplayerSDK10NetworkAPIP21removeAllInterceptorsyyF":{"name":"removeAllInterceptors()","abstract":"

    Removes all MediaPlaylistInterceptors. (Experimental)

    ","parent_name":"NetworkAPI"},"Protocols/MediaPlaylistInterceptor.html#/s:13THEOplayerSDK24MediaPlaylistInterceptorP015shouldInterceptD7Request4typeSbAA03HlsD4TypeO_tF":{"name":"shouldInterceptPlaylistRequest(type:)","abstract":"

    Called to check, if certain playlist request types have to be intercepted.

    ","parent_name":"MediaPlaylistInterceptor"},"Protocols/MediaPlaylistInterceptor.html#/s:13THEOplayerSDK24MediaPlaylistInterceptorP015shouldInterceptD8Response4typeSbAA03HlsD4TypeO_tF":{"name":"shouldInterceptPlaylistResponse(type:)","abstract":"

    Called to check, if certain playlist response types have to be intercepted.

    ","parent_name":"MediaPlaylistInterceptor"},"Protocols/MediaPlaylistInterceptor.html#/s:13THEOplayerSDK24MediaPlaylistInterceptorP012didInterceptD7Request4type7request10Foundation10URLRequestVAA03HlsD4TypeO_AItYaKF":{"name":"didInterceptPlaylistRequest(type:request:)","abstract":"

    Called when the certain playlist request is intercepted.

    ","parent_name":"MediaPlaylistInterceptor"},"Protocols/MediaPlaylistInterceptor.html#/s:13THEOplayerSDK24MediaPlaylistInterceptorP012didInterceptD8Response4type3url8response4data10Foundation4DataVAA03HlsD4TypeO_AI3URLVSo13NSURLResponseCAKtYaKF":{"name":"didInterceptPlaylistResponse(type:url:response:data:)","abstract":"

    Called when the certain playlist response is intercepted.

    ","parent_name":"MediaPlaylistInterceptor"},"Protocols/MediaPlaylistInterceptor.html#/s:13THEOplayerSDK24MediaPlaylistInterceptorP25failedToPerformURLRequest7request8responsey10Foundation0I0V_So13NSURLResponseCtF":{"name":"failedToPerformURLRequest(request:response:)","abstract":"

    Called when a certain URLRequest is failed.

    ","parent_name":"MediaPlaylistInterceptor"},"Protocols/QualityList.html#/s:13THEOplayerSDK11QualityListP5countSivp":{"name":"count","abstract":"

    The number of qualities in the list.

    ","parent_name":"QualityList"},"Protocols/QualityList.html#/s:13THEOplayerSDK11QualityListP3getyAA0C0_pSiF":{"name":"get(_:)","abstract":"

    Returns the Quality object representing the quality at the index position in the media track’s quality list.

    ","parent_name":"QualityList"},"Protocols/QualityList.html#/s:13THEOplayerSDK11QualityListPyAA0C0_pSicip":{"name":"subscript(_:)","abstract":"

    Returns the Quality object representing the quality at the index position in the media track’s quality list.

    ","parent_name":"QualityList"},"Protocols/VideoQuality.html#/s:13THEOplayerSDK12VideoQualityP5widthSivp":{"name":"width","abstract":"

    The video width of the video quality, in pixels.

    ","parent_name":"VideoQuality"},"Protocols/VideoQuality.html#/s:13THEOplayerSDK12VideoQualityP6heightSivp":{"name":"height","abstract":"

    The video height of the video quality, in pixels.

    ","parent_name":"VideoQuality"},"Protocols/Quality.html#/s:13THEOplayerSDK7QualityP9bandwidthSivp":{"name":"bandwidth","abstract":"

    The required bandwidth for the quality, in bits per second.

    ","parent_name":"Quality"},"Protocols/Quality.html#/s:13THEOplayerSDK7QualityP16averageBandwidthSiSgvp":{"name":"averageBandwidth","abstract":"

    The average bandwidth of the quality, in bits per second.

    ","parent_name":"Quality"},"Protocols/GoogleDAI.html#/s:13THEOplayerSDK9GoogleDAIP8snapbackSbvp":{"name":"snapback","abstract":"

    Whether snapback is enabled.

    ","parent_name":"GoogleDAI"},"Protocols/GoogleDAI.html#/s:13THEOplayerSDK9GoogleDAIP11contentTime4fromS2d_tF":{"name":"contentTime(from:)","abstract":"

    Converts stream time (including ads) to content time (excluding ads).","parent_name":"GoogleDAI"},"Protocols/GoogleDAI.html#/s:13THEOplayerSDK9GoogleDAIP10streamTime4fromS2d_tF":{"name":"streamTime(from:)","abstract":"

    Converts content time (excluding ads) to stream time (including ads)","parent_name":"GoogleDAI"},"Protocols/UniversalAdId.html#/s:13THEOplayerSDK13UniversalAdIdP02adE5ValueSSvp":{"name":"adIdValue","abstract":"

    The Universal Ad identifier of the selected creative for the ad.

    ","parent_name":"UniversalAdId"},"Protocols/UniversalAdId.html#/s:13THEOplayerSDK13UniversalAdIdP02adE8RegistrySSvp":{"name":"adIdRegistry","abstract":"

    The registry associated with cataloging the UniversalAdId of the selected creative for the ad.

    ","parent_name":"UniversalAdId"},"Protocols/UniversalAdId.html":{"name":"UniversalAdId","abstract":"

    Represents the list of universal ad ID information of the selected creative for the ad.

    "},"Protocols/GoogleDAI.html":{"name":"GoogleDAI","abstract":"

    Represents information regarding content with dynamically inserted advertisements.

    "},"Protocols/Quality.html":{"name":"Quality","abstract":"

    Represents a quality of a media track.

    "},"Protocols/VideoQuality.html":{"name":"VideoQuality","abstract":"

    Represents a quality of a video track.

    "},"Protocols/QualityList.html":{"name":"QualityList","abstract":"

    List of qualities.

    "},"Protocols/MediaPlaylistInterceptor.html":{"name":"MediaPlaylistInterceptor","abstract":"

    MediaPlaylistInterceptor API (Experimental)

    "},"Protocols/NetworkAPI.html":{"name":"NetworkAPI","abstract":"

    The Network API.

    "},"Protocols/ManifestInterceptor.html":{"name":"ManifestInterceptor","abstract":"

    Manifest interceptor introduces the possibility to intercept/observe the manifest requests made by the player. (master and rendition (child) manifest)

    "},"Protocols/DeveloperSettings.html":{"name":"DeveloperSettings","abstract":"

    Developer Settings API

    "},"Extensions/Notification/Name.html#/s:So18NSNotificationNamea13THEOplayerSDKE09PictureInE5MovedABvpZ":{"name":"PictureInPictureMoved","abstract":"

    Posted when the picture-in-picture has moved to a new corner

    ","parent_name":"Name"},"Extensions/Notification/Name.html":{"name":"Name","parent_name":"Notification"},"Extensions/Notification.html":{"name":"Notification"},"Classes/CachingTaskIdleStateChangeEvent.html#/s:13THEOplayerSDK31CachingTaskIdleStateChangeEventC10idleReasonAA011CacheStatuseJ0Ovp":{"name":"idleReason","abstract":"

    The underlying reason that caused the state change.

    ","parent_name":"CachingTaskIdleStateChangeEvent"},"Classes/CachingTaskErrorStateChangeEvent.html#/s:13THEOplayerSDK32CachingTaskErrorStateChangeEventC5errorAA9THEOError_pSgvp":{"name":"error","abstract":"

    The underlying error that caused the state change.

    ","parent_name":"CachingTaskErrorStateChangeEvent"},"Classes/CachingParametersTrackSelectionBuilder.html#/s:13THEOplayerSDK38CachingParametersTrackSelectionBuilderC05audioeF0SaySSGvp":{"name":"audioTrackSelection","abstract":"

    The list of langugage tags that indicates the preferred audio tracks to be cached. Defaults to [].

    ","parent_name":"CachingParametersTrackSelectionBuilder"},"Classes/CachingParametersTrackSelectionBuilder.html#/s:13THEOplayerSDK38CachingParametersTrackSelectionBuilderC04texteF0SaySSGvp":{"name":"textTrackSelection","abstract":"

    The list of langugage tags that indicates the preferred audio tracks to be cached. Defaults to [].

    ","parent_name":"CachingParametersTrackSelectionBuilder"},"Classes/CachingParametersTrackSelectionBuilder.html#/s:13THEOplayerSDK38CachingParametersTrackSelectionBuilderC5buildAA0cdeF0CyF":{"name":"build()","abstract":"

    Creates a CachingParametersTrackSelection

    ","parent_name":"CachingParametersTrackSelectionBuilder"},"Classes/SourceAbrConfiguration.html#/s:13THEOplayerSDK22SourceAbrConfigurationC10maxBitrateSdSgvp":{"name":"maxBitrate","abstract":"

    The maximum bitrate in bps for the specified source.

    ","parent_name":"SourceAbrConfiguration"},"Classes/MultiplatformDRMConfiguration.html#/s:13THEOplayerSDK29MultiplatformDRMConfigurationC15integrationKindAA14DRMIntegrationOvp":{"name":"integrationKind","abstract":"

    The identifier for the kind of integration

    ","parent_name":"MultiplatformDRMConfiguration"},"Classes/MultiplatformDRMConfiguration.html#/s:13THEOplayerSDK29MultiplatformDRMConfigurationC21integrationParametersSDySSypGSgvp":{"name":"integrationParameters","abstract":"

    Parameters that can be used when integrationKind is set to DRMIntegration/custom

    ","parent_name":"MultiplatformDRMConfiguration"},"Classes/MultiplatformDRMConfiguration.html#/s:13THEOplayerSDK29MultiplatformDRMConfigurationC19customIntegrationIdSSSgvp":{"name":"customIntegrationId","abstract":"

    The identifier for the kind of integration when integrationKind is set to DRMIntegration/custom

    ","parent_name":"MultiplatformDRMConfiguration"},"Classes/MultiplatformDRMConfiguration.html#/s:13THEOplayerSDK29MultiplatformDRMConfigurationC23keySystemConfigurationsAA03KeyF23ConfigurationCollectionCvp":{"name":"keySystemConfigurations","abstract":"

    A set of configurations for different key systems.

    ","parent_name":"MultiplatformDRMConfiguration"},"Classes/MultiplatformDRMConfiguration.html#/s:13THEOplayerSDK29MultiplatformDRMConfigurationC15queryParametersSDyS2SGSgvp":{"name":"queryParameters","abstract":"

    Record of query parameters for the licence acquisition request. Each entry contains a query parameter name with associated value.

    ","parent_name":"MultiplatformDRMConfiguration"},"Classes/MultiplatformDRMConfiguration.html#/s:13THEOplayerSDK29MultiplatformDRMConfigurationC23keySystemConfigurationsAcA03KeyF23ConfigurationCollectionC_tcfc":{"name":"init(keySystemConfigurations:)","abstract":"

    Create a DRM configuration without an integration.

    ","parent_name":"MultiplatformDRMConfiguration"},"Classes/MultiplatformDRMConfiguration.html#/s:13THEOplayerSDK29MultiplatformDRMConfigurationC19customIntegrationId21integrationParameters23keySystemConfigurations05queryI0ACSS_SDySSypGAA03KeyK23ConfigurationCollectionCSDyS2SGSgtcfc":{"name":"init(customIntegrationId:integrationParameters:keySystemConfigurations:queryParameters:)","abstract":"

    Create a config for a custom DRM integration.

    ","parent_name":"MultiplatformDRMConfiguration"},"Classes/MultiplatformDRMConfiguration.html#/s:Se4fromxs7Decoder_p_tKcfc":{"name":"init(from:)","parent_name":"MultiplatformDRMConfiguration"},"Classes/MultiplatformDRMConfiguration.html#/s:SE6encode2toys7Encoder_p_tKF":{"name":"encode(to:)","parent_name":"MultiplatformDRMConfiguration"},"Classes/MultiplatformDRMConfiguration.html#/s:13THEOplayerSDK16DRMConfigurationP11integrationAA14DRMIntegrationOSgvp":{"name":"integration","parent_name":"MultiplatformDRMConfiguration"},"Classes/MultiplatformDRMConfiguration.html#/s:13THEOplayerSDK16DRMConfigurationP7headersSaySDyS2SGGSgvp":{"name":"headers","parent_name":"MultiplatformDRMConfiguration"},"Classes/KeySystemConfigurationCollection.html#/s:13THEOplayerSDK32KeySystemConfigurationCollectionC8fairplayAA0cdE0CSgvp":{"name":"fairplay","abstract":"

    The key system configuration for FairPlay.

    ","parent_name":"KeySystemConfigurationCollection"},"Classes/KeySystemConfigurationCollection.html#/s:13THEOplayerSDK32KeySystemConfigurationCollectionC8widevineAA0cdE0CSgvp":{"name":"widevine","abstract":"

    The key system configuration for widevine.

    ","parent_name":"KeySystemConfigurationCollection"},"Classes/KeySystemConfigurationCollection.html#/s:13THEOplayerSDK32KeySystemConfigurationCollectionC8fairplay8widevine13commonHeadersAcA0cdE0CSg_AISDyS2SGtcfc":{"name":"init(fairplay:widevine:commonHeaders:)","abstract":"

    Create a set of configurations for different key systems.

    ","parent_name":"KeySystemConfigurationCollection"},"Classes/KeySystemConfigurationCollection.html#/s:Se4fromxs7Decoder_p_tKcfc":{"name":"init(from:)","parent_name":"KeySystemConfigurationCollection"},"Classes/KeySystemConfigurationCollection.html#/s:SE6encode2toys7Encoder_p_tKF":{"name":"encode(to:)","parent_name":"KeySystemConfigurationCollection"},"Classes/THEOplayerConfigurationBuilder.html#/s:13THEOplayerSDK0A20ConfigurationBuilderC12hlsDateRangeSbSgvp":{"name":"hlsDateRange","abstract":"

    Whether the logic to expose date ranges parsed from HLS manifests is enabled.

    ","parent_name":"THEOplayerConfigurationBuilder"},"Classes/THEOplayerConfigurationBuilder.html#/s:13THEOplayerSDK0A20ConfigurationBuilderC15setHlsDateRangeyySbF":{"name":"setHlsDateRange(_:)","abstract":"

    Setter for the hlsDateRange property.

    ","parent_name":"THEOplayerConfigurationBuilder"},"Classes/THEOplayerConfigurationBuilder.html#/s:13THEOplayerSDK0A20ConfigurationBuilderC7licenseSSSgvp":{"name":"license","abstract":"

    The license for the player.

    ","parent_name":"THEOplayerConfigurationBuilder"},"Classes/THEOplayerConfigurationBuilder.html#/s:13THEOplayerSDK0A20ConfigurationBuilderC10licenseUrlSSSgvp":{"name":"licenseUrl","abstract":"

    The url to fetch the license for the player.

    ","parent_name":"THEOplayerConfigurationBuilder"},"Classes/THEOplayerConfigurationBuilder.html#/s:13THEOplayerSDK0A20ConfigurationBuilderC3pipAA16PiPConfigurationCSgvp":{"name":"pip","abstract":"

    The picture in picture configuration of the player.

    ","parent_name":"THEOplayerConfigurationBuilder"},"Classes/THEOplayerConfigurationBuilder.html#/s:13THEOplayerSDK0A20ConfigurationBuilderC7networkAA07NetworkC0CSgvp":{"name":"network","abstract":"

    The network configuration of the player.

    ","parent_name":"THEOplayerConfigurationBuilder"},"Classes/THEOplayerConfigurationBuilder.html#/s:13THEOplayerSDK0A20ConfigurationBuilderC16autoIntegrationsSbvp":{"name":"autoIntegrations","abstract":"

    Flag that enables the player to automatically look for THEOplayer integration libraries (e.g. THEOlive) and register those on the player instance.","parent_name":"THEOplayerConfigurationBuilder"},"Classes/THEOplayerConfigurationBuilder.html#/s:13THEOplayerSDK0A20ConfigurationBuilderC5buildAA0aC0CyF":{"name":"build()","abstract":"

    Builds and returns an object of type THEOplayerConfiguration.

    ","parent_name":"THEOplayerConfigurationBuilder"},"Classes/NetworkConfigurationBuilder.html#/s:13THEOplayerSDK27NetworkConfigurationBuilderC9userAgentSSSgvp":{"name":"userAgent","abstract":"

    The user agent header that the http requests should send.

    ","parent_name":"NetworkConfigurationBuilder"},"Classes/NetworkConfiguration.html#/s:13THEOplayerSDK20NetworkConfigurationC9userAgentSSSgvp":{"name":"userAgent","abstract":"

    The user agent header that the http requests should send.

    ","parent_name":"NetworkConfiguration"},"Classes/TrackUpdateEvent.html#/s:13THEOplayerSDK16TrackUpdateEventC4typeSSvp":{"name":"type","abstract":"

    The textual representation of the type of event, “update”.

    ","parent_name":"TrackUpdateEvent"},"Classes/TrackUpdateEvent.html#/s:13THEOplayerSDK16TrackUpdateEventC4date10Foundation4DateVvp":{"name":"date","abstract":"

    The date at which the event occurred.

    ","parent_name":"TrackUpdateEvent"},"Classes/TrackUpdateEvent.html#/s:13THEOplayerSDK16TrackUpdateEventC5trackAA0C0_pvp":{"name":"track","abstract":"

    The track that has been updated.

    ","parent_name":"TrackUpdateEvent"},"Classes/ActiveQualityChangedEvent.html#/s:13THEOplayerSDK25ActiveQualityChangedEventC4typeSSvp":{"name":"type","abstract":"

    A textual representation of the type of the event.

    ","parent_name":"ActiveQualityChangedEvent"},"Classes/ActiveQualityChangedEvent.html#/s:13THEOplayerSDK25ActiveQualityChangedEventC4date10Foundation4DateVvp":{"name":"date","abstract":"

    The date at which the event occurred.

    ","parent_name":"ActiveQualityChangedEvent"},"Classes/ActiveQualityChangedEvent.html#/s:13THEOplayerSDK25ActiveQualityChangedEventC7qualityAA0D0_pvp":{"name":"quality","abstract":"

    The quality.

    ","parent_name":"ActiveQualityChangedEvent"},"Classes/CurrentSourceChangeEvent.html#/s:13THEOplayerSDK24CurrentSourceChangeEventC07currentD0AA05TypedD0CSgvp":{"name":"currentSource","abstract":"

    The player’s new current source.

    ","parent_name":"CurrentSourceChangeEvent"},"Classes/PlayerEvent.html#/s:13THEOplayerSDK11PlayerEventC4typeSSvp":{"name":"type","abstract":"

    A textual representation of the type of the event

    ","parent_name":"PlayerEvent"},"Classes/PlayerEvent.html#/s:13THEOplayerSDK11PlayerEventC4date10Foundation4DateVvp":{"name":"date","abstract":"

    The date at which the event occurred.

    ","parent_name":"PlayerEvent"},"Classes/AdSkipEvent.html#/s:13THEOplayerSDK11AdSkipEventC16playedPercentageSdSgvp":{"name":"playedPercentage","abstract":"

    The percentage of the ad that was played when skipped.

    ","parent_name":"AdSkipEvent"},"Classes/PiPConfigurationBuilder.html#/s:13THEOplayerSDK23PiPConfigurationBuilderC36retainPresentationModeOnSourceChangeSbvp":{"name":"retainPresentationModeOnSourceChange","abstract":"

    Whether the presentation mode should be retained on source changes. Defaults to false.

    ","parent_name":"PiPConfigurationBuilder"},"Classes/PiPConfigurationBuilder.html#/s:13THEOplayerSDK23PiPConfigurationBuilderC22requiresLinearPlaybackSbvp":{"name":"requiresLinearPlayback","abstract":"

    Disables seekability while in native Picture in Picture mode. This can be useful when playing advertisements for instance. Defaults to false.

    ","parent_name":"PiPConfigurationBuilder"},"Classes/PiPConfigurationBuilder.html#/s:13THEOplayerSDK23PiPConfigurationBuilderC015nativePictureInG0Sbvp":{"name":"nativePictureInPicture","abstract":"

    Enable the Native Picture in Picture. Defaults to true.

    ","parent_name":"PiPConfigurationBuilder"},"Classes/PiPConfigurationBuilder.html#/s:13THEOplayerSDK23PiPConfigurationBuilderC017canStartPictureInH23AutomaticallyFromInlineSbvp":{"name":"canStartPictureInPictureAutomaticallyFromInline","abstract":"

    Native Picture in Picture starts automatically when the player is embedded inline and the app transitions to the background. Defaults to false.

    ","parent_name":"PiPConfigurationBuilder"},"Classes/PiPConfigurationBuilder.html#/s:13THEOplayerSDK23PiPConfigurationBuilderC5buildAA0cD0CyF":{"name":"build()","abstract":"

    Builds and returns an object of type PiPConfiguration.

    ","parent_name":"PiPConfigurationBuilder"},"Classes/PiPConfiguration.html#/s:13THEOplayerSDK16PiPConfigurationC36retainPresentationModeOnSourceChangeSbvp":{"name":"retainPresentationModeOnSourceChange","abstract":"

    Whether the presentation mode should be retained on source changes. Defaults to false.

    ","parent_name":"PiPConfiguration"},"Classes/PiPConfiguration.html#/s:13THEOplayerSDK16PiPConfigurationC22requiresLinearPlaybackSbvp":{"name":"requiresLinearPlayback","abstract":"

    Disables seekability while in native Picture in Picture mode. This can be useful when playing advertisements for instance. Defaults to false.

    ","parent_name":"PiPConfiguration"},"Classes/PiPConfiguration.html#/s:13THEOplayerSDK16PiPConfigurationC015nativePictureInF0Sbvp":{"name":"nativePictureInPicture","abstract":"

    Enable the Native Picture in Picture. Defaults to false.

    ","parent_name":"PiPConfiguration"},"Classes/PiPConfiguration.html#/s:13THEOplayerSDK16PiPConfigurationC017canStartPictureInG23AutomaticallyFromInlineSbvp":{"name":"canStartPictureInPictureAutomaticallyFromInline","abstract":"

    Native Picture in Picture starts automatically when the player is embedded inline and the app transitions to the background. Defaults to false.

    ","parent_name":"PiPConfiguration"},"Other%20Classes.html#/c:@M@THEOplayerSDK@objc(cs)AdInit":{"name":"AdInit","abstract":"

    An initializer for a custom Ad.

    "},"Other%20Classes.html#/c:@M@THEOplayerSDK@objc(cs)AdBreakInit":{"name":"AdBreakInit","abstract":"

    An initializer for a custom AdBreak.

    "},"Classes/PiPConfiguration.html":{"name":"PiPConfiguration","abstract":"

    Describes the configuration of the picture-in-picture feature.

    "},"Classes/PiPConfigurationBuilder.html":{"name":"PiPConfigurationBuilder","abstract":"

    Builder class for the PiPConfiguration object.

    "},"Classes/AdSkipEvent.html":{"name":"AdSkipEvent","abstract":"

    Thrown to indicate that the ad was skipped.

    "},"Other%20Classes.html#/c:@M@THEOplayerSDK@objc(cs)AdTappedEvent":{"name":"AdTappedEvent","abstract":"

    Thrown to indicate that an ad was tapped.

    "},"Other%20Classes.html#/c:@M@THEOplayerSDK@objc(cs)AdClickedEvent":{"name":"AdClickedEvent","abstract":"

    Thrown to indicate that an ad was clicked. Most of the cases when user clicks on the “Learn More” button.

    "},"Other%20Classes.html#/c:@M@THEOplayerSDK@objc(cs)AddAdEvent":{"name":"AddAdEvent","abstract":"

    Thrown to indicate that an ad was added.

    "},"Other%20Classes.html#/c:@M@THEOplayerSDK@objc(cs)UpdateAdEvent":{"name":"UpdateAdEvent","abstract":"

    Thrown to indicate that an ad was updated.

    "},"Other%20Classes.html#/c:@M@THEOplayerSDK@objc(cs)AddAdBreakEvent":{"name":"AddAdBreakEvent","abstract":"

    Thrown to indicate that an adbreak has been added.

    "},"Other%20Classes.html#/c:@M@THEOplayerSDK@objc(cs)UpdateAdBreakEvent":{"name":"UpdateAdBreakEvent","abstract":"

    Thrown to indicate that an adbreak has been updated.

    "},"Other%20Classes.html#/c:@M@THEOplayerSDK@objc(cs)RemoveAdBreakEvent":{"name":"RemoveAdBreakEvent","abstract":"

    Thrown to indicate that an adbreak has been removed.

    "},"Other%20Classes.html#/c:@M@THEOplayerSDK@objc(cs)AdBreakChangeEvent":{"name":"AdBreakChangeEvent","abstract":"

    Thrown to indicate that an adbreak has changed.

    "},"Classes/PlayerEvent.html":{"name":"PlayerEvent","abstract":"

    Represents the base for all other player events.

    "},"Classes/CurrentSourceChangeEvent.html":{"name":"CurrentSourceChangeEvent","abstract":"

    Fired when the current source, which is chosen from SourceDescription.sources, changes.

    "},"Other%20Classes.html#/c:@M@THEOplayerSDK@objc(cs)EncryptedEvent":{"name":"EncryptedEvent","abstract":"

    Fired when the player encounters key system initialization data in the media data.

    "},"Other%20Classes.html#/c:@M@THEOplayerSDK@objc(cs)ContentProtectionSuccessEvent":{"name":"ContentProtectionSuccessEvent","abstract":"

    Fired when the key is usable for decryption.

    "},"Classes/ActiveQualityChangedEvent.html":{"name":"ActiveQualityChangedEvent","abstract":"

    Fired when the media track’s active quality bandwidth changes.

    "},"Classes/TrackUpdateEvent.html":{"name":"TrackUpdateEvent","abstract":"

    Fired when one or more properties of a track have been updated.

    "},"Classes/NetworkConfiguration.html":{"name":"NetworkConfiguration","abstract":"

    Represents a network configuration.

    "},"Classes/NetworkConfigurationBuilder.html":{"name":"NetworkConfigurationBuilder","abstract":"

    A builder class to help initialize a NetworkConfiguration instance.

    "},"Classes/THEOplayerConfigurationBuilder.html":{"name":"THEOplayerConfigurationBuilder","abstract":"

    Builder class for the THEOplayerConfiguration object.

    "},"Classes/KeySystemConfigurationCollection.html":{"name":"KeySystemConfigurationCollection","abstract":"

    A set of configurations for different key systems.

    "},"Classes/MultiplatformDRMConfiguration.html":{"name":"MultiplatformDRMConfiguration","abstract":"

    A set of DRM parameters.

    "},"Classes/SourceAbrConfiguration.html":{"name":"SourceAbrConfiguration","abstract":"

    Describes the ABR configuration for a specific source.

    "},"Classes/CachingParametersTrackSelectionBuilder.html":{"name":"CachingParametersTrackSelectionBuilder","abstract":"

    A builder to create CachingParametersTrackSelections.

    "},"Classes/CachingTaskErrorStateChangeEvent.html":{"name":"CachingTaskErrorStateChangeEvent","abstract":"

    Fired when the CachingTask.status changes to .error.

    "},"Classes/CachingTaskIdleStateChangeEvent.html":{"name":"CachingTaskIdleStateChangeEvent","abstract":"

    Fired when the CachingTask.status changes to .idle.

    "},"Protocols/EventDispatcherProtocol.html#/s:13THEOplayerSDK23EventDispatcherProtocolP03addC8Listener4type8listenerAA0cG0_pAA0C4TypeCyqd__G_yqd__ctAA0cE0Rd__lF":{"name":"addEventListener(type:listener:)","abstract":"

    Adds the given event listener of the given type.

    ","parent_name":"EventDispatcherProtocol"},"Protocols/EventDispatcherProtocol.html#/s:13THEOplayerSDK23EventDispatcherProtocolP06removeC8Listener4type8listeneryAA0C4TypeCyqd__G_AA0cG0_ptAA0cE0Rd__lF":{"name":"removeEventListener(type:listener:)","abstract":"

    Removes the given event listener of the given type.

    ","parent_name":"EventDispatcherProtocol"},"Classes/EventType.html#/s:13THEOplayerSDK9EventTypeC4nameSSvp":{"name":"name","abstract":"

    The name of the EventType.

    ","parent_name":"EventType"},"Classes/EventType.html#/s:13THEOplayerSDK9EventTypeC4nameACyxGSS_tcfc":{"name":"init(name:)","abstract":"

    Creates a certain EventType.

    ","parent_name":"EventType"},"Protocols/EventProtocol.html#/s:13THEOplayerSDK13EventProtocolP4typeSSvp":{"name":"type","abstract":"

    The textual representation of the type of event.

    ","parent_name":"EventProtocol"},"Protocols/EventProtocol.html#/s:13THEOplayerSDK13EventProtocolP4date10Foundation4DateVvp":{"name":"date","abstract":"

    The Date at which the event occured.

    ","parent_name":"EventProtocol"},"Classes/CurrentTimeEvent.html#/s:13THEOplayerSDK16CurrentTimeEventC07currentD0Sdvp":{"name":"currentTime","abstract":"

    The current time of the player.

    ","parent_name":"CurrentTimeEvent"},"Classes/CacheEvent.html#/s:13THEOplayerSDK10CacheEventC4typeSSvp":{"name":"type","abstract":"

    The type of the event.

    ","parent_name":"CacheEvent"},"Classes/CacheEvent.html#/s:13THEOplayerSDK10CacheEventC4date10Foundation4DateVvp":{"name":"date","abstract":"

    The date at which the event occured.

    ","parent_name":"CacheEvent"},"Classes/CacheEvent.html":{"name":"CacheEvent","abstract":"

    The Cache event object.

    "},"Classes/CurrentTimeEvent.html":{"name":"CurrentTimeEvent","abstract":"

    Represents the player events that return the currentTime property.

    "},"Protocols/EventProtocol.html":{"name":"EventProtocol","abstract":"

    The Event API which can be used to represent an event.

    "},"Classes/EventType.html":{"name":"EventType","abstract":"

    Represents an EventType that conforms to a certain type of EventProtocol T.

    "},"Protocols/EventDispatcherProtocol.html":{"name":"EventDispatcherProtocol","abstract":"

    Classes that comform to this protocol can add and remove event listeners.

    "},"Base%20classes%20%26%20interfaces.html#/s:13THEOplayerSDK18TrackEventProtocolP":{"name":"TrackEventProtocol","abstract":"

    The base Track Event protocol.

    "},"Classes/THEOMargins.html#/s:13THEOplayerSDK11THEOMarginsC3topSivp":{"name":"top","abstract":"

    The top margin.

    ","parent_name":"THEOMargins"},"Classes/THEOMargins.html#/s:13THEOplayerSDK11THEOMarginsC5rightSivp":{"name":"right","abstract":"

    The right margin.

    ","parent_name":"THEOMargins"},"Classes/THEOMargins.html#/s:13THEOplayerSDK11THEOMarginsC6bottomSivp":{"name":"bottom","abstract":"

    The bottom margin.

    ","parent_name":"THEOMargins"},"Classes/THEOMargins.html#/s:13THEOplayerSDK11THEOMarginsC4leftSivp":{"name":"left","abstract":"

    The left margin.

    ","parent_name":"THEOMargins"},"Classes/THEOMargins.html#/s:13THEOplayerSDK11THEOMarginsC3top5right6bottom4leftACSi_S3itcfc":{"name":"init(top:right:bottom:left:)","abstract":"

    Constructs a new THEOMargins instance.

    ","parent_name":"THEOMargins"},"Classes/THEOMargins.html#/s:13THEOplayerSDK11THEOMarginsC10horizontal8verticalACSi_Sitcfc":{"name":"init(horizontal:vertical:)","abstract":"

    Constructs a new THEOMargins instance.

    ","parent_name":"THEOMargins"},"Classes/THEOMargins.html#/s:13THEOplayerSDK11THEOMarginsC3allACSi_tcfc":{"name":"init(all:)","abstract":"

    Constructs a new THEOMargins instance.

    ","parent_name":"THEOMargins"},"Classes/TimeRange.html#/s:13THEOplayerSDK9TimeRangeC5startSdvp":{"name":"start","abstract":"

    The start time of the range.

    ","parent_name":"TimeRange"},"Classes/TimeRange.html#/s:13THEOplayerSDK9TimeRangeC3endSdvp":{"name":"end","abstract":"

    The end time of the range.

    ","parent_name":"TimeRange"},"Classes/TimeRange.html#/s:13THEOplayerSDK9TimeRangeC5start3endACSd_Sdtcfc":{"name":"init(start:end:)","abstract":"

    Constructs a TimeRange object.

    ","parent_name":"TimeRange"},"Classes/TimeRange.html":{"name":"TimeRange","abstract":"

    Helps get information regarding a certain period in the playback.

    "},"Classes/THEOMargins.html":{"name":"THEOMargins","abstract":"

    The THEOMargins class is used to define quadruple margins.

    "},"Classes/Response.html#/s:13THEOplayerSDK8ResponseC7requestAA7RequestCvp":{"name":"request","abstract":"

    The request for which the response is being returned.

    ","parent_name":"Response"},"Classes/Response.html#/s:13THEOplayerSDK8ResponseC3urlSSvp":{"name":"url","abstract":"

    The URL from which the response was returned. This might have been redirected transparently.

    ","parent_name":"Response"},"Classes/Response.html#/s:13THEOplayerSDK8ResponseC6statusSivp":{"name":"status","abstract":"

    The status code as returned in the HTTP response.

    ","parent_name":"Response"},"Classes/Response.html#/s:13THEOplayerSDK8ResponseC10statusTextSSvp":{"name":"statusText","abstract":"

    The status text as returned in the HTTP response.

    ","parent_name":"Response"},"Classes/Response.html#/s:13THEOplayerSDK8ResponseC7headersSDyS2SGvp":{"name":"headers","abstract":"

    The HTTP headers as returned by the server.

    ","parent_name":"Response"},"Classes/Response.html#/s:13THEOplayerSDK8ResponseC4body10Foundation4DataVvp":{"name":"body","abstract":"

    The body of the response.

    ","parent_name":"Response"},"Classes/Request.html#/s:13THEOplayerSDK7RequestC3urlSSvp":{"name":"url","abstract":"

    The URL for the certificate server. By default, this will equal the certificate URL configured in the KeySystemConfiguration`.

    ","parent_name":"Request"},"Classes/Request.html#/s:13THEOplayerSDK7RequestC6methodSSvp":{"name":"method","abstract":"

    The method of the HTTP request, for example: GET, POST or PUT.

    ","parent_name":"Request"},"Classes/Request.html#/s:13THEOplayerSDK7RequestC7headersSDyS2SGvp":{"name":"headers","abstract":"

    The HTTP request headers to be sent to the server.

    ","parent_name":"Request"},"Classes/Request.html#/s:13THEOplayerSDK7RequestC4body10Foundation4DataVSgvp":{"name":"body","abstract":"

    The body of the certificate request.

    ","parent_name":"Request"},"Classes/Request.html#/s:13THEOplayerSDK7RequestC3url6method7headers4bodyACSS_SSSDyS2SG10Foundation4DataVSgtcfc":{"name":"init(url:method:headers:body:)","abstract":"

    Creates a new HTTP request for the given URL.

    ","parent_name":"Request"},"Enums/KeySystemId.html#/s:13THEOplayerSDK11KeySystemIdO9_rawValueSSvp":{"name":"_rawValue","abstract":"

    The raw value of type String.

    ","parent_name":"KeySystemId"},"Classes/LicenseRequest.html#/s:13THEOplayerSDK14LicenseRequestC14fairplaySkdUrlSSSgvp":{"name":"fairplaySkdUrl","abstract":"

    The SKD URL

    ","parent_name":"LicenseRequest"},"Classes/LicenseRequest.html#/s:13THEOplayerSDK14LicenseRequestC3url6method7headers4body14fairplaySkdUrl14useCredentialsACSS_SSSDyS2SG10Foundation4DataVSgSSSgSbtcfc":{"name":"init(url:method:headers:body:fairplaySkdUrl:useCredentials:)","abstract":"

    Creates a new LicenseRequest for the given URL.

    ","parent_name":"LicenseRequest"},"Classes/LicenseResponse.html#/s:13THEOplayerSDK15LicenseResponseC14licenseRequest3url6status0H4Text7headers4bodyAcA0cF0C_SSSiSSSDyS2SG10Foundation4DataVtcfc":{"name":"init(licenseRequest:url:status:statusText:headers:body:)","abstract":"

    Creates a LicenseResponse.

    ","parent_name":"LicenseResponse"},"Classes/CertificateResponse.html#/s:13THEOplayerSDK19CertificateResponseC18certificateRequest3url6status0H4Text7headers4bodyAcA0cF0C_SSSiSSSDyS2SG10Foundation4DataVtcfc":{"name":"init(certificateRequest:url:status:statusText:headers:body:)","abstract":"

    Creates a CertificateResponse.

    ","parent_name":"CertificateResponse"},"Protocols/ContentProtectionIntegration.html#/c:@M@THEOplayerSDK@objc(pl)ContentProtectionIntegration(im)onCertificateRequestWithRequest:callback:":{"name":"onCertificateRequest(request:callback:)","abstract":"

    Handler which will be called when an HTTP request for a new certificate is about to be sent.

    ","parent_name":"ContentProtectionIntegration"},"Protocols/ContentProtectionIntegration.html#/c:@M@THEOplayerSDK@objc(pl)ContentProtectionIntegration(im)onCertificateResponseWithResponse:callback:":{"name":"onCertificateResponse(response:callback:)","abstract":"

    Handler which will be called when an HTTP request for a certificate returns a response.

    ","parent_name":"ContentProtectionIntegration"},"Protocols/ContentProtectionIntegration.html#/c:@M@THEOplayerSDK@objc(pl)ContentProtectionIntegration(im)onLicenseRequestWithRequest:callback:":{"name":"onLicenseRequest(request:callback:)","abstract":"

    Handler which will be called when an HTTP request for a new license is about to be sent.

    ","parent_name":"ContentProtectionIntegration"},"Protocols/ContentProtectionIntegration.html#/c:@M@THEOplayerSDK@objc(pl)ContentProtectionIntegration(im)onLicenseResponseWithResponse:callback:":{"name":"onLicenseResponse(response:callback:)","abstract":"

    Handler which will be called when an HTTP request for a license returns an response.

    ","parent_name":"ContentProtectionIntegration"},"Protocols/ContentProtectionIntegration.html#/c:@M@THEOplayerSDK@objc(pl)ContentProtectionIntegration(im)onExtractFairplayContentIdWithSkdUrl:callback:":{"name":"onExtractFairplayContentId(skdUrl:callback:)","abstract":"

    A function to extract the Fairplay content ID from the key URI, as given by the URI attribute of the #EXT-X-KEY tag in the HLS playlist (m3u8).

    ","parent_name":"ContentProtectionIntegration"},"Protocols/ContentProtectionIntegration.html":{"name":"ContentProtectionIntegration","abstract":"

    This ContentProtectionIntegration defines some methods to alter license and certificate requests and responses.

    "},"External%20Content%20Protection%20integration%20API.html#/s:13THEOplayerSDK35ContentProtectionIntegrationFactoryP":{"name":"ContentProtectionIntegrationFactory","abstract":"

    Factory pattern to createContentProtectionIntegration.

    "},"External%20Content%20Protection%20integration%20API.html#/c:@M@THEOplayerSDK@objc(pl)CertificateRequestCallback":{"name":"CertificateRequestCallback","abstract":"

    A completion handler that should be called with the modified CertificateRequest.

    "},"External%20Content%20Protection%20integration%20API.html#/c:@M@THEOplayerSDK@objc(pl)CertificateResponseCallback":{"name":"CertificateResponseCallback","abstract":"

    A completion handler that should be called with the actual certificate, or an Error in case of failure.

    "},"External%20Content%20Protection%20integration%20API.html#/c:@M@THEOplayerSDK@objc(pl)LicenseRequestCallback":{"name":"LicenseRequestCallback","abstract":"

    A completion handler that should be called with the modified LicenseRequest.

    "},"External%20Content%20Protection%20integration%20API.html#/c:@M@THEOplayerSDK@objc(pl)LicenseResponseCallback":{"name":"LicenseResponseCallback","abstract":"

    A completion handler that should be called with the actual license, or an Error in case of failure.

    "},"Classes/CertificateResponse.html":{"name":"CertificateResponse","abstract":"

    The certificate response.

    "},"Classes/LicenseResponse.html":{"name":"LicenseResponse","abstract":"

    The license response.

    "},"External%20Content%20Protection%20integration%20API.html#/c:@M@THEOplayerSDK@objc(cs)CertificateRequest":{"name":"CertificateRequest","abstract":"

    A certificate request.

    "},"Classes/LicenseRequest.html":{"name":"LicenseRequest","abstract":"

    A license request.

    "},"Enums/KeySystemId.html":{"name":"KeySystemId","abstract":"

    Name of the key system.

    "},"Classes/Request.html":{"name":"Request","abstract":"

    A request, either for a CertificateRequest or a LicenseRequest.

    "},"Classes/Response.html":{"name":"Response","abstract":"

    The response, either of a LicenseResponse or for a CertificateResponse request.

    "},"Protocols/ABRConfiguration.html#/s:13THEOplayerSDK16ABRConfigurationP8strategyAA24ABRStrategyConfigurationCvp":{"name":"strategy","abstract":"

    The strategy to use to drive the adaptive bitrate behavior of the player. This configuration will only work with THEOlive streams and will not have any effect for other types of streams.

    ","parent_name":"ABRConfiguration"},"Protocols/ABRConfiguration.html#/s:13THEOplayerSDK16ABRConfigurationP12targetBufferSdvp":{"name":"targetBuffer","abstract":"

    The amount of seconds of video to buffer in advance.

    ","parent_name":"ABRConfiguration"},"Protocols/ABRConfiguration.html#/s:13THEOplayerSDK16ABRConfigurationP20preferredPeakBitRateSdvp":{"name":"preferredPeakBitRate","abstract":"

    The desired limit, in bits per second, of network bandwidth consumption. Defaults to 0, which indicates there is no limit.

    ","parent_name":"ABRConfiguration"},"Protocols/ABRConfiguration.html#/s:13THEOplayerSDK16ABRConfigurationP26preferredMaximumResolutionSo6CGSizeVvp":{"name":"preferredMaximumResolution","abstract":"

    The desired maximum resolution of a video that is to be downloaded. Defaults to CGSizeZero, which indicates there is no limit on the video resolution.

    ","parent_name":"ABRConfiguration"},"Classes/ABRStrategyConfiguration.html#/s:13THEOplayerSDK24ABRStrategyConfigurationC4typeAA0C4TypeOvp":{"name":"type","abstract":"

    The type of strategy used for ABR.

    ","parent_name":"ABRStrategyConfiguration"},"Classes/ABRStrategyConfiguration.html#/s:13THEOplayerSDK24ABRStrategyConfigurationC8metadataAA11ABRMetadataCSgvp":{"name":"metadata","abstract":"

    The metadata used for ABR.

    ","parent_name":"ABRStrategyConfiguration"},"Classes/ABRStrategyConfiguration.html#/s:13THEOplayerSDK24ABRStrategyConfigurationC4type8metadataAcA0C4TypeO_AA11ABRMetadataCSgtcfc":{"name":"init(type:metadata:)","abstract":"

    Constructs an ABRStrategyConfiguration given an ABRStrategyType enum member and an ABRMetadata struct.

    ","parent_name":"ABRStrategyConfiguration"},"Classes/ABRMetadata.html#/s:13THEOplayerSDK11ABRMetadataC7bitrateSdSgvp":{"name":"bitrate","abstract":"

    Specifying the bitrate allows you to initially cap the bandwidth consumption to a specified bitrate, in bits per second.

    ","parent_name":"ABRMetadata"},"Classes/ABRMetadata.html#/s:13THEOplayerSDK11ABRMetadataC7bitrateACSd_tcfc":{"name":"init(bitrate:)","abstract":"

    Constructs an ABRMetadata struct given a bitrate.

    ","parent_name":"ABRMetadata"},"Enums/ABRStrategyType.html#/s:13THEOplayerSDK15ABRStrategyTypeO11performanceyA2CmF":{"name":"performance","abstract":"

    The player will optimize ABR behavior to focus on the performance of the player.

    ","parent_name":"ABRStrategyType"},"Enums/ABRStrategyType.html#/s:13THEOplayerSDK15ABRStrategyTypeO7qualityyA2CmF":{"name":"quality","abstract":"

    The player will optimize ABR behavior to focus on displaying the best visual quality to the end-user as fast as possible.

    ","parent_name":"ABRStrategyType"},"Enums/ABRStrategyType.html#/s:13THEOplayerSDK15ABRStrategyTypeO9bandwidthyA2CmF":{"name":"bandwidth","abstract":"

    The player will optimize ABR behavior to focus on displaying the most optimal quality based on the ABR metadata passed in with the ABRStrategyConfiguration, by initially capping the bitrate to match the provided bitrate in the ABR metadata.

    ","parent_name":"ABRStrategyType"},"Enums/ABRStrategyType.html#/s:13THEOplayerSDK15ABRStrategyTypeO9_rawValueSSvp":{"name":"_rawValue","abstract":"

    The raw value of type String.

    ","parent_name":"ABRStrategyType"},"Enums/ABRStrategyType.html":{"name":"ABRStrategyType","abstract":"

    The different adaptive bitrate (ABR) strategies. This configuration will only work with THEOlive streams and will not have any effect for other types of streams.

    "},"Classes/ABRMetadata.html":{"name":"ABRMetadata","abstract":"

    The ABRMetadata specifies extra metadata that can be used to drive the ABR behavior of the player.

    "},"Classes/ABRStrategyConfiguration.html":{"name":"ABRStrategyConfiguration","abstract":"

    An object specifying strategy and metadata that the player will use for initial playback.

    "},"Protocols/ABRConfiguration.html":{"name":"ABRConfiguration","abstract":"

    The ABR object enables control of the adaptive bitrate behavior of the player.

    "},"Structs/CachingTaskEventTypes.html#/s:13THEOplayerSDK21CachingTaskEventTypesV12STATE_CHANGEAA0E4TypeCyAA05CacheE0CGvpZ":{"name":"STATE_CHANGE","abstract":"

    Fired when the CachingTask.status changes.

    ","parent_name":"CachingTaskEventTypes"},"Structs/CachingTaskEventTypes.html#/s:13THEOplayerSDK21CachingTaskEventTypesV8PROGRESSAA0E4TypeCyAA05CacheE0CGvpZ":{"name":"PROGRESS","abstract":"

    Fired when the CachingTask downloads additional segments.

    ","parent_name":"CachingTaskEventTypes"},"Structs/CacheEventTypes.html#/s:13THEOplayerSDK15CacheEventTypesV12STATE_CHANGEAA0D4TypeCyAA0cD0CGvpZ":{"name":"STATE_CHANGE","abstract":"

    Fired when the Cache.status changes.

    ","parent_name":"CacheEventTypes"},"Structs/CacheEventTypes.html":{"name":"CacheEventTypes","abstract":"

    The CacheEvent types.

    "},"Structs/CachingTaskEventTypes.html":{"name":"CachingTaskEventTypes","abstract":"

    The CachingTask event types.

    "},"Cache%20Events.html#/c:@M@THEOplayerSDK@objc(cs)CacheStateChangeEvent":{"name":"CacheStateChangeEvent","abstract":"

    Fired when the Cache.status changes.

    "},"Cache%20Events.html#/c:@M@THEOplayerSDK@objc(cs)CachingTaskStateChangeEvent":{"name":"CachingTaskStateChangeEvent","abstract":"

    Fired when the CachingTask.status changes.

    "},"Cache%20Events.html#/c:@M@THEOplayerSDK@objc(cs)CachingTaskProgressEvent":{"name":"CachingTaskProgressEvent","abstract":"

    Fired when the CachingTask downloads additional segments.

    "},"Classes/CachingParametersTrackSelection.html#/s:13THEOplayerSDK31CachingParametersTrackSelectionC05audioeF0SaySSGvp":{"name":"audioTrackSelection","abstract":"

    The list of langugage tags that indicates the preferred audio tracks to be cached. Defaults to [].

    ","parent_name":"CachingParametersTrackSelection"},"Classes/CachingParametersTrackSelection.html#/s:13THEOplayerSDK31CachingParametersTrackSelectionC04texteF0SaySSGvp":{"name":"textTrackSelection","abstract":"

    The list of langugage tags that indicates the preferred audio tracks to be cached. Defaults to [].

    ","parent_name":"CachingParametersTrackSelection"},"Protocols/CachingTaskLicense.html#/s:13THEOplayerSDK18CachingTaskLicenseP5renewyyF":{"name":"renew()","abstract":"

    Renews all the licenses associated with this caching task.

    ","parent_name":"CachingTaskLicense"},"Protocols/CachingTaskLicense.html#/s:13THEOplayerSDK18CachingTaskLicenseP5renewyyAA16DRMConfiguration_pF":{"name":"renew(_:)","abstract":"

    Renews all the licenses associated with this caching task.

    ","parent_name":"CachingTaskLicense"},"Classes/CachingParameters.html#/s:13THEOplayerSDK17CachingParametersC14expirationDate10Foundation0F0Vvp":{"name":"expirationDate","abstract":"

    The expiration date for the cached data.

    ","parent_name":"CachingParameters"},"Classes/CachingParameters.html#/s:13THEOplayerSDK17CachingParametersC9bandwidthSiSgvp":{"name":"bandwidth","abstract":"

    An approximation of the desired bandwidth, defaults to the highest bandwidth possible.

    ","parent_name":"CachingParameters"},"Classes/CachingParameters.html#/s:13THEOplayerSDK17CachingParametersC20allowsCellularAccessSbvp":{"name":"allowsCellularAccess","abstract":"

    An indication of caching data only on WIFI or on cellular data too. Defaults to true.

    ","parent_name":"CachingParameters"},"Classes/CachingParameters.html#/s:13THEOplayerSDK17CachingParametersC23preferredTrackSelectionAA0cdfG0Cvp":{"name":"preferredTrackSelection","abstract":"

    An indication of preferred tracks to be used for offline playback.

    ","parent_name":"CachingParameters"},"Classes/CachingParameters.html#/s:13THEOplayerSDK17CachingParametersC7networkAA20NetworkConfigurationCSgvp":{"name":"network","abstract":"

    The network configuration of the caching task.

    ","parent_name":"CachingParameters"},"Classes/CachingParameters.html#/s:13THEOplayerSDK17CachingParametersC14expirationDate9bandwidthAC10Foundation0F0V_SiSgtcfc":{"name":"init(expirationDate:bandwidth:)","abstract":"

    Constructs a CachingParameters.

    ","parent_name":"CachingParameters"},"Enums/CachingTaskStatus.html#/s:13THEOplayerSDK17CachingTaskStatusO9_rawValueSSvp":{"name":"_rawValue","abstract":"

    The raw value of type String.

    ","parent_name":"CachingTaskStatus"},"Protocols/CachingTask.html#/s:13THEOplayerSDK11CachingTaskP2idSSvp":{"name":"id","abstract":"

    The identifier of the task.

    ","parent_name":"CachingTask"},"Protocols/CachingTask.html#/s:13THEOplayerSDK11CachingTaskP6statusAA0cD6StatusOvp":{"name":"status","abstract":"

    The current CachingTaskStatus.

    ","parent_name":"CachingTask"},"Protocols/CachingTask.html#/s:13THEOplayerSDK11CachingTaskP6sourceAA17SourceDescriptionCvp":{"name":"source","abstract":"

    The SourceDescription processed by this caching task.

    ","parent_name":"CachingTask"},"Protocols/CachingTask.html#/s:13THEOplayerSDK11CachingTaskP10parametersAA0C10ParametersCvp":{"name":"parameters","abstract":"

    The CachingParameters for this caching task.

    ","parent_name":"CachingTask"},"Protocols/CachingTask.html#/s:13THEOplayerSDK11CachingTaskP8durationSdvp":{"name":"duration","abstract":"

    The amount of content that will be available after this task has finished, in seconds.

    ","parent_name":"CachingTask"},"Protocols/CachingTask.html#/s:13THEOplayerSDK11CachingTaskP6cachedSayAA9TimeRangeCGvp":{"name":"cached","abstract":"

    List of TimeRange indicating which data is currently cached.

    ","parent_name":"CachingTask"},"Protocols/CachingTask.html#/s:13THEOplayerSDK11CachingTaskP13secondsCachedSdvp":{"name":"secondsCached","abstract":"

    The amount of content that has already been cached, in seconds.

    ","parent_name":"CachingTask"},"Protocols/CachingTask.html#/s:13THEOplayerSDK11CachingTaskP16percentageCachedSdvp":{"name":"percentageCached","abstract":"

    The percentage of content that has already been cached, between 0 and 1.

    ","parent_name":"CachingTask"},"Protocols/CachingTask.html#/s:13THEOplayerSDK11CachingTaskP11bytesCachedSuvp":{"name":"bytesCached","abstract":"

    The amount of bytes that have already been cached.

    ","parent_name":"CachingTask"},"Protocols/CachingTask.html#/s:13THEOplayerSDK11CachingTaskP5startyyF":{"name":"start()","abstract":"

    Starts downloading the stream and stores it on the device.

    ","parent_name":"CachingTask"},"Protocols/CachingTask.html#/s:13THEOplayerSDK11CachingTaskP6removeyyF":{"name":"remove()","abstract":"

    Removes the task and tries to evict all associated streaming elements.

    ","parent_name":"CachingTask"},"Protocols/CachingTask.html#/s:13THEOplayerSDK11CachingTaskP5pauseyyF":{"name":"pause()","abstract":"

    Pauses downloading the stream.

    ","parent_name":"CachingTask"},"Protocols/CachingTask.html#/s:13THEOplayerSDK11CachingTaskP7licenseAA0cD7License_pvp":{"name":"license","abstract":"

    A controller for license related queries and operations.

    ","parent_name":"CachingTask"},"Protocols/CachingTask.html#/s:13THEOplayerSDK11CachingTaskP7networkAA7Network_pvp":{"name":"network","abstract":"

    The Network API.

    ","parent_name":"CachingTask"},"Protocols/CachingTask.html#/s:13THEOplayerSDK11CachingTaskP16addEventListener4type8listenerAA0fG0_pAA0F4TypeCyqd__G_yqd__ctAA0F8ProtocolRd__lF":{"name":"addEventListener(type:listener:)","abstract":"

    Adds the event listener of the given EventType.

    ","parent_name":"CachingTask"},"Protocols/CachingTask.html#/s:13THEOplayerSDK11CachingTaskP19removeEventListener4type8listeneryAA0F4TypeCyqd__G_AA0fG0_ptAA0F8ProtocolRd__lF":{"name":"removeEventListener(type:listener:)","abstract":"

    Removes the event listener of the given CachingTaskEventType.

    ","parent_name":"CachingTask"},"Enums/CacheStatus.html#/s:13THEOplayerSDK11CacheStatusO9_rawValueSSvp":{"name":"_rawValue","abstract":"

    The raw value of type String.

    ","parent_name":"CacheStatus"},"Protocols/Cache.html#/s:13THEOplayerSDK5CacheP6statusAA0C6StatusOvp":{"name":"status","abstract":"

    Indicates the CacheStatus.

    ","parent_name":"Cache"},"Protocols/Cache.html#/s:13THEOplayerSDK5CacheP5tasksSayAA11CachingTask_pGvp":{"name":"tasks","abstract":"

    The list of all caching tasks.

    ","parent_name":"Cache"},"Protocols/Cache.html#/s:13THEOplayerSDK5CacheP10createTask6source10parametersAA07CachingE0_pSgAA17SourceDescriptionC_AA0H10ParametersCSgtF":{"name":"createTask(source:parameters:)","abstract":"

    Creates a CachingTask which will be used to cache the provided source, abiding to the provided parameters.

    ","parent_name":"Cache"},"Protocols/Cache.html#/s:13THEOplayerSDK5CacheP16addEventListener4type8listenerAA0eF0_pAA0E4TypeCyqd__G_yqd__ctAA0E8ProtocolRd__lF":{"name":"addEventListener(type:listener:)","abstract":"

    Adds the event listener of the given EventType.

    ","parent_name":"Cache"},"Protocols/Cache.html#/s:13THEOplayerSDK5CacheP19removeEventListener4type8listeneryAA0E4TypeCyqd__G_AA0eF0_ptAA0E8ProtocolRd__lF":{"name":"removeEventListener(type:listener:)","abstract":"

    Removes the event listener for the given EventType.

    ","parent_name":"Cache"},"Protocols/Cache.html":{"name":"Cache","abstract":"

    The caching API allows to store a streaming source on the user’s device.

    "},"Enums/CacheStatus.html":{"name":"CacheStatus","abstract":"

    Indicates the status of the Cache.

    "},"Protocols/CachingTask.html":{"name":"CachingTask","abstract":"

    Represents a caching task.

    "},"Enums/CachingTaskStatus.html":{"name":"CachingTaskStatus","abstract":"

    The status of a caching task.

    "},"Classes/CachingParameters.html":{"name":"CachingParameters","abstract":"

    The configuration of a caching task.

    "},"Protocols/CachingTaskLicense.html":{"name":"CachingTaskLicense","abstract":"

    The caching task license controller which can be used to renew the license.

    "},"Classes/CachingParametersTrackSelection.html":{"name":"CachingParametersTrackSelection","abstract":"

    An object that represents a CachingParametersTrackSelection.

    "},"Cache%20API.html#/s:13THEOplayerSDK21CacheStatusIdleReasonO":{"name":"CacheStatusIdleReason","abstract":"

    The reason behind IDLE status change.

    "},"Enums/ErrorCategory.html#/s:13THEOplayerSDK13ErrorCategoryO13CONFIGURATIONyA2CmF":{"name":"CONFIGURATION","abstract":"

    Clusters all errors related to the configuration.

    ","parent_name":"ErrorCategory"},"Enums/ErrorCategory.html#/s:13THEOplayerSDK13ErrorCategoryO7LICENSEyA2CmF":{"name":"LICENSE","abstract":"

    Clusters all errors related to the license.

    ","parent_name":"ErrorCategory"},"Enums/ErrorCategory.html#/s:13THEOplayerSDK13ErrorCategoryO6SOURCEyA2CmF":{"name":"SOURCE","abstract":"

    Clusters all errors related to the source.

    ","parent_name":"ErrorCategory"},"Enums/ErrorCategory.html#/s:13THEOplayerSDK13ErrorCategoryO8MANIFESTyA2CmF":{"name":"MANIFEST","abstract":"

    Clusters all errors related to the manifest.

    ","parent_name":"ErrorCategory"},"Enums/ErrorCategory.html#/s:13THEOplayerSDK13ErrorCategoryO5MEDIAyA2CmF":{"name":"MEDIA","abstract":"

    Clusters all errors related to the media.

    ","parent_name":"ErrorCategory"},"Enums/ErrorCategory.html#/s:13THEOplayerSDK13ErrorCategoryO7NETWORKyA2CmF":{"name":"NETWORK","abstract":"

    Clusters all errors related to the network.

    ","parent_name":"ErrorCategory"},"Enums/ErrorCategory.html#/s:13THEOplayerSDK13ErrorCategoryO18CONTENT_PROTECTIONyA2CmF":{"name":"CONTENT_PROTECTION","abstract":"

    Clusters all errors related to the content protection.

    ","parent_name":"ErrorCategory"},"Enums/ErrorCategory.html#/s:13THEOplayerSDK13ErrorCategoryO8SUBTITLEyA2CmF":{"name":"SUBTITLE","abstract":"

    Clusters all errors related to the subtitles.

    ","parent_name":"ErrorCategory"},"Enums/ErrorCategory.html#/s:13THEOplayerSDK13ErrorCategoryO2VRyA2CmF":{"name":"VR","abstract":"

    Clusters all errors related to VR.

    ","parent_name":"ErrorCategory"},"Enums/ErrorCategory.html#/s:13THEOplayerSDK13ErrorCategoryO3ADSyA2CmF":{"name":"ADS","abstract":"

    Clusters all errors related to ads.

    ","parent_name":"ErrorCategory"},"Enums/ErrorCategory.html#/s:13THEOplayerSDK13ErrorCategoryO10FULLSCREENyA2CmF":{"name":"FULLSCREEN","abstract":"

    Clusters all errors related to fullscreen.

    ","parent_name":"ErrorCategory"},"Enums/ErrorCategory.html#/s:13THEOplayerSDK13ErrorCategoryO5CACHEyA2CmF":{"name":"CACHE","abstract":"

    This category clusters all errors related to caching.

    ","parent_name":"ErrorCategory"},"Enums/ErrorCategory.html#/s:13THEOplayerSDK13ErrorCategoryO8THEOLIVEyA2CmF":{"name":"THEOLIVE","abstract":"

    This category clusters all errors related to THEOlive.

    ","parent_name":"ErrorCategory"},"Enums/ErrorCategory.html#/s:13THEOplayerSDK13ErrorCategoryO9MILLICASTyA2CmF":{"name":"MILLICAST","abstract":"

    This category clusters all errors related to Millicast.

    ","parent_name":"ErrorCategory"},"Enums/THEOErrorCode.html#/s:13THEOplayerSDK13THEOErrorCodeO19CONFIGURATION_ERRORyA2CmF":{"name":"CONFIGURATION_ERROR","abstract":"

    The configuration provided is invalid.

    ","parent_name":"THEOErrorCode"},"Enums/THEOErrorCode.html#/s:13THEOplayerSDK13THEOErrorCodeO13LICENSE_ERRORyA2CmF":{"name":"LICENSE_ERROR","abstract":"

    The license provided is invalid.

    ","parent_name":"THEOErrorCode"},"Enums/THEOErrorCode.html#/s:13THEOplayerSDK13THEOErrorCodeO22LICENSE_INVALID_DOMAINyA2CmF":{"name":"LICENSE_INVALID_DOMAIN","abstract":"

    The provided license does not contain the current domain.

    ","parent_name":"THEOErrorCode"},"Enums/THEOErrorCode.html#/s:13THEOplayerSDK13THEOErrorCodeO22LICENSE_INVALID_SOURCEyA2CmF":{"name":"LICENSE_INVALID_SOURCE","abstract":"

    The current source is not allowed in the license provided.

    ","parent_name":"THEOErrorCode"},"Enums/THEOErrorCode.html#/s:13THEOplayerSDK13THEOErrorCodeO15LICENSE_EXPIREDyA2CmF":{"name":"LICENSE_EXPIRED","abstract":"

    The license has expired.

    ","parent_name":"THEOErrorCode"},"Enums/THEOErrorCode.html#/s:13THEOplayerSDK13THEOErrorCodeO23LICENSE_INVALID_FEATUREyA2CmF":{"name":"LICENSE_INVALID_FEATURE","abstract":"

    The provided license does not contain the necessary feature.

    ","parent_name":"THEOErrorCode"},"Enums/THEOErrorCode.html#/s:13THEOplayerSDK13THEOErrorCodeO14SOURCE_INVALIDyA2CmF":{"name":"SOURCE_INVALID","abstract":"

    The source provided is not valid.

    ","parent_name":"THEOErrorCode"},"Enums/THEOErrorCode.html#/s:13THEOplayerSDK13THEOErrorCodeO20SOURCE_NOT_SUPPORTEDyA2CmF":{"name":"SOURCE_NOT_SUPPORTED","abstract":"

    The provided source is not supported.

    ","parent_name":"THEOErrorCode"},"Enums/THEOErrorCode.html#/s:13THEOplayerSDK13THEOErrorCodeO19MANIFEST_LOAD_ERRORyA2CmF":{"name":"MANIFEST_LOAD_ERROR","abstract":"

    The manifest could not be loaded.

    ","parent_name":"THEOErrorCode"},"Enums/THEOErrorCode.html#/s:13THEOplayerSDK13THEOErrorCodeO19MANIFEST_CORS_ERRORyA2CmF":{"name":"MANIFEST_CORS_ERROR","abstract":"

    An Error related to Cross-origin resource sharing (CORS).

    ","parent_name":"THEOErrorCode"},"Enums/THEOErrorCode.html#/s:13THEOplayerSDK13THEOErrorCodeO20MANIFEST_PARSE_ERRORyA2CmF":{"name":"MANIFEST_PARSE_ERROR","abstract":"

    The manifest could not be parsed.

    ","parent_name":"THEOErrorCode"},"Enums/THEOErrorCode.html#/s:13THEOplayerSDK13THEOErrorCodeO19MEDIA_NOT_SUPPORTEDyA2CmF":{"name":"MEDIA_NOT_SUPPORTED","abstract":"

    The media is not supported.

    ","parent_name":"THEOErrorCode"},"Enums/THEOErrorCode.html#/s:13THEOplayerSDK13THEOErrorCodeO16MEDIA_LOAD_ERRORyA2CmF":{"name":"MEDIA_LOAD_ERROR","abstract":"

    The media could not be loaded.

    ","parent_name":"THEOErrorCode"},"Enums/THEOErrorCode.html#/s:13THEOplayerSDK13THEOErrorCodeO18MEDIA_DECODE_ERRORyA2CmF":{"name":"MEDIA_DECODE_ERROR","abstract":"

    The media could not be decoded.

    ","parent_name":"THEOErrorCode"},"Enums/THEOErrorCode.html#/s:13THEOplayerSDK13THEOErrorCodeO20MEDIA_AVPLAYER_ERRORyA2CmF":{"name":"MEDIA_AVPLAYER_ERROR","abstract":"

    An error related to playback through AVPlayer in the iOS or tvOS SDK.

    ","parent_name":"THEOErrorCode"},"Enums/THEOErrorCode.html#/s:13THEOplayerSDK13THEOErrorCodeO13MEDIA_ABORTEDyA2CmF":{"name":"MEDIA_ABORTED","abstract":"

    The fetching process for the media resource was aborted by the user agent at the user’s request.

    ","parent_name":"THEOErrorCode"},"Enums/THEOErrorCode.html#/s:13THEOplayerSDK13THEOErrorCodeO13NETWORK_ERRORyA2CmF":{"name":"NETWORK_ERROR","abstract":"

    An error related to network has been detected.

    ","parent_name":"THEOErrorCode"},"Enums/THEOErrorCode.html#/s:13THEOplayerSDK13THEOErrorCodeO15NETWORK_TIMEOUTyA2CmF":{"name":"NETWORK_TIMEOUT","abstract":"

    The network has timed out.

    ","parent_name":"THEOErrorCode"},"Enums/THEOErrorCode.html#/s:13THEOplayerSDK13THEOErrorCodeO24CONTENT_PROTECTION_ERRORyA2CmF":{"name":"CONTENT_PROTECTION_ERROR","abstract":"

    An error related to the content protection.

    ","parent_name":"THEOErrorCode"},"Enums/THEOErrorCode.html#/s:13THEOplayerSDK13THEOErrorCodeO32CONTENT_PROTECTION_NOT_SUPPORTEDyA2CmF":{"name":"CONTENT_PROTECTION_NOT_SUPPORTED","abstract":"

    The DRM provided is not supported on this platform.

    ","parent_name":"THEOErrorCode"},"Enums/THEOErrorCode.html#/s:13THEOplayerSDK13THEOErrorCodeO40CONTENT_PROTECTION_CONFIGURATION_MISSINGyA2CmF":{"name":"CONTENT_PROTECTION_CONFIGURATION_MISSING","abstract":"

    The media is DRM protected, but no content protection configuration was provided.

    ","parent_name":"THEOErrorCode"},"Enums/THEOErrorCode.html#/s:13THEOplayerSDK13THEOErrorCodeO40CONTENT_PROTECTION_CONFIGURATION_INVALIDyA2CmF":{"name":"CONTENT_PROTECTION_CONFIGURATION_INVALID","abstract":"

    The content protection configuration is invalid.

    ","parent_name":"THEOErrorCode"},"Enums/THEOErrorCode.html#/s:13THEOplayerSDK13THEOErrorCodeO41CONTENT_PROTECTION_INITIALIZATION_INVALIDyA2CmF":{"name":"CONTENT_PROTECTION_INITIALIZATION_INVALID","abstract":"

    The DRM initialization data could not be parsed.

    ","parent_name":"THEOErrorCode"},"Enums/THEOErrorCode.html#/s:13THEOplayerSDK13THEOErrorCodeO36CONTENT_PROTECTION_CERTIFICATE_ERRORyA2CmF":{"name":"CONTENT_PROTECTION_CERTIFICATE_ERROR","abstract":"

    The content protection’s certificate could not be loaded.

    ","parent_name":"THEOErrorCode"},"Enums/THEOErrorCode.html#/s:13THEOplayerSDK13THEOErrorCodeO38CONTENT_PROTECTION_CERTIFICATE_INVALIDyA2CmF":{"name":"CONTENT_PROTECTION_CERTIFICATE_INVALID","abstract":"

    The content protection’s certificate is invalid.

    ","parent_name":"THEOErrorCode"},"Enums/THEOErrorCode.html#/s:13THEOplayerSDK13THEOErrorCodeO32CONTENT_PROTECTION_LICENSE_ERRORyA2CmF":{"name":"CONTENT_PROTECTION_LICENSE_ERROR","abstract":"

    The content protection’s license could not be loaded.

    ","parent_name":"THEOErrorCode"},"Enums/THEOErrorCode.html#/s:13THEOplayerSDK13THEOErrorCodeO34CONTENT_PROTECTION_LICENSE_INVALIDyA2CmF":{"name":"CONTENT_PROTECTION_LICENSE_INVALID","abstract":"

    The content protection’s license is invalid.

    ","parent_name":"THEOErrorCode"},"Enums/THEOErrorCode.html#/s:13THEOplayerSDK13THEOErrorCodeO30CONTENT_PROTECTION_KEY_EXPIREDyA2CmF":{"name":"CONTENT_PROTECTION_KEY_EXPIRED","abstract":"

    The content protection’s key has expired.

    ","parent_name":"THEOErrorCode"},"Enums/THEOErrorCode.html#/s:13THEOplayerSDK13THEOErrorCodeO30CONTENT_PROTECTION_KEY_MISSINGyA2CmF":{"name":"CONTENT_PROTECTION_KEY_MISSING","abstract":"

    The content protection’s key is missing.

    ","parent_name":"THEOErrorCode"},"Enums/THEOErrorCode.html#/s:13THEOplayerSDK13THEOErrorCodeO36CONTENT_PROTECTION_OUTPUT_RESTRICTEDyA2CmF":{"name":"CONTENT_PROTECTION_OUTPUT_RESTRICTED","abstract":"

    All qualities require HDCP, but the current output does not fulfill HDCP requirements.

    ","parent_name":"THEOErrorCode"},"Enums/THEOErrorCode.html#/s:13THEOplayerSDK13THEOErrorCodeO33CONTENT_PROTECTION_INTERNAL_ERRORyA2CmF":{"name":"CONTENT_PROTECTION_INTERNAL_ERROR","abstract":"

    Something went wrong in the internal logic of the content protection system.

    ","parent_name":"THEOErrorCode"},"Enums/THEOErrorCode.html#/s:13THEOplayerSDK13THEOErrorCodeO19SUBTITLE_LOAD_ERRORyA2CmF":{"name":"SUBTITLE_LOAD_ERROR","abstract":"

    Loading subtitles has failed.

    ","parent_name":"THEOErrorCode"},"Enums/THEOErrorCode.html#/s:13THEOplayerSDK13THEOErrorCodeO19SUBTITLE_CORS_ERRORyA2CmF":{"name":"SUBTITLE_CORS_ERROR","abstract":"

    Loading subtitles has failed due to CORS.

    ","parent_name":"THEOErrorCode"},"Enums/THEOErrorCode.html#/s:13THEOplayerSDK13THEOErrorCodeO20SUBTITLE_PARSE_ERRORyA2CmF":{"name":"SUBTITLE_PARSE_ERROR","abstract":"

    Parsing subtitles has failed.

    ","parent_name":"THEOErrorCode"},"Enums/THEOErrorCode.html#/s:13THEOplayerSDK13THEOErrorCodeO23VR_PLATFORM_UNSUPPORTEDyA2CmF":{"name":"VR_PLATFORM_UNSUPPORTED","abstract":"

    This error occurs when VR is not supported on the current platform.

    ","parent_name":"THEOErrorCode"},"Enums/THEOErrorCode.html#/s:13THEOplayerSDK13THEOErrorCodeO21VR_PRESENTATION_ERRORyA2CmF":{"name":"VR_PRESENTATION_ERROR","abstract":"

    Changing the presentation to VR was not possible.

    ","parent_name":"THEOErrorCode"},"Enums/THEOErrorCode.html#/s:13THEOplayerSDK13THEOErrorCodeO19VR_PERMISSION_ERRORyA2CmF":{"name":"VR_PERMISSION_ERROR","abstract":"

    The right permissions to enable native VR were not given to the player.

    ","parent_name":"THEOErrorCode"},"Enums/THEOErrorCode.html#/s:13THEOplayerSDK13THEOErrorCodeO8AD_ERRORyA2CmF":{"name":"AD_ERROR","abstract":"

    Something went wrong with an ad.

    ","parent_name":"THEOErrorCode"},"Enums/THEOErrorCode.html#/s:13THEOplayerSDK13THEOErrorCodeO19AD_BLOCKER_DETECTEDyA2CmF":{"name":"AD_BLOCKER_DETECTED","abstract":"

    An ad blocker has been detected.

    ","parent_name":"THEOErrorCode"},"Enums/THEOErrorCode.html#/s:13THEOplayerSDK13THEOErrorCodeO16FULLSCREEN_ERRORyA2CmF":{"name":"FULLSCREEN_ERROR","abstract":"

    Changing the presentation to fullscreen was not possible.

    ","parent_name":"THEOErrorCode"},"Enums/THEOErrorCode.html#/s:13THEOplayerSDK13THEOErrorCodeO18CACHE_SOURCE_ERRORyA2CmF":{"name":"CACHE_SOURCE_ERROR","abstract":"

    Something went wrong while caching a source.

    ","parent_name":"THEOErrorCode"},"Enums/THEOErrorCode.html#/s:13THEOplayerSDK13THEOErrorCodeO30CACHE_CONTENT_PROTECTION_ERRORyA2CmF":{"name":"CACHE_CONTENT_PROTECTION_ERROR","abstract":"

    Something went wrong while caching content protection’s license.

    ","parent_name":"THEOErrorCode"},"Enums/THEOErrorCode.html#/s:13THEOplayerSDK13THEOErrorCodeO23THEO_LIVE_UNKNOWN_ERRORyA2CmF":{"name":"THEO_LIVE_UNKNOWN_ERROR","abstract":"

    Something went wrong with THEOlive playback.

    ","parent_name":"THEOErrorCode"},"Enums/THEOErrorCode.html#/s:13THEOplayerSDK13THEOErrorCodeO27THEO_LIVE_CHANNEL_NOT_FOUNDyA2CmF":{"name":"THEO_LIVE_CHANNEL_NOT_FOUND","abstract":"

    The THEOlive channel could not be played because it was not found. This can be because it was never created, it has been deleted or locked.

    ","parent_name":"THEOErrorCode"},"Enums/THEOErrorCode.html#/s:13THEOplayerSDK13THEOErrorCodeO21THEO_LIVE_END_OF_DEMOyA2CmF":{"name":"THEO_LIVE_END_OF_DEMO","abstract":"

    The THEOlive channel is a demo channel and the demo window has expired.

    ","parent_name":"THEOErrorCode"},"Enums/THEOErrorCode.html#/s:13THEOplayerSDK13THEOErrorCodeO25THEO_LIVE_ANALYTICS_ERRORyA2CmF":{"name":"THEO_LIVE_ANALYTICS_ERROR","abstract":"

    A fatal error occurred regarding THEOlive analytics.

    ","parent_name":"THEOErrorCode"},"Enums/THEOErrorCode.html#/s:13THEOplayerSDK13THEOErrorCodeO23MILLICAST_UNKNOWN_ERRORyA2CmF":{"name":"MILLICAST_UNKNOWN_ERROR","abstract":"

    Something went wrong with Millicast playback.

    ","parent_name":"THEOErrorCode"},"Enums/THEOErrorCode.html#/s:13THEOplayerSDK13THEOErrorCodeO20MILLICAST_HTTP_ERRORyA2CmF":{"name":"MILLICAST_HTTP_ERROR","abstract":"

    A fatal error occured regarding HTTP requests in Millicast.

    ","parent_name":"THEOErrorCode"},"Enums/THEOErrorCode.html#/s:13THEOplayerSDK13THEOErrorCodeO33MILLICAST_ABR_CONFIGURATION_ERRORyA2CmF":{"name":"MILLICAST_ABR_CONFIGURATION_ERROR","abstract":"

    A fatal error occured during ABR configuration in Millicast.

    ","parent_name":"THEOErrorCode"},"Enums/THEOErrorCode.html#/s:13THEOplayerSDK13THEOErrorCodeO31MILLICAST_TRACK_DISABLING_ERRORyA2CmF":{"name":"MILLICAST_TRACK_DISABLING_ERROR","abstract":"

    A fatal error occured when disabling a Millicast remote track.

    ","parent_name":"THEOErrorCode"},"Enums/THEOErrorCode.html#/s:13THEOplayerSDK13THEOErrorCodeO30MILLICAST_TRACK_ENABLING_ERRORyA2CmF":{"name":"MILLICAST_TRACK_ENABLING_ERROR","abstract":"

    A fatal error occured when enabling a Millicast remote track.

    ","parent_name":"THEOErrorCode"},"Enums/THEOErrorCode.html#/s:13THEOplayerSDK13THEOErrorCodeO26MILLICAST_DISCONNECT_ERRORyA2CmF":{"name":"MILLICAST_DISCONNECT_ERROR","abstract":"

    A fatal error occured when disconnecting the millicast client

    ","parent_name":"THEOErrorCode"},"Enums/THEOErrorCode.html#/s:13THEOplayerSDK13THEOErrorCodeO25MILLICAST_SUBSCRIBE_ERRORyA2CmF":{"name":"MILLICAST_SUBSCRIBE_ERROR","abstract":"

    A fatal error occured when attempting to subscribe to Millicast.

    ","parent_name":"THEOErrorCode"},"Enums/THEOErrorCode.html#/s:13THEOplayerSDK13THEOErrorCodeO26MILLICAST_SET_VOLUME_ERRORyA2CmF":{"name":"MILLICAST_SET_VOLUME_ERROR","abstract":"

    A fatal error occured when attempting to set volume on an audio track.

    ","parent_name":"THEOErrorCode"},"Enums/THEOErrorCode.html#/s:13THEOplayerSDK13THEOErrorCodeO31MILLCAST_WEBRTC_SIGNALING_ERRORyA2CmF":{"name":"MILLCAST_WEBRTC_SIGNALING_ERROR","abstract":"

    A fatal error occurred during WebRTC signaling with the millicast media server.

    ","parent_name":"THEOErrorCode"},"Protocols/AVPlayerError.html#/s:13THEOplayerSDK13AVPlayerErrorP8userInfoSDySSypGSgvp":{"name":"userInfo","abstract":"

    The userInfo dictionary for the error, if more details are available.

    ","parent_name":"AVPlayerError"},"Protocols/AVPlayerError.html#/s:13THEOplayerSDK13AVPlayerErrorP08avPlayerD4CodeSo7AVErrorVSgvp":{"name":"avPlayerErrorCode","abstract":"

    The parsed error code of the underlying AVplayer error, if available

    ","parent_name":"AVPlayerError"},"Protocols/AVPlayerError.html#/s:13THEOplayerSDK13AVPlayerErrorP08avPlayerD0SC7AVErrorLeVSgvp":{"name":"avPlayerError","abstract":"

    The underlying AVplayer error, if available

    ","parent_name":"AVPlayerError"},"Protocols/NetworkError.html#/s:13THEOplayerSDK12NetworkErrorP3urlSSSgvp":{"name":"url","abstract":"

    The URL that was used.

    ","parent_name":"NetworkError"},"Protocols/NetworkError.html#/s:13THEOplayerSDK12NetworkErrorP6statusSivp":{"name":"status","abstract":"

    The HTTP status code.

    ","parent_name":"NetworkError"},"Protocols/NetworkError.html#/s:13THEOplayerSDK12NetworkErrorP12errorCommentSSSgvp":{"name":"errorComment","abstract":"

    The error comment which might contain the HTTP status code.

    ","parent_name":"NetworkError"},"Protocols/THEOError.html#/s:13THEOplayerSDK9THEOErrorP9timestamp10Foundation4DateVvp":{"name":"timestamp","abstract":"

    The date at which the error occured.

    ","parent_name":"THEOError"},"Protocols/THEOError.html#/s:13THEOplayerSDK9THEOErrorP4codeAA0C4CodeOvp":{"name":"code","abstract":"

    A THEOErrorCode that indicates the type of error that has occurred.

    ","parent_name":"THEOError"},"Protocols/THEOError.html#/s:13THEOplayerSDK9THEOErrorP8categoryAA13ErrorCategoryOvp":{"name":"category","abstract":"

    An ErrorCategory that indicates the category of the error that has occurred.

    ","parent_name":"THEOError"},"Protocols/THEOError.html#/s:13THEOplayerSDK9THEOErrorP5causeAA13THEOBaseError_pSgvp":{"name":"cause","abstract":"

    The underlying cause of this error, if known.

    ","parent_name":"THEOError"},"Protocols/THEOBaseError.html#/s:13THEOplayerSDK13THEOBaseErrorP4nameSSvp":{"name":"name","abstract":"

    The name of the error.

    ","parent_name":"THEOBaseError"},"Protocols/THEOBaseError.html#/s:13THEOplayerSDK13THEOBaseErrorP7messageSSvp":{"name":"message","abstract":"

    The message of the error aimed at the user.

    ","parent_name":"THEOBaseError"},"Protocols/THEOBaseError.html#/s:13THEOplayerSDK13THEOBaseErrorP5stackSaySSGSgvp":{"name":"stack","abstract":"

    A stack-trace up until the error occured.

    ","parent_name":"THEOBaseError"},"Protocols/THEOBaseError.html":{"name":"THEOBaseError","abstract":"

    A basic error that is thrown by THEOPlayer.

    "},"Protocols/THEOError.html":{"name":"THEOError","abstract":"

    An error that is thrown by THEOplayer.

    "},"Protocols/NetworkError.html":{"name":"NetworkError","abstract":"

    A network error.

    "},"Protocols/AVPlayerError.html":{"name":"AVPlayerError","abstract":"

    An error that is thrown by AVPlayer.

    "},"Enums/THEOErrorCode.html":{"name":"THEOErrorCode","abstract":"

    A code that indicates the type of error that has occurred.

    "},"Enums/ErrorCategory.html":{"name":"ErrorCategory","abstract":"

    The Error category a TheoErrorCode belongs to.

    "},"Classes/NetworkErrorEvent.html#/s:13THEOplayerSDK17NetworkErrorEventC4typeSSvp":{"name":"type","abstract":"

    The textual representation of the type of event, ‘networkerror’.

    ","parent_name":"NetworkErrorEvent"},"Classes/NetworkErrorEvent.html#/s:13THEOplayerSDK17NetworkErrorEventC4date10Foundation4DateVvp":{"name":"date","abstract":"

    The date at which the event occurred.

    ","parent_name":"NetworkErrorEvent"},"Classes/NetworkErrorEvent.html#/s:13THEOplayerSDK17NetworkErrorEventC5errorAA0cD0_pSgvp":{"name":"error","abstract":"

    A NetworkError instance containing information about the error.

    ","parent_name":"NetworkErrorEvent"},"Structs/NetworkEventTypes.html#/s:13THEOplayerSDK17NetworkEventTypesV5ERRORAA0D4TypeCyAA0c5ErrorD0CGvpZ":{"name":"ERROR","abstract":"

    Fired when NetworkErrorEvent occurs.

    ","parent_name":"NetworkEventTypes"},"Structs/NetworkEventTypes.html#/s:13THEOplayerSDK17NetworkEventTypesV20ENTER_BADNETWORKMODEAA0D4TypeCyAA08EnterBadc4ModeD0CGvpZ":{"name":"ENTER_BADNETWORKMODE","abstract":"

    Fired when NetworkErrorEvent occurs.

    ","parent_name":"NetworkEventTypes"},"Structs/NetworkEventTypes.html#/s:13THEOplayerSDK17NetworkEventTypesV19EXIT_BADNETWORKMODEAA0D4TypeCyAA07ExitBadc4ModeD0CGvpZ":{"name":"EXIT_BADNETWORKMODE","abstract":"

    Fired when NetworkErrorEvent occurs.

    ","parent_name":"NetworkEventTypes"},"Structs/NetworkEventTypes.html":{"name":"NetworkEventTypes","abstract":"

    The types of Network events.

    "},"Classes/NetworkErrorEvent.html":{"name":"NetworkErrorEvent","abstract":"

    Fired when NetworkEventTypes.ERROR occurs for the THEOplayer.

    "},"Classes/AspectRatioChangeEvent.html#/s:13THEOplayerSDK22AspectRatioChangeEventC4typeSSvp":{"name":"type","abstract":"

    Type of the event, defaults to “aspectratiochange”.

    ","parent_name":"AspectRatioChangeEvent"},"Classes/AspectRatioChangeEvent.html#/s:13THEOplayerSDK22AspectRatioChangeEventC4date10Foundation4DateVvp":{"name":"date","abstract":"

    The date at which the event occured.

    ","parent_name":"AspectRatioChangeEvent"},"Classes/AspectRatioChangeEvent.html#/s:13THEOplayerSDK22AspectRatioChangeEventC06aspectD0AA0cD0Ovp":{"name":"aspectRatio","abstract":"

    The new AspectRatio of the view.

    ","parent_name":"AspectRatioChangeEvent"},"Fullscreen%20Events.html#/s:13THEOplayerSDK20FullscreenEventTypesV":{"name":"FullscreenEventTypes","abstract":"

    The types of events related to fullscreen.

    "},"Classes/AspectRatioChangeEvent.html":{"name":"AspectRatioChangeEvent","abstract":"

    Thrown when the aspect ratio property of the player has changed.

    "},"Protocols/FullscreenPresentationDelegate.html#/s:13THEOplayerSDK30FullscreenPresentationDelegateP7present14viewController10completionyAA0c4ViewH0C_yyctF":{"name":"present(viewController:completion:)","abstract":"

    Method which gets called when the fullscreen view controller is ready to be presented.

    ","parent_name":"FullscreenPresentationDelegate"},"Protocols/FullscreenPresentationDelegate.html#/s:13THEOplayerSDK30FullscreenPresentationDelegateP7dismiss14viewController10completionyAA0c4ViewH0C_yyctF":{"name":"dismiss(viewController:completion:)","abstract":"

    Method which gets called when the fullscreen view controller is ready to be dismissed.

    ","parent_name":"FullscreenPresentationDelegate"},"Enums/AspectRatio.html#/s:13THEOplayerSDK11AspectRatioO3fityA2CmF":{"name":"fit","abstract":"

    Scales the theoplayer so that all content fits inside its bounding box, keeping the original aspect ratio of the content.

    ","parent_name":"AspectRatio"},"Enums/AspectRatio.html#/s:13THEOplayerSDK11AspectRatioO4fillyA2CmF":{"name":"fill","abstract":"

    Scales the theoplayer so that all content fits inside the bounding box which will be stretched to fill the entire bounding box.

    ","parent_name":"AspectRatio"},"Enums/AspectRatio.html#/s:13THEOplayerSDK11AspectRatioO10aspectFillyA2CmF":{"name":"aspectFill","abstract":"

    Scales the theoplayer so that the content fills up the entire bounding box, keeping the original aspect ratio of the content.

    ","parent_name":"AspectRatio"},"Protocols/Fullscreen.html#/s:13THEOplayerSDK10FullscreenP30supportedInterfaceOrientationsSo26UIInterfaceOrientationMaskVvp":{"name":"supportedInterfaceOrientations","abstract":"

    The supported interface orientations for fullscreen mode as a UIInterfaceOrientationMask.

    ","parent_name":"Fullscreen"},"Protocols/Fullscreen.html#/s:13THEOplayerSDK10FullscreenP14viewControllerAA0c4ViewE0CSgvp":{"name":"viewController","abstract":"

    When in fullscreen presentation mode returns the FullscreenViewController that contains the player. Returns nil otherwise.

    ","parent_name":"Fullscreen"},"Protocols/Fullscreen.html#/s:13THEOplayerSDK10FullscreenP19viewControllerClassAA0c4ViewE0CmSgvp":{"name":"viewControllerClass","abstract":"

    The type of the FullscreenViewController that will be presented when the player goes to fullscreen presentation mode.

    ","parent_name":"Fullscreen"},"Protocols/Fullscreen.html#/s:13THEOplayerSDK10FullscreenP20presentationDelegateAA0c12PresentationE0_pSgvp":{"name":"presentationDelegate","abstract":"

    The fullscreen delegate which allows control over the presentation of the fullscreen view controller. Setting it will override the default behavior.

    ","parent_name":"Fullscreen"},"Protocols/Fullscreen.html#/s:13THEOplayerSDK10FullscreenP33setSupportedInterfaceOrientations09supportedfG0ySo26UIInterfaceOrientationMaskV_tF":{"name":"setSupportedInterfaceOrientations(supportedInterfaceOrientations:)","abstract":"

    Sets the supported interface orientations for fullscreen mode.

    ","parent_name":"Fullscreen"},"Protocols/Fullscreen.html#/s:13THEOplayerSDK10FullscreenP16addEventListener4type8listenerAA0eF0_pAA0E4TypeCyqd__G_yqd__ctAA0E8ProtocolRd__lF":{"name":"addEventListener(type:listener:)","abstract":"

    Adds the event listener of the given EventType.

    ","parent_name":"Fullscreen"},"Protocols/Fullscreen.html#/s:13THEOplayerSDK10FullscreenP19removeEventListener4type8listeneryAA0E4TypeCyqd__G_AA0eF0_ptAA0E8ProtocolRd__lF":{"name":"removeEventListener(type:listener:)","abstract":"

    Removes the event listener for the given EventType.

    ","parent_name":"Fullscreen"},"Protocols/Fullscreen.html":{"name":"Fullscreen","abstract":"

    The Fullscreen object helps you configure the settings of the fullscreen mode.

    "},"Enums/AspectRatio.html":{"name":"AspectRatio","abstract":"

    Specifies an aspect ratio for the player when in fullscreen mode.

    "},"Fullscreen%20API.html#/c:@M@THEOplayerSDK@objc(cs)FullscreenViewController":{"name":"FullscreenViewController","abstract":"

    The Fullscreen view controller class that presents the player when the PresentationMode is set to fullscreen."},"Protocols/FullscreenPresentationDelegate.html":{"name":"FullscreenPresentationDelegate","abstract":"

    The fullscreen delegate which allows control over the presentation of the fullscreen view controller.

    "},"Protocols/AVPictureInPictureControllerDelegateExtended.html#/c:@M@THEOplayerSDK@objc(pl)AVPictureInPictureControllerDelegateExtended(im)pictureInPictureDidBecomePossible":{"name":"pictureInPictureDidBecomePossible()","abstract":"

    Called when the value of AVPictureInPictureController.isPictureInPicturePossible changes to true.

    ","parent_name":"AVPictureInPictureControllerDelegateExtended"},"Protocols/AVPictureInPictureControllerDelegateExtended.html#/c:@M@THEOplayerSDK@objc(pl)AVPictureInPictureControllerDelegateExtended(im)pictureInPictureDidBecomeNotPossible":{"name":"pictureInPictureDidBecomeNotPossible()","abstract":"

    Called when the value of AVPictureInPictureController.isPictureInPicturePossible changes to false.

    ","parent_name":"AVPictureInPictureControllerDelegateExtended"},"Enums/PictureInPictureCorner.html#/s:13THEOplayerSDK09PictureInC6CornerO7defaultACvpZ":{"name":"default","abstract":"

    The default corner is bottom right

    ","parent_name":"PictureInPictureCorner"},"Protocols/PictureInPicture.html#/s:13THEOplayerSDK09PictureInC0P13currentCornerAA0cdcF0OSgvp":{"name":"currentCorner","abstract":"

    The current PictureInPictureCorner the PiP view is displayed in.

    ","parent_name":"PictureInPicture"},"Protocols/PictureInPicture.html#/s:13THEOplayerSDK09PictureInC0P9configure7movable13defaultCorner5scale10visibility6marginySbSg_AA0cdcH0OSgSfSgSdSgAA11THEOMarginsCSgtF":{"name":"configure(movable:defaultCorner:scale:visibility:margin:)","abstract":"

    Configures the picture-in-picture (PiP) view.

    ","parent_name":"PictureInPicture"},"Protocols/PictureInPicture.html#/s:13THEOplayerSDK09PictureInC0P06nativecdC8DelegateSo09AVPicturedc10ControllerF0_pSgvp":{"name":"nativePictureInPictureDelegate","abstract":"

    The protocol that defines the methods to respond to Picture in Picture events.

    ","parent_name":"PictureInPicture"},"Protocols/PictureInPicture.html#/s:13THEOplayerSDK09PictureInC0P9configure13configurationyAA16PiPConfigurationC_tF":{"name":"configure(configuration:)","abstract":"

    Sets the picture-in-picture configuration dynamically.

    ","parent_name":"PictureInPicture"},"Protocols/PictureInPicture.html#/s:13THEOplayerSDK09PictureInC0PAAE9configure7movable13defaultCorner5scaleySbSg_AA0cdcH0OSgSfSgtF":{"name":"configure(movable:defaultCorner:scale:)","abstract":"

    Configures the picture-in-picture (PiP) view

    ","parent_name":"PictureInPicture"},"Protocols/PictureInPicture.html#/s:13THEOplayerSDK09PictureInC0PAAE9configure7movable13defaultCorner5scale10visibilityySbSg_AA0cdcH0OSgSfSgSdSgtF":{"name":"configure(movable:defaultCorner:scale:visibility:)","abstract":"

    Configures the picture-in-picture (PiP) view.

    ","parent_name":"PictureInPicture"},"Protocols/PictureInPicture.html#/s:13THEOplayerSDK09PictureInC0PAAE9configure7movable13defaultCorner5scale6marginySbSg_AA0cdcH0OSgSfSgAA11THEOMarginsCSgtF":{"name":"configure(movable:defaultCorner:scale:margin:)","abstract":"

    Configures the picture-in-picture (PiP) view.

    ","parent_name":"PictureInPicture"},"Protocols/PictureInPicture.html":{"name":"PictureInPicture","abstract":"

    Helps configure the settings when PresentationMode.pictureInPicture is active.

    "},"Enums/PictureInPictureCorner.html":{"name":"PictureInPictureCorner","abstract":"

    The corner of the PiP view

    "},"Picture-In-Picture.html#/s:13THEOplayerSDK09PictureInC20NewCornerUserInfoKeySSvp":{"name":"PictureInPictureNewCornerUserInfoKey","abstract":"

    The key to retrieve the new PiP view corner

    "},"Picture-In-Picture.html#/s:13THEOplayerSDK09PictureInC20OldCornerUserInfoKeySSvp":{"name":"PictureInPictureOldCornerUserInfoKey","abstract":"

    The key to retrieve the corner at which the PiP view previously was

    "},"Protocols/AVPictureInPictureControllerDelegateExtended.html":{"name":"AVPictureInPictureControllerDelegateExtended","abstract":"

    Extends AVPictureInPictureControllerDelegate to provide additional methods that get called when changes occur in AVPictureInPictureController.

    "},"Classes/AirPlayStateChangeEvent.html#/s:13THEOplayerSDK23AirPlayStateChangeEventC5stateAA010PlayerCastE0OSgvp":{"name":"state","abstract":"

    Indicates the state of AirPlay.

    ","parent_name":"AirPlayStateChangeEvent"},"Classes/AirPlayEvent.html#/s:13THEOplayerSDK12AirPlayEventC4typeSSvp":{"name":"type","abstract":"

    The type of the event.

    ","parent_name":"AirPlayEvent"},"Classes/AirPlayEvent.html#/s:13THEOplayerSDK12AirPlayEventC4date10Foundation4DateVvp":{"name":"date","abstract":"

    The date at which the event occured.

    ","parent_name":"AirPlayEvent"},"Structs/AirPlayEventTypes.html#/s:13THEOplayerSDK17AirPlayEventTypesV12STATE_CHANGEAA0E4TypeCyAA0cd11StateChangeE0CGvpZ":{"name":"STATE_CHANGE","abstract":"

    Fired when the AirPlay.state changes.

    ","parent_name":"AirPlayEventTypes"},"Structs/AirPlayEventTypes.html":{"name":"AirPlayEventTypes","abstract":"

    The AirPlayEvent types.

    "},"Classes/AirPlayEvent.html":{"name":"AirPlayEvent","abstract":"

    The AirPlay event object.

    "},"Classes/AirPlayStateChangeEvent.html":{"name":"AirPlayStateChangeEvent","abstract":"

    Fired when the AirPlay.state changes.

    "},"Protocols/AirPlay.html#/s:13THEOplayerSDK7AirPlayP7castingSbvp":{"name":"casting","abstract":"

    Whether the player is casting.

    ","parent_name":"AirPlay"},"Protocols/AirPlay.html#/s:13THEOplayerSDK7AirPlayP5stateAA15PlayerCastStateOvp":{"name":"state","abstract":"

    The state of the casting process.

    ","parent_name":"AirPlay"},"Protocols/AirPlay.html#/s:13THEOplayerSDK7AirPlayP5startyyF":{"name":"start()","abstract":"

    Start a casting session with the player’s source.

    ","parent_name":"AirPlay"},"Protocols/AirPlay.html#/s:13THEOplayerSDK7AirPlayP4stopyyF":{"name":"stop()","abstract":"

    Stop the active casting session.

    ","parent_name":"AirPlay"},"Protocols/AirPlay.html":{"name":"AirPlay","abstract":"

    The AirPlay API.

    "},"Classes/StateChangeEvent.html#/s:13THEOplayerSDK16StateChangeEventC5stateAA010PlayerCastC0Ovp":{"name":"state","abstract":"

    The new cast state.

    ","parent_name":"StateChangeEvent"},"Classes/CastErrorEvent.html#/s:13THEOplayerSDK14CastErrorEventC5errorAA0cD0Cvp":{"name":"error","abstract":"

    The error thrown by the Chromecast.

    ","parent_name":"CastErrorEvent"},"Structs/ChromecastEventTypes.html#/s:13THEOplayerSDK20ChromecastEventTypesV12STATE_CHANGEAA0D4TypeCyAA011StateChangeD0CGvpZ":{"name":"STATE_CHANGE","abstract":"

    Fired when castStateChangeEvent occurs.

    ","parent_name":"ChromecastEventTypes"},"Structs/ChromecastEventTypes.html#/s:13THEOplayerSDK20ChromecastEventTypesV5ERRORAA0D4TypeCyAA09CastErrorD0CGvpZ":{"name":"ERROR","abstract":"

    Fired when castErrorEvent occurs.

    ","parent_name":"ChromecastEventTypes"},"Structs/ChromecastEventTypes.html":{"name":"ChromecastEventTypes","abstract":"

    The types of Chromecast Events.

    "},"Classes/CastErrorEvent.html":{"name":"CastErrorEvent","abstract":"

    Thrown to indicate that there was an error while casting / trying to cast.

    "},"Classes/StateChangeEvent.html":{"name":"StateChangeEvent","abstract":"

    Thrown to indicate that the state of the connection has changed.

    "},"Enums/ErrorCode.html#/s:13THEOplayerSDK9ErrorCodeO9_rawValueSSvp":{"name":"_rawValue","abstract":"

    The raw value of type String.

    ","parent_name":"ErrorCode"},"Enums/ChromecastMetadataType.html#/s:13THEOplayerSDK22ChromecastMetadataTypeO9_rawValueSSvp":{"name":"_rawValue","abstract":"

    The raw value of type String.

    ","parent_name":"ChromecastMetadataType"},"Classes/ChromecastMetadataImage.html#/s:13THEOplayerSDK23ChromecastMetadataImageC3srcSSvp":{"name":"src","abstract":"

    The URL to the metadata image.

    ","parent_name":"ChromecastMetadataImage"},"Classes/ChromecastMetadataImage.html#/s:13THEOplayerSDK23ChromecastMetadataImageC5widthSivp":{"name":"width","abstract":"

    The width of the image, in pixels.

    ","parent_name":"ChromecastMetadataImage"},"Classes/ChromecastMetadataImage.html#/s:13THEOplayerSDK23ChromecastMetadataImageC6heightSivp":{"name":"height","abstract":"

    The height of the image, in pixels.

    ","parent_name":"ChromecastMetadataImage"},"Classes/ChromecastMetadataImage.html#/s:13THEOplayerSDK23ChromecastMetadataImageC3src5width6heightACSS_S2itcfc":{"name":"init(src:width:height:)","abstract":"

    Constructs a ChromecastMetadataImage.

    ","parent_name":"ChromecastMetadataImage"},"Classes/ChromecastMetadataDescription.html#/s:13THEOplayerSDK29ChromecastMetadataDescriptionC6imagesSayAA0cD5ImageCGSgvp":{"name":"images","abstract":"

    An array of ChromecastMetadataImages.

    ","parent_name":"ChromecastMetadataDescription"},"Classes/ChromecastMetadataDescription.html#/s:13THEOplayerSDK29ChromecastMetadataDescriptionC11releaseDateSSSgvp":{"name":"releaseDate","abstract":"

    The release date using the following string format: “YYYY-MM-DD”

    ","parent_name":"ChromecastMetadataDescription"},"Classes/ChromecastMetadataDescription.html#/s:13THEOplayerSDK29ChromecastMetadataDescriptionC8subtitleSSSgvp":{"name":"subtitle","abstract":"

    The subtitle / short explanation about the content.

    ","parent_name":"ChromecastMetadataDescription"},"Classes/ChromecastMetadataDescription.html#/s:13THEOplayerSDK29ChromecastMetadataDescriptionC11releaseYearSiSgvp":{"name":"releaseYear","abstract":"

    The release year as an integer number.

    ","parent_name":"ChromecastMetadataDescription"},"Classes/ChromecastMetadataDescription.html#/s:13THEOplayerSDK29ChromecastMetadataDescriptionC4typeAA0cD4TypeOSgvp":{"name":"type","abstract":"

    The type. Defaults to “generic” if unset.

    ","parent_name":"ChromecastMetadataDescription"},"Classes/ChromecastMetadataDescription.html#/s:13THEOplayerSDK29ChromecastMetadataDescriptionC6images11releaseDate0G4Year5title8subtitle4type12metadataKeysACSayAA0cD5ImageCGSg_SSSgSiSgA2oA0cD4TypeOSgSDySSypGSgtcfc":{"name":"init(images:releaseDate:releaseYear:title:subtitle:type:metadataKeys:)","abstract":"

    Constructs a ChromecastMetadataDescription.

    ","parent_name":"ChromecastMetadataDescription"},"Classes/CastError.html#/s:13THEOplayerSDK9CastErrorC9errorCodeAA0dF0Ovp":{"name":"errorCode","abstract":"

    The error code of the cast error.

    ","parent_name":"CastError"},"Classes/CastError.html#/s:13THEOplayerSDK9CastErrorC11descriptionSSSgvp":{"name":"description","abstract":"

    The description of the cast error.

    ","parent_name":"CastError"},"Enums/PlayerCastState.html#/s:13THEOplayerSDK15PlayerCastStateO9availableyA2CmF":{"name":"available","abstract":"

    There is a cast device detected, but that THEOplayer is not casting or controlling the current cast session.

    ","parent_name":"PlayerCastState"},"Enums/PlayerCastState.html#/s:13THEOplayerSDK15PlayerCastStateO9connectedyA2CmF":{"name":"connected","abstract":"

    THEOplayer is casting to the cast device.

    ","parent_name":"PlayerCastState"},"Enums/PlayerCastState.html#/s:13THEOplayerSDK15PlayerCastStateO11unavailableyA2CmF":{"name":"unavailable","abstract":"

    There is no cast device detected or that the device is not available (e.g. not powered, not connected to the internet).

    ","parent_name":"PlayerCastState"},"Enums/PlayerCastState.html#/s:13THEOplayerSDK15PlayerCastStateO10connectingyA2CmF":{"name":"connecting","abstract":"

    THEOplayer is in the process of connecting to the cast device.

    ","parent_name":"PlayerCastState"},"Enums/PlayerCastState.html#/s:13THEOplayerSDK15PlayerCastStateO9_rawValueSSvp":{"name":"_rawValue","abstract":"

    The raw value of type String.

    ","parent_name":"PlayerCastState"},"Enums/CastStrategy.html#/s:13THEOplayerSDK12CastStrategyO4autoyA2CmF":{"name":"auto","abstract":"

    The player will automatically join a cast session at startup if one exists when play is called.

    ","parent_name":"CastStrategy"},"Enums/CastStrategy.html#/s:13THEOplayerSDK12CastStrategyO6manualyA2CmF":{"name":"manual","abstract":"

    The player will take over an existing session if there is one and the cast button is clicked.

    ","parent_name":"CastStrategy"},"Enums/CastStrategy.html#/s:13THEOplayerSDK12CastStrategyO8disabledyA2CmF":{"name":"disabled","abstract":"

    The player will not be affected by any existing cast sessions.

    ","parent_name":"CastStrategy"},"Enums/CastStrategy.html#/s:13THEOplayerSDK12CastStrategyO9_rawValueSSvp":{"name":"_rawValue","abstract":"

    The raw value of type String.

    ","parent_name":"CastStrategy"},"Classes/CastConfiguration.html#/s:13THEOplayerSDK17CastConfigurationC8strategyAA0C8StrategyOSgvp":{"name":"strategy","abstract":"

    The join strategy that will determine how the player will join an existing chromecast session.

    ","parent_name":"CastConfiguration"},"Classes/CastConfiguration.html#/s:13THEOplayerSDK17CastConfigurationC26enableExperimentalPipelineSbvp":{"name":"enableExperimentalPipeline","abstract":"

    Enable the new chromecast pipeline. This is an improved pipeline that enables new features in the future. Off by default

    ","parent_name":"CastConfiguration"},"Classes/CastConfiguration.html#/s:13THEOplayerSDK17CastConfigurationC8strategy26enableExperimentalPipelineAcA0C8StrategyOSg_Sbtcfc":{"name":"init(strategy:enableExperimentalPipeline:)","abstract":"

    Creates a Cast configuration.

    ","parent_name":"CastConfiguration"},"Protocols/Chromecast.html#/s:13THEOplayerSDK10ChromecastP7castingSbvp":{"name":"casting","abstract":"

    Whether THEOplayer is casting to a chromecast and has control over the current chromecast session.

    ","parent_name":"Chromecast"},"Protocols/Chromecast.html#/s:13THEOplayerSDK10ChromecastP5errorAA9CastErrorCSgvp":{"name":"error","abstract":"

    The last error thrown by chromecast.

    ","parent_name":"Chromecast"},"Protocols/Chromecast.html#/s:13THEOplayerSDK10ChromecastP12receiverNameSSSgvp":{"name":"receiverName","abstract":"

    The name of the chromecast device that THEOplayer is casting to.

    ","parent_name":"Chromecast"},"Protocols/Chromecast.html#/s:13THEOplayerSDK10ChromecastP5stateAA15PlayerCastStateOSgvp":{"name":"state","abstract":"

    Indicates the state of the casting process.

    ","parent_name":"Chromecast"},"Protocols/Chromecast.html#/s:13THEOplayerSDK10ChromecastP21setConnectionDelegateyyAA0ceF0_pSgF":{"name":"setConnectionDelegate(_:)","abstract":"

    The ChromecastConnectionDelegate to be used when the Chromecast connection changes.

    ","parent_name":"Chromecast"},"Protocols/Chromecast.html#/s:13THEOplayerSDK10ChromecastP5startyyF":{"name":"start()","abstract":"

    Start casting to the chromecast. A dialog will prompt to choose the device.

    ","parent_name":"Chromecast"},"Protocols/Chromecast.html#/s:13THEOplayerSDK10ChromecastP4stopyyF":{"name":"stop()","abstract":"

    Stop casting to the chromecast.

    ","parent_name":"Chromecast"},"Protocols/Chromecast.html#/s:13THEOplayerSDK10ChromecastP4joinyyF":{"name":"join()","abstract":"

    Join an active chromecast session.

    ","parent_name":"Chromecast"},"Protocols/Chromecast.html#/s:13THEOplayerSDK10ChromecastP5leaveyyF":{"name":"leave()","abstract":"

    Leave an active chromecast session without affecting other devices.

    ","parent_name":"Chromecast"},"Protocols/Chromecast.html#/s:13THEOplayerSDK10ChromecastP16addEventListener4type8listenerAA0eF0_pAA0E4TypeCyqd__G_yqd__ctAA0E8ProtocolRd__lF":{"name":"addEventListener(type:listener:)","abstract":"

    Adds the given event listener of the given ChromecastEventType.

    ","parent_name":"Chromecast"},"Protocols/Chromecast.html#/s:13THEOplayerSDK10ChromecastP19removeEventListener4type8listeneryAA0E4TypeCyqd__G_AA0eF0_ptAA0E8ProtocolRd__lF":{"name":"removeEventListener(type:listener:)","abstract":"

    Removes the given event listener of the given ChromecastEventType.

    ","parent_name":"Chromecast"},"Protocols/Chromecast.html":{"name":"Chromecast","abstract":"

    Chromecast, also known as Google Cast, is a casting device designed by Google.

    "},"Classes/CastConfiguration.html":{"name":"CastConfiguration","abstract":"

    Describes the configuration of the Cast integrations.

    "},"Enums/CastStrategy.html":{"name":"CastStrategy","abstract":"

    The cast strategies that specify the ways an existing chromecast session can be joined.

    "},"Enums/PlayerCastState.html":{"name":"PlayerCastState","abstract":"

    Indicates the state of the casting processs.

    "},"Classes/CastError.html":{"name":"CastError","abstract":"

    The cast error.

    "},"Classes/ChromecastMetadataDescription.html":{"name":"ChromecastMetadataDescription","abstract":"

    The description of the metadata used by Chromecast.

    "},"Classes/ChromecastMetadataImage.html":{"name":"ChromecastMetadataImage","abstract":"

    The metadata of a Chromecast image.

    "},"Enums/ChromecastMetadataType.html":{"name":"ChromecastMetadataType","abstract":"

    The Chromecast metadata type.

    "},"Enums/ErrorCode.html":{"name":"ErrorCode","abstract":"

    The different types of errors.

    "},"Classes/AdErrorEvent.html#/s:13THEOplayerSDK13EventProtocolP4typeSSvp":{"name":"type","parent_name":"AdErrorEvent"},"Classes/AdErrorEvent.html#/s:13THEOplayerSDK13EventProtocolP4date10Foundation4DateVvp":{"name":"date","parent_name":"AdErrorEvent"},"Structs/AdsEventTypes.html#/s:13THEOplayerSDK13AdsEventTypesV8AD_BEGINAA0D4TypeCyAA07AdBeginD0CGvpZ":{"name":"AD_BEGIN","abstract":"

    Fired when AdBeginEvent occurs.

    ","parent_name":"AdsEventTypes"},"Structs/AdsEventTypes.html#/s:13THEOplayerSDK13AdsEventTypesV6AD_ENDAA0D4TypeCyAA05AdEndD0CGvpZ":{"name":"AD_END","abstract":"

    Fired when AdEndEvent occurs.

    ","parent_name":"AdsEventTypes"},"Structs/AdsEventTypes.html#/s:13THEOplayerSDK13AdsEventTypesV8AD_ERRORAA0D4TypeCyAA07AdErrorD0CGvpZ":{"name":"AD_ERROR","abstract":"

    Fired when AdErrorEvent occurs.

    ","parent_name":"AdsEventTypes"},"Structs/AdsEventTypes.html#/s:13THEOplayerSDK13AdsEventTypesV17AD_FIRST_QUARTILEAA0D4TypeCyAA015AdFirstQuartileD0CGvpZ":{"name":"AD_FIRST_QUARTILE","abstract":"

    Fired when AdFirstQuartileEvent occurs.

    ","parent_name":"AdsEventTypes"},"Structs/AdsEventTypes.html#/s:13THEOplayerSDK13AdsEventTypesV11AD_MIDPOINTAA0D4TypeCyAA010AdMidpointD0CGvpZ":{"name":"AD_MIDPOINT","abstract":"

    Fired when AdMidpointEvent occurs.

    ","parent_name":"AdsEventTypes"},"Structs/AdsEventTypes.html#/s:13THEOplayerSDK13AdsEventTypesV17AD_THIRD_QUARTILEAA0D4TypeCyAA015AdThirdQuartileD0CGvpZ":{"name":"AD_THIRD_QUARTILE","abstract":"

    Fired when AdThirdQuartileEvent occurs.

    ","parent_name":"AdsEventTypes"},"Structs/AdsEventTypes.html#/s:13THEOplayerSDK13AdsEventTypesV9AD_LOADEDAA0D4TypeCyAA08AdLoadedD0CGvpZ":{"name":"AD_LOADED","abstract":"

    Fired when AdLoadedEvent occurs.

    ","parent_name":"AdsEventTypes"},"Structs/AdsEventTypes.html#/s:13THEOplayerSDK13AdsEventTypesV13AD_IMPRESSIONAA0D4TypeCyAA012AdImpressionD0CGvpZ":{"name":"AD_IMPRESSION","abstract":"

    Fired when AdImpressionEvent occurs.

    ","parent_name":"AdsEventTypes"},"Structs/AdsEventTypes.html#/s:13THEOplayerSDK13AdsEventTypesV7AD_SKIPAA0D4TypeCyAA06AdSkipD0CGvpZ":{"name":"AD_SKIP","abstract":"

    Fired when AdSkipEvent occurs.

    ","parent_name":"AdsEventTypes"},"Structs/AdsEventTypes.html#/s:13THEOplayerSDK13AdsEventTypesV14AD_BREAK_BEGINAA0D4TypeCyAA012AdBreakBeginD0CGvpZ":{"name":"AD_BREAK_BEGIN","abstract":"

    Fired when AdBreakBeginEvent occurs.

    ","parent_name":"AdsEventTypes"},"Structs/AdsEventTypes.html#/s:13THEOplayerSDK13AdsEventTypesV12AD_BREAK_ENDAA0D4TypeCyAA010AdBreakEndD0CGvpZ":{"name":"AD_BREAK_END","abstract":"

    Fired when AdBreakEndEvent occurs.

    ","parent_name":"AdsEventTypes"},"Structs/AdsEventTypes.html#/s:13THEOplayerSDK13AdsEventTypesV9AD_TAPPEDAA0D4TypeCyAA08AdTappedD0CGvpZ":{"name":"AD_TAPPED","abstract":"

    Fired when AdTappedEvent occurs.

    ","parent_name":"AdsEventTypes"},"Structs/AdsEventTypes.html#/s:13THEOplayerSDK13AdsEventTypesV10AD_CLICKEDAA0D4TypeCyAA09AdClickedD0CGvpZ":{"name":"AD_CLICKED","abstract":"

    Fired when AdClickedEvent occurs.

    ","parent_name":"AdsEventTypes"},"Structs/AdsEventTypes.html#/s:13THEOplayerSDK13AdsEventTypesV12ADD_AD_BREAKAA0D4TypeCyAA010AddAdBreakD0CGvpZ":{"name":"ADD_AD_BREAK","abstract":"

    Fired when AddAdBreakEvent occurs.

    ","parent_name":"AdsEventTypes"},"Structs/AdsEventTypes.html#/s:13THEOplayerSDK13AdsEventTypesV15UPDATE_AD_BREAKAA0D4TypeCyAA013UpdateAdBreakD0CGvpZ":{"name":"UPDATE_AD_BREAK","abstract":"

    Fired when UpdateAdBreakEvent occurs.

    ","parent_name":"AdsEventTypes"},"Structs/AdsEventTypes.html#/s:13THEOplayerSDK13AdsEventTypesV15REMOVE_AD_BREAKAA0D4TypeCyAA013RemoveAdBreakD0CGvpZ":{"name":"REMOVE_AD_BREAK","abstract":"

    Fired when RemoveAdBreakEvent occurs.

    ","parent_name":"AdsEventTypes"},"Structs/AdsEventTypes.html#/s:13THEOplayerSDK13AdsEventTypesV15AD_BREAK_CHANGEAA0D4TypeCyAA013AdBreakChangeD0CGvpZ":{"name":"AD_BREAK_CHANGE","abstract":"

    Fired when AdBreakChangeEvent occurs.

    ","parent_name":"AdsEventTypes"},"Structs/AdsEventTypes.html#/s:13THEOplayerSDK13AdsEventTypesV6ADD_ADAA0D4TypeCyAA05AddAdD0CGvpZ":{"name":"ADD_AD","abstract":"

    Fired when AddAdEvent occurs.

    ","parent_name":"AdsEventTypes"},"Structs/AdsEventTypes.html#/s:13THEOplayerSDK13AdsEventTypesV9UPDATE_ADAA0D4TypeCyAA08UpdateAdD0CGvpZ":{"name":"UPDATE_AD","abstract":"

    Fired when UpdateAdEvent occurs.

    ","parent_name":"AdsEventTypes"},"Structs/AdsEventTypes.html":{"name":"AdsEventTypes","abstract":"

    The types of Ads events.

    "},"Ads%20Events.html#/c:@M@THEOplayerSDK@objc(cs)AdBeginEvent":{"name":"AdBeginEvent","abstract":"

    Thrown to indicate that an ad has begun.

    "},"Ads%20Events.html#/c:@M@THEOplayerSDK@objc(cs)AdEndEvent":{"name":"AdEndEvent","abstract":"

    Thrown to indicate that an ad has ended.

    "},"Classes/AdErrorEvent.html":{"name":"AdErrorEvent","abstract":"

    Thrown to indicate that an ad has encountered an error.

    "},"Ads%20Events.html#/c:@M@THEOplayerSDK@objc(cs)AdBreakBeginEvent":{"name":"AdBreakBeginEvent","abstract":"

    Thrown to indicate that an ad has begun.

    "},"Ads%20Events.html#/c:@M@THEOplayerSDK@objc(cs)AdBreakEndEvent":{"name":"AdBreakEndEvent","abstract":"

    Thrown to indicate that an ad has begun.

    "},"Ads%20Events.html#/c:@M@THEOplayerSDK@objc(cs)AdFirstQuartileEvent":{"name":"AdFirstQuartileEvent","abstract":"

    Thrown to indicate that the first quartile of an ad was watched.

    "},"Ads%20Events.html#/c:@M@THEOplayerSDK@objc(cs)AdImpressionEvent":{"name":"AdImpressionEvent","abstract":"

    Thrown to indicate that an ad impression was fired.

    "},"Ads%20Events.html#/c:@M@THEOplayerSDK@objc(cs)AdLoadedEvent":{"name":"AdLoadedEvent","abstract":"

    Thrown to indicate that an ad was loaded.

    "},"Ads%20Events.html#/c:@M@THEOplayerSDK@objc(cs)AdMidpointEvent":{"name":"AdMidpointEvent","abstract":"

    Thrown to indicate that the middle of an ad was watched.

    "},"Ads%20Events.html#/c:@M@THEOplayerSDK@objc(cs)AdThirdQuartileEvent":{"name":"AdThirdQuartileEvent","abstract":"

    Thrown to indicate that the third quartile of an ad was watched.

    "},"Enums/OmidFriendlyObstructionPurpose.html#/s:13THEOplayerSDK30OmidFriendlyObstructionPurposeO7closeAdyA2CmF":{"name":"closeAd","abstract":"

    The obstruction was added to offer the functionality to close the ad.

    ","parent_name":"OmidFriendlyObstructionPurpose"},"Enums/OmidFriendlyObstructionPurpose.html#/s:13THEOplayerSDK30OmidFriendlyObstructionPurposeO13mediaControlsyA2CmF":{"name":"mediaControls","abstract":"

    The obstruction was added as a part of the media controls, e.g. a pause button.

    ","parent_name":"OmidFriendlyObstructionPurpose"},"Enums/OmidFriendlyObstructionPurpose.html#/s:13THEOplayerSDK30OmidFriendlyObstructionPurposeO10notVisibleyA2CmF":{"name":"notVisible","abstract":"

    The obstruction that was added is transparent and does not impact viewability.

    ","parent_name":"OmidFriendlyObstructionPurpose"},"Enums/OmidFriendlyObstructionPurpose.html#/s:13THEOplayerSDK30OmidFriendlyObstructionPurposeO5otheryA2CmF":{"name":"other","abstract":"

    The obstruction was added for another, possibly unknown, reason.

    ","parent_name":"OmidFriendlyObstructionPurpose"},"Classes/OmidFriendlyObstruction.html#/s:13THEOplayerSDK23OmidFriendlyObstructionC4viewSo6UIViewCvp":{"name":"view","abstract":"

    The view element of the friendly obstruction.

    ","parent_name":"OmidFriendlyObstruction"},"Classes/OmidFriendlyObstruction.html#/s:13THEOplayerSDK23OmidFriendlyObstructionC7purposeAA0cdE7PurposeOvp":{"name":"purpose","abstract":"

    The purpose of the friendly obstruction.

    ","parent_name":"OmidFriendlyObstruction"},"Classes/OmidFriendlyObstruction.html#/s:13THEOplayerSDK23OmidFriendlyObstructionC14detailedReasonSSSgvp":{"name":"detailedReason","abstract":"

    A text to explain the reason behind adding the view as a friendly obstruction.

    ","parent_name":"OmidFriendlyObstruction"},"Classes/OmidFriendlyObstruction.html#/s:13THEOplayerSDK23OmidFriendlyObstructionC4view7purpose14detailedReasonACSo6UIViewC_AA0cdE7PurposeOSSSgtcfc":{"name":"init(view:purpose:detailedReason:)","abstract":"

    Constructs an OmidFriendlyObstruction.

    ","parent_name":"OmidFriendlyObstruction"},"Protocols/Omid.html#/s:13THEOplayerSDK4OmidP22addFriendlyObstruction08friendlyF0yAA0ceF0C_tF":{"name":"addFriendlyObstruction(friendlyObstruction:)","abstract":"

    Adds the passed OmidFriendlyObstruction as a friendly obstruction.

    ","parent_name":"Omid"},"Protocols/Omid.html#/s:13THEOplayerSDK4OmidP26removeFriendlyObstructionsyyF":{"name":"removeFriendlyObstructions()","abstract":"

    Removes all the previously added friendly obstructions.

    ","parent_name":"Omid"},"Enums/AdIntegrationKind.html#/s:13THEOplayerSDK17AdIntegrationKindO7theoadsyA2CmF":{"name":"theoads","abstract":"

    The ad is of integration type THEO ad.

    ","parent_name":"AdIntegrationKind"},"Enums/AdIntegrationKind.html#/s:13THEOplayerSDK17AdIntegrationKindO10google_imayA2CmF":{"name":"google_ima","abstract":"

    The ad is of integration type Google IMA.

    ","parent_name":"AdIntegrationKind"},"Enums/AdIntegrationKind.html#/s:13THEOplayerSDK17AdIntegrationKindO10google_daiyA2CmF":{"name":"google_dai","abstract":"

    The ad is of integration type Google DAI.

    ","parent_name":"AdIntegrationKind"},"Enums/AdIntegrationKind.html#/s:13THEOplayerSDK17AdIntegrationKindO6customyA2CmF":{"name":"custom","abstract":"

    The ad is of custom integration type.

    ","parent_name":"AdIntegrationKind"},"Enums/AdIntegrationKind.html#/s:13THEOplayerSDK17AdIntegrationKindO9_rawValueSSvp":{"name":"_rawValue","abstract":"

    The raw value of type String.

    ","parent_name":"AdIntegrationKind"},"Enums/AdIntegration.html#/s:13THEOplayerSDK13AdIntegrationO9_rawValueSSvp":{"name":"_rawValue","abstract":"

    The raw value of type String.

    ","parent_name":"AdIntegration"},"Classes/AdType.html#/s:13THEOplayerSDK6AdTypeC6linearSSvpZ":{"name":"linear","abstract":"

    Linear advertisements interrupt the video content. They appear before (as pre-roll), after (as post-roll) or during (as mid-roll) the video content.

    ","parent_name":"AdType"},"Classes/AdType.html#/s:13THEOplayerSDK6AdTypeC9nonlinearSSvpZ":{"name":"nonlinear","abstract":"

    Non-linear advertisements appear during video content, without disrupting playback.

    ","parent_name":"AdType"},"Classes/AdType.html#/s:13THEOplayerSDK6AdTypeC7unknownSSvpZ":{"name":"unknown","abstract":"

    The type of the advertisement is unknown.

    ","parent_name":"AdType"},"Protocols/CompanionAd.html#/s:13THEOplayerSDK11CompanionAdP8adSlotIdSSSgvp":{"name":"adSlotId","abstract":"

    An identifier of the element in which the companion ad should be appended, if available.

    ","parent_name":"CompanionAd"},"Protocols/CompanionAd.html#/s:13THEOplayerSDK11CompanionAdP7altTextSSSgvp":{"name":"altText","abstract":"

    An alternative description for the companion ad.

    ","parent_name":"CompanionAd"},"Protocols/CompanionAd.html#/s:13THEOplayerSDK11CompanionAdP12clickThroughSSSgvp":{"name":"clickThrough","abstract":"

    The website of the advertisement.

    ","parent_name":"CompanionAd"},"Protocols/CompanionAd.html#/s:13THEOplayerSDK11CompanionAdP6heightSivp":{"name":"height","abstract":"

    The height of the companion ad, in pixels.

    ","parent_name":"CompanionAd"},"Protocols/CompanionAd.html#/s:13THEOplayerSDK11CompanionAdP11resourceURISSSgvp":{"name":"resourceURI","abstract":"

    The URI of the ad content.

    ","parent_name":"CompanionAd"},"Protocols/CompanionAd.html#/s:13THEOplayerSDK11CompanionAdP5widthSivp":{"name":"width","abstract":"

    The width of the companion ad, in pixels.

    ","parent_name":"CompanionAd"},"Protocols/CompanionAd.html#/s:13THEOplayerSDK11CompanionAdP4typeSSvp":{"name":"type","abstract":"

    The type of the companion ad.

    ","parent_name":"CompanionAd"},"Protocols/AdBreak.html#/s:13THEOplayerSDK7AdBreakP3adsSayAA0C0_pGvp":{"name":"ads","abstract":"

    An array of all the ads that are available in the current AdBreak.

    ","parent_name":"AdBreak"},"Protocols/AdBreak.html#/s:13THEOplayerSDK7AdBreakP11maxDurationSivp":{"name":"maxDuration","abstract":"

    Indicates the duration of the ad break, in seconds.

    ","parent_name":"AdBreak"},"Protocols/AdBreak.html#/s:13THEOplayerSDK7AdBreakP20maxRemainingDurationSdvp":{"name":"maxRemainingDuration","abstract":"

    Indicates the remaining duration of the ad break, in seconds.

    ","parent_name":"AdBreak"},"Protocols/AdBreak.html#/s:13THEOplayerSDK7AdBreakP10timeOffsetSivp":{"name":"timeOffset","abstract":"

    The time offset at which point the content will be paused to play the ad break, in seconds.

    ","parent_name":"AdBreak"},"Protocols/AdBreak.html#/s:13THEOplayerSDK7AdBreakP11integrationAA0C15IntegrationKindOvp":{"name":"integration","abstract":"

    The kind of the ad integration.

    ","parent_name":"AdBreak"},"Protocols/AdBreak.html#/s:13THEOplayerSDK7AdBreakP17customIntegrationSSSgvp":{"name":"customIntegration","abstract":"

    The type of custom ad integration.

    ","parent_name":"AdBreak"},"Protocols/NonLinearAd.html#/s:13THEOplayerSDK11NonLinearAdP12clickThroughSSSgvp":{"name":"clickThrough","abstract":"

    The url that redirects to the website of the advertiser.

    ","parent_name":"NonLinearAd"},"Protocols/MediaFile.html#/s:13THEOplayerSDK9MediaFileP8deliverySSvp":{"name":"delivery","abstract":"

    The delivery type.

    ","parent_name":"MediaFile"},"Protocols/MediaFile.html#/s:13THEOplayerSDK9MediaFileP11resourceURISSvp":{"name":"resourceURI","abstract":"

    The URI of the VAST content.

    ","parent_name":"MediaFile"},"Protocols/MediaFile.html#/s:13THEOplayerSDK9MediaFileP4typeSSvp":{"name":"type","abstract":"

    The MIME type for the file container.

    ","parent_name":"MediaFile"},"Protocols/MediaFile.html#/s:13THEOplayerSDK9MediaFileP6heightSivp":{"name":"height","abstract":"

    The native height of the video file, in pixels.

    ","parent_name":"MediaFile"},"Protocols/MediaFile.html#/s:13THEOplayerSDK9MediaFileP5widthSivp":{"name":"width","abstract":"

    The native width of the video file, in pixels.

    ","parent_name":"MediaFile"},"Protocols/LinearAd.html#/s:13THEOplayerSDK8LinearAdP8durationSiSgvp":{"name":"duration","abstract":"

    The duration of the LinearAd, as provided by the VAST file, in seconds.

    ","parent_name":"LinearAd"},"Protocols/LinearAd.html#/s:13THEOplayerSDK8LinearAdP10mediaFilesSayAA9MediaFile_pGvp":{"name":"mediaFiles","abstract":"

    An array of mediafiles, which provides some meta data retrieved from the VAST file.

    ","parent_name":"LinearAd"},"Protocols/Ad.html#/s:13THEOplayerSDK2AdP7adBreakAA0cE0_pvp":{"name":"adBreak","abstract":"

    A reference to the AdBreak of which the ad is a part of.

    ","parent_name":"Ad"},"Protocols/Ad.html#/s:13THEOplayerSDK2AdP10companionsSayAA09CompanionC0_pGvp":{"name":"companions","abstract":"

    An array of CompanionAds associated to the ad, if available within the same Creatives element.

    ","parent_name":"Ad"},"Protocols/Ad.html#/s:13THEOplayerSDK2AdP4typeSSvp":{"name":"type","abstract":"

    Either ‘linear’ or ‘nonlinear’, depending on the concrete implementer.

    ","parent_name":"Ad"},"Protocols/Ad.html#/s:13THEOplayerSDK2AdP2idSSSgvp":{"name":"id","abstract":"

    The identifier of the creative, provided in the VAST-file.

    ","parent_name":"Ad"},"Protocols/Ad.html#/s:13THEOplayerSDK2AdP10skipOffsetSiSgvp":{"name":"skipOffset","abstract":"

    When the Ad can be skipped, in seconds.

    ","parent_name":"Ad"},"Protocols/Ad.html#/s:13THEOplayerSDK2AdP11resourceURISSSgvp":{"name":"resourceURI","abstract":"

    The URI of the the ad content.

    ","parent_name":"Ad"},"Protocols/Ad.html#/s:13THEOplayerSDK2AdP5widthSiSgvp":{"name":"width","abstract":"

    The width of the advertisement, in pixels.

    ","parent_name":"Ad"},"Protocols/Ad.html#/s:13THEOplayerSDK2AdP6heightSiSgvp":{"name":"height","abstract":"

    The height of the advertisement, in pixels.

    ","parent_name":"Ad"},"Protocols/Ad.html#/s:13THEOplayerSDK2AdP11integrationAA0C15IntegrationKindOvp":{"name":"integration","abstract":"

    The kind of the ad integration.

    ","parent_name":"Ad"},"Protocols/Ad.html#/s:13THEOplayerSDK2AdP8durationSiSgvp":{"name":"duration","abstract":"

    The duration of the ad, in seconds.

    ","parent_name":"Ad"},"Protocols/Ad.html#/s:13THEOplayerSDK2AdP12clickThroughSSSgvp":{"name":"clickThrough","abstract":"

    The url that redirects to the website of the advertiser.

    ","parent_name":"Ad"},"Protocols/Ad.html#/s:13THEOplayerSDK2AdP17customIntegrationSSSgvp":{"name":"customIntegration","abstract":"

    The type of custom ad integration.

    ","parent_name":"Ad"},"Protocols/Ad.html#/s:13THEOplayerSDK2AdP7isSlateSbvp":{"name":"isSlate","abstract":"

    Whether the ad is slate or not

    ","parent_name":"Ad"},"Protocols/Ads.html#/s:13THEOplayerSDK3AdsP7playingSbvp":{"name":"playing","abstract":"

    Returns whether a linear ad is currently playing.

    ","parent_name":"Ads"},"Protocols/Ads.html#/s:13THEOplayerSDK3AdsP07currentC0SayAA2Ad_pGvp":{"name":"currentAds","abstract":"

    Returns an array of the currently active ads.

    ","parent_name":"Ads"},"Protocols/Ads.html#/s:13THEOplayerSDK3AdsP14currentAdBreakAA0eF0_pSgvp":{"name":"currentAdBreak","abstract":"

    Returns the active AdBreak that contains the currently playing ad(s).

    ","parent_name":"Ads"},"Protocols/Ads.html#/s:13THEOplayerSDK3AdsP17scheduledAdBreaksSayAA0E5Break_pGvp":{"name":"scheduledAdBreaks","abstract":"

    Returns an array of AdBreaks that still need to be played.

    ","parent_name":"Ads"},"Protocols/Ads.html#/s:13THEOplayerSDK3AdsP09scheduledC0SayAA2Ad_pGvp":{"name":"scheduledAds","abstract":"

    Returns an array of ads that still need to be played.

    ","parent_name":"Ads"},"Protocols/Ads.html#/s:13THEOplayerSDK3AdsP8schedule13adDescriptionyAA02AdF0_p_tF":{"name":"schedule(adDescription:)","abstract":"

    Schedules an ad.

    ","parent_name":"Ads"},"Protocols/Ads.html#/s:13THEOplayerSDK3AdsP4skipyyF":{"name":"skip()","abstract":"

    Skips the current linear ad.

    ","parent_name":"Ads"},"Protocols/Ads.html#/s:13THEOplayerSDK3AdsP16addEventListener4type8listenerAA0eF0_pAA0E4TypeCyqd__G_yqd__ctAA0E8ProtocolRd__lF":{"name":"addEventListener(type:listener:)","abstract":"

    Adds the given event listener of the given ad event type.

    ","parent_name":"Ads"},"Protocols/Ads.html#/s:13THEOplayerSDK3AdsP19removeEventListener4type8listeneryAA0E4TypeCyqd__G_AA0eF0_ptAA0E8ProtocolRd__lF":{"name":"removeEventListener(type:listener:)","abstract":"

    Removes the given event listener of the given ad event type.

    ","parent_name":"Ads"},"Protocols/Ads.html#/s:13THEOplayerSDK3AdsP4omidAA4Omid_pvp":{"name":"omid","abstract":"

    The Open Measurement API.

    ","parent_name":"Ads"},"Protocols/Ads.html#/s:13THEOplayerSDK3AdsP29registerServerSideIntegration13integrationId0H7FactoryySS_AA0ef2AdG7Handler_pAA0efkG10Controller_pXEtF":{"name":"registerServerSideIntegration(integrationId:integrationFactory:)","abstract":"

    Register a custom advertisement integration. This allows you to integrate with third-party advertisement providers, and have them report their ads and ad-related events through the THEOplayer Ads API.

    ","parent_name":"Ads"},"Protocols/Ads.html":{"name":"Ads","abstract":"

    The Ads object helps you configure and control ads within THEOplayer.

    "},"Protocols/Ad.html":{"name":"Ad","abstract":"

    An Ad is an abstract object that represents a single ad, which is a creative in the VAST specification.

    "},"Protocols/LinearAd.html":{"name":"LinearAd","abstract":"

    Represents a linear ad in the VAST specification. It extends the properties of the Ad object.

    "},"Protocols/MediaFile.html":{"name":"MediaFile","abstract":"

    Represents the metadata of a media file with ad content.

    "},"Protocols/NonLinearAd.html":{"name":"NonLinearAd","abstract":"

    Represents a non-linear ad in the VAST specification. It extends the properties of the Ad object.

    "},"Protocols/AdBreak.html":{"name":"AdBreak","abstract":"

    An AdBreak is an object that represents a collection of ads that are scheduled at a certain time.

    "},"Protocols/CompanionAd.html":{"name":"CompanionAd","abstract":"

    Represents a companion ad which is displayed besides the player.

    "},"Classes/AdType.html":{"name":"AdType","abstract":"

    The type of Ad specifying whether it will interrupt the content or not.

    "},"Enums/AdIntegration.html":{"name":"AdIntegration","abstract":"

    The integration of the ad break.

    "},"Enums/AdIntegrationKind.html":{"name":"AdIntegrationKind","abstract":"

    The integration kind of the Ad.

    "},"Protocols/Omid.html":{"name":"Omid","abstract":"

    The Open Measurement Interface Definition API which can be used to configure the ad viewability measurements conforming to the OMID standards.

    "},"Classes/OmidFriendlyObstruction.html":{"name":"OmidFriendlyObstruction","abstract":"

    Represents a friendly obstruction instance for OMID.

    "},"Enums/OmidFriendlyObstructionPurpose.html":{"name":"OmidFriendlyObstructionPurpose","abstract":"

    The list of purposes for which an obstruction would be registered as friendly.

    "},"Protocols/GoogleImaAd.html#/s:13THEOplayerSDK11GoogleImaAdP8adSystemSSSgvp":{"name":"adSystem","abstract":"

    The source ad server information included in the ad response.

    ","parent_name":"GoogleImaAd"},"Protocols/GoogleImaAd.html#/s:13THEOplayerSDK11GoogleImaAdP10creativeIdSSSgvp":{"name":"creativeId","abstract":"

    The identifier of the selected creative for the ad.

    ","parent_name":"GoogleImaAd"},"Protocols/GoogleImaAd.html#/s:13THEOplayerSDK11GoogleImaAdP07wrapperE3IdsSaySSGvp":{"name":"wrapperAdIds","abstract":"

    The list of wrapper ad identifiers as specified in the VAST response.

    ","parent_name":"GoogleImaAd"},"Protocols/GoogleImaAd.html#/s:13THEOplayerSDK11GoogleImaAdP07wrapperE7SystemsSaySSGvp":{"name":"wrapperAdSystems","abstract":"

    The list of wrapper ad systems as specified in the VAST response.

    ","parent_name":"GoogleImaAd"},"Protocols/GoogleImaAd.html#/s:13THEOplayerSDK11GoogleImaAdP18wrapperCreativeIdsSaySSGvp":{"name":"wrapperCreativeIds","abstract":"

    The list of wrapper creative identifiers.

    ","parent_name":"GoogleImaAd"},"Protocols/GoogleImaAd.html#/s:13THEOplayerSDK11GoogleImaAdP16vastMediaBitrateSivp":{"name":"vastMediaBitrate","abstract":"

    The bitrate of the currently playing creative as listed in the VAST response.

    ","parent_name":"GoogleImaAd"},"Protocols/GoogleImaAd.html#/s:13THEOplayerSDK11GoogleImaAdP09universalE3IdsSayAA09UniversalE2Id_pGvp":{"name":"universalAdIds","abstract":"

    The list of universal ad ID information of the selected creative for the ad.

    ","parent_name":"GoogleImaAd"},"Protocols/GoogleImaAd.html#/s:13THEOplayerSDK11GoogleImaAdP21traffickingParametersSSvp":{"name":"traffickingParameters","abstract":"

    The String representing custom trafficking parameters from the VAST response.

    ","parent_name":"GoogleImaAd"},"Classes/GoogleImaAdDescription.html#/s:13THEOplayerSDK22GoogleImaAdDescriptionC11integrationAA0E11IntegrationOSgvp":{"name":"integration","abstract":"

    The ad Integration.

    ","parent_name":"GoogleImaAdDescription"},"Classes/GoogleImaAdDescription.html#/s:13THEOplayerSDK22GoogleImaAdDescriptionC3src10Foundation3URLVvp":{"name":"src","abstract":"

    Represents the source of the ad. The player will download the content available at the URL and will schedule the specified advertisement(s).

    ","parent_name":"GoogleImaAdDescription"},"Classes/GoogleImaAdDescription.html#/s:13THEOplayerSDK22GoogleImaAdDescriptionC10timeOffsetSSSgvp":{"name":"timeOffset","abstract":"

    Specifies the time when an ad should be played in the content video.

    ","parent_name":"GoogleImaAdDescription"},"Classes/GoogleImaAdDescription.html#/s:13THEOplayerSDK22GoogleImaAdDescriptionC3src10timeOffsetACSS_SSSgtcfc":{"name":"init(src:timeOffset:)","abstract":"

    Constructs a GoogleImaAdDescription.

    ","parent_name":"GoogleImaAdDescription"},"Protocols/AdDescription.html#/s:13THEOplayerSDK13AdDescriptionP11integrationAA0C11IntegrationOSgvp":{"name":"integration","abstract":"

    The integration type of the ad break.

    ","parent_name":"AdDescription"},"Protocols/AdDescription.html":{"name":"AdDescription","abstract":"

    Provides additional information for an advertisement.

    "},"Classes/GoogleImaAdDescription.html":{"name":"GoogleImaAdDescription","abstract":"

    An AdDescription object that will be added to the player when using the Google Ima ad integration.

    "},"Protocols/GoogleImaAd.html":{"name":"GoogleImaAd","abstract":"

    A GoogleImaAd is a concrete implementation of an Ad which represents a Google IMA ad.

    "},"Protocols/CustomServerSideAdInsertionConfiguration.html#/s:13THEOplayerSDK40CustomServerSideAdInsertionConfigurationP17customIntegrationSSvp":{"name":"customIntegration","abstract":"

    The ID of the custom SSAI integration.

    ","parent_name":"CustomServerSideAdInsertionConfiguration"},"Protocols/CustomServerSideAdInsertionConfiguration.html#/s:13THEOplayerSDK34ServerSideAdInsertionConfigurationP11integrationAA17SSAIIntegrationIdOvp":{"name":"integration","parent_name":"CustomServerSideAdInsertionConfiguration"},"Protocols/ServerSideAdIntegrationHandler.html#/s:13THEOplayerSDK30ServerSideAdIntegrationHandlerP9setSource6sourceSbAA0I11DescriptionC_tF":{"name":"setSource(source:)","abstract":"

    Handler which will be called when a new source is loaded into the player.

    ","parent_name":"ServerSideAdIntegrationHandler"},"Protocols/ServerSideAdIntegrationHandler.html#/s:13THEOplayerSDK30ServerSideAdIntegrationHandlerP04skipE02adSbAA0E0_p_tF":{"name":"skipAd(ad:)","abstract":"

    Handler which will be called when an ad is requested to be skipped.

    ","parent_name":"ServerSideAdIntegrationHandler"},"Protocols/ServerSideAdIntegrationHandler.html#/s:13THEOplayerSDK30ServerSideAdIntegrationHandlerP11resetSourceSbyF":{"name":"resetSource()","abstract":"

    Handler which will be called before a new source is loaded into the player, or before the player is destroyed.

    ","parent_name":"ServerSideAdIntegrationHandler"},"Protocols/ServerSideAdIntegrationHandler.html#/s:13THEOplayerSDK30ServerSideAdIntegrationHandlerP7destroyyyF":{"name":"destroy()","abstract":"

    Handler which will be called when the player is destroyed.

    ","parent_name":"ServerSideAdIntegrationHandler"},"Protocols/ServerSideAdIntegrationController.html#/s:13THEOplayerSDK33ServerSideAdIntegrationControllerP11integrationSSvp":{"name":"integration","abstract":"

    The identifier for this integration, as it was passed to Ads.registerServerSideIntegration.

    ","parent_name":"ServerSideAdIntegrationController"},"Protocols/ServerSideAdIntegrationController.html#/s:13THEOplayerSDK33ServerSideAdIntegrationControllerP3adsSayAA0E0_pGvp":{"name":"ads","abstract":"

    The scheduled ads managed by this integration.

    ","parent_name":"ServerSideAdIntegrationController"},"Protocols/ServerSideAdIntegrationController.html#/s:13THEOplayerSDK33ServerSideAdIntegrationControllerP8adBreaksSayAA0E5Break_pGvp":{"name":"adBreaks","abstract":"

    The scheduled ad breaks managed by this integration.

    ","parent_name":"ServerSideAdIntegrationController"},"Protocols/ServerSideAdIntegrationController.html#/s:13THEOplayerSDK33ServerSideAdIntegrationControllerP06createE06params7adBreakAA0E0_pAA0E4InitC_AA0eK0_pSgtF":{"name":"createAd(params:adBreak:)","abstract":"

    Create a new ad.

    ","parent_name":"ServerSideAdIntegrationController"},"Protocols/ServerSideAdIntegrationController.html#/s:13THEOplayerSDK33ServerSideAdIntegrationControllerP06updateE02ad6paramsyAA0E0_p_AA0E4InitCtF":{"name":"updateAd(ad:params:)","abstract":"

    Update the given ad.

    ","parent_name":"ServerSideAdIntegrationController"},"Protocols/ServerSideAdIntegrationController.html#/s:13THEOplayerSDK33ServerSideAdIntegrationControllerP06updateE8Progress2ad8progressyAA0E0_p_SdtF":{"name":"updateAdProgress(ad:progress:)","abstract":"

    Update the playback progression of the given ad.

    ","parent_name":"ServerSideAdIntegrationController"},"Protocols/ServerSideAdIntegrationController.html#/s:13THEOplayerSDK33ServerSideAdIntegrationControllerP05beginE02adyAA0E0_p_tF":{"name":"beginAd(ad:)","abstract":"

    Begin the given ad.

    ","parent_name":"ServerSideAdIntegrationController"},"Protocols/ServerSideAdIntegrationController.html#/s:13THEOplayerSDK33ServerSideAdIntegrationControllerP03endE02adyAA0E0_p_tF":{"name":"endAd(ad:)","abstract":"

    End the given ad.

    ","parent_name":"ServerSideAdIntegrationController"},"Protocols/ServerSideAdIntegrationController.html#/s:13THEOplayerSDK33ServerSideAdIntegrationControllerP04skipE02adyAA0E0_p_tF":{"name":"skipAd(ad:)","abstract":"

    Skip the given ad.

    ","parent_name":"ServerSideAdIntegrationController"},"Protocols/ServerSideAdIntegrationController.html#/s:13THEOplayerSDK33ServerSideAdIntegrationControllerP06removeE02adyAA0E0_p_tF":{"name":"removeAd(ad:)","abstract":"

    Remove the given ad.

    ","parent_name":"ServerSideAdIntegrationController"},"Protocols/ServerSideAdIntegrationController.html#/s:13THEOplayerSDK33ServerSideAdIntegrationControllerP06createE5Break6paramsAA0eI0_pAA0eI4InitC_tF":{"name":"createAdBreak(params:)","abstract":"

    Create a new ad break.

    ","parent_name":"ServerSideAdIntegrationController"},"Protocols/ServerSideAdIntegrationController.html#/s:13THEOplayerSDK33ServerSideAdIntegrationControllerP06updateE5Break02adI06paramsyAA0eI0_p_AA0eI4InitCtF":{"name":"updateAdBreak(adBreak:params:)","abstract":"

    Update the given ad break.

    ","parent_name":"ServerSideAdIntegrationController"},"Protocols/ServerSideAdIntegrationController.html#/s:13THEOplayerSDK33ServerSideAdIntegrationControllerP06removeE5Break02adI0yAA0eI0_p_tF":{"name":"removeAdBreak(adBreak:)","abstract":"

    Remove the given ad break and all of its ads.

    ","parent_name":"ServerSideAdIntegrationController"},"Protocols/ServerSideAdIntegrationController.html#/s:13THEOplayerSDK33ServerSideAdIntegrationControllerP12removeAllAdsyyF":{"name":"removeAllAds()","abstract":"

    Remove all ads and ad breaks.

    ","parent_name":"ServerSideAdIntegrationController"},"Protocols/ServerSideAdIntegrationController.html#/s:13THEOplayerSDK33ServerSideAdIntegrationControllerP5errorADys5Error_p_tF":{"name":"error(error:)","abstract":"

    Fire an AdsEventTypes.AD_ERROR event on the player’s Ads interface.

    ","parent_name":"ServerSideAdIntegrationController"},"Protocols/ServerSideAdIntegrationController.html#/s:13THEOplayerSDK33ServerSideAdIntegrationControllerP10fatalError5error4codeys0I0_p_AA13THEOErrorCodeOSgtF":{"name":"fatalError(error:code:)","abstract":"

    Fire a fatal PlayerEventMap.ERROR event on the player.

    ","parent_name":"ServerSideAdIntegrationController"},"Enums/StreamType.html#/s:13THEOplayerSDK10StreamTypeO3vodyA2CmF":{"name":"vod","abstract":"

    A video on demand.

    ","parent_name":"StreamType"},"Enums/StreamType.html#/s:13THEOplayerSDK10StreamTypeO4liveyA2CmF":{"name":"live","abstract":"

    A Live stream.

    ","parent_name":"StreamType"},"Enums/StreamType.html#/s:13THEOplayerSDK10StreamTypeO9_rawValueSSvp":{"name":"_rawValue","abstract":"

    The raw value of type String.

    ","parent_name":"StreamType"},"Classes/GoogleDAIVodConfiguration.html#/s:13THEOplayerSDK25GoogleDAIVodConfigurationC15contentSourceIDSSvp":{"name":"contentSourceID","abstract":"

    The identifier for the publisher content for on-demand streams.

    ","parent_name":"GoogleDAIVodConfiguration"},"Classes/GoogleDAIVodConfiguration.html#/s:13THEOplayerSDK25GoogleDAIVodConfigurationC7videoIDSSvp":{"name":"videoID","abstract":"

    The identifier for the video content source for on-demand streams.

    ","parent_name":"GoogleDAIVodConfiguration"},"Classes/GoogleDAIVodConfiguration.html#/s:13THEOplayerSDK25GoogleDAIVodConfigurationC7videoID013contentSourceG06apiKey9authToken021streamActivityMonitorG015adTagParametersACSS_S3SSgAJSDyS2SGSgtcfc":{"name":"init(videoID:contentSourceID:apiKey:authToken:streamActivityMonitorID:adTagParameters:)","abstract":"

    The builder for the Google DAI configuration.

    ","parent_name":"GoogleDAIVodConfiguration"},"Classes/GoogleDAITypedSource.html#/s:13THEOplayerSDK20GoogleDAITypedSourceC4ssaiAcA0C16DAIConfigurationC_tcfc":{"name":"init(ssai:)","abstract":"

    Constructs a GoogleDAITypedSource.

    ","parent_name":"GoogleDAITypedSource"},"Classes/GoogleDAITypedSource.html#/s:13THEOplayerSDK20GoogleDAITypedSourceC4ssai3drmAcA0C16DAIConfigurationC_AA16DRMConfiguration_pSgtcfc":{"name":"init(ssai:drm:)","abstract":"

    Constructs a GoogleDAITypedSource with a DRM configuration.

    ","parent_name":"GoogleDAITypedSource"},"Classes/GoogleDAILiveConfiguration.html#/s:13THEOplayerSDK26GoogleDAILiveConfigurationC8assetKeySSvp":{"name":"assetKey","abstract":"

    The identifier for the video content source for live streams.

    ","parent_name":"GoogleDAILiveConfiguration"},"Classes/GoogleDAILiveConfiguration.html#/s:13THEOplayerSDK26GoogleDAILiveConfigurationC8assetKey03apiG09authToken23streamActivityMonitorID15adTagParametersACSS_S2SSgAISDyS2SGSgtcfc":{"name":"init(assetKey:apiKey:authToken:streamActivityMonitorID:adTagParameters:)","abstract":"

    The builder for the Google DAI live configuration.

    ","parent_name":"GoogleDAILiveConfiguration"},"Classes/GoogleDAIConfiguration.html#/s:13THEOplayerSDK22GoogleDAIConfigurationC11integrationAA17SSAIIntegrationIdOvp":{"name":"integration","abstract":"

    The identifier for the SSAI pre-integration, defaults to GoogleDAISSAIIntegrationID.

    ","parent_name":"GoogleDAIConfiguration"},"Classes/GoogleDAIConfiguration.html#/s:13THEOplayerSDK22GoogleDAIConfigurationC16availabilityTypeAA06StreamF0Ovp":{"name":"availabilityType","abstract":"

    The type of the requested stream.

    ","parent_name":"GoogleDAIConfiguration"},"Classes/GoogleDAIConfiguration.html#/s:13THEOplayerSDK22GoogleDAIConfigurationC6apiKeySSvp":{"name":"apiKey","abstract":"

    The API key for the stream request.

    ","parent_name":"GoogleDAIConfiguration"},"Classes/GoogleDAIConfiguration.html#/s:13THEOplayerSDK22GoogleDAIConfigurationC9authTokenSSSgvp":{"name":"authToken","abstract":"

    The authorization token for the stream request.

    ","parent_name":"GoogleDAIConfiguration"},"Classes/GoogleDAIConfiguration.html#/s:13THEOplayerSDK22GoogleDAIConfigurationC23streamActivityMonitorIDSSSgvp":{"name":"streamActivityMonitorID","abstract":"

    The identifier for a stream activity monitor session.

    ","parent_name":"GoogleDAIConfiguration"},"Classes/GoogleDAIConfiguration.html#/s:13THEOplayerSDK22GoogleDAIConfigurationC15adTagParametersSDyS2SGSgvp":{"name":"adTagParameters","abstract":"

    The ad tag parameters added to stream request.

    ","parent_name":"GoogleDAIConfiguration"},"Enums/SSAIIntegrationId.html#/s:13THEOplayerSDK17SSAIIntegrationIdO26GoogleDAISSAIIntegrationIDyA2CmF":{"name":"GoogleDAISSAIIntegrationID","abstract":"

    The configuration with this identifier is a GoogleDaiConfiguration.

    ","parent_name":"SSAIIntegrationId"},"Enums/SSAIIntegrationId.html#/s:13THEOplayerSDK17SSAIIntegrationIdO06CustomC2IDyA2CmF":{"name":"CustomSSAIIntegrationID","abstract":"

    The configuration with this identifier is a custom ServerSideAdInsertionConfiguration.

    ","parent_name":"SSAIIntegrationId"},"Enums/SSAIIntegrationId.html#/s:13THEOplayerSDK17SSAIIntegrationIdO9_rawValueSSvp":{"name":"_rawValue","abstract":"

    The raw value of type String.

    ","parent_name":"SSAIIntegrationId"},"Protocols/ServerSideAdInsertionConfiguration.html#/s:13THEOplayerSDK34ServerSideAdInsertionConfigurationP11integrationAA17SSAIIntegrationIdOvp":{"name":"integration","abstract":"

    Specifies an identifier for a supported SSAI integration.

    ","parent_name":"ServerSideAdInsertionConfiguration"},"Protocols/ServerSideAdInsertionConfiguration.html":{"name":"ServerSideAdInsertionConfiguration","abstract":"

    The ServerSideAdInsertionConfiguration protocol which specifies information to play a stream with server-side-inserted ads.

    "},"Enums/SSAIIntegrationId.html":{"name":"SSAIIntegrationId","abstract":"

    The SSAI integration identifier.

    "},"Classes/GoogleDAIConfiguration.html":{"name":"GoogleDAIConfiguration","abstract":"

    The Google DAI configuration.

    "},"Classes/GoogleDAILiveConfiguration.html":{"name":"GoogleDAILiveConfiguration","abstract":"

    Represents a configuration for server-side ad insertion with the Google DAI pre-integration for live streams.

    "},"Classes/GoogleDAITypedSource.html":{"name":"GoogleDAITypedSource","abstract":"

    A Google DAI typed source.

    "},"Classes/GoogleDAIVodConfiguration.html":{"name":"GoogleDAIVodConfiguration","abstract":"

    Represents a configuration for server-side ad insertion with the Google DAI pre-integration for vod streams.

    "},"Enums/StreamType.html":{"name":"StreamType","abstract":"

    The enum for Stream type, can either be live or vod.

    "},"Protocols/ServerSideAdIntegrationController.html":{"name":"ServerSideAdIntegrationController","abstract":"

    A controller to be used by your ServerSideAdIntegrationHandler to update the state of your custom server-side ad integration.

    "},"Protocols/ServerSideAdIntegrationHandler.html":{"name":"ServerSideAdIntegrationHandler","abstract":"

    A handler for a server-side ad integration.

    "},"Protocols/CustomServerSideAdInsertionConfiguration.html":{"name":"CustomServerSideAdInsertionConfiguration","abstract":"

    The configuration for a custom server-side ad insertion (SSAI) integration.

    "},"Protocols/ContentProtectionError.html#/s:13THEOplayerSDK22ContentProtectionErrorP3urlSSSgvp":{"name":"url","abstract":"

    The URL that was used in the request.

    ","parent_name":"ContentProtectionError"},"Protocols/ContentProtectionError.html#/s:13THEOplayerSDK22ContentProtectionErrorP6statusSiSgvp":{"name":"status","abstract":"

    The status code from the HTTP response.

    ","parent_name":"ContentProtectionError"},"Protocols/ContentProtectionError.html#/s:13THEOplayerSDK22ContentProtectionErrorP10statusTextSSSgvp":{"name":"statusText","abstract":"

    The status text from the HTTP response.

    ","parent_name":"ContentProtectionError"},"Protocols/ContentProtectionError.html#/s:13THEOplayerSDK22ContentProtectionErrorP8responseSSSgvp":{"name":"response","abstract":"

    The body contained in the HTTP response.

    ","parent_name":"ContentProtectionError"},"Protocols/ContentProtectionError.html#/s:13THEOplayerSDK22ContentProtectionErrorP10systemCodeSiSgvp":{"name":"systemCode","abstract":"

    The internal error code from the CDM.

    ","parent_name":"ContentProtectionError"},"Enums/LicenseType.html#/s:13THEOplayerSDK11LicenseTypeO9_rawValueSSvp":{"name":"_rawValue","abstract":"

    The raw value of type String.

    ","parent_name":"LicenseType"},"Enums/DRMIntegration.html#/s:13THEOplayerSDK14DRMIntegrationO9_rawValueSSvp":{"name":"_rawValue","abstract":"

    The raw value of type String.

    ","parent_name":"DRMIntegration"},"Classes/KeySystemConfiguration.html#/s:13THEOplayerSDK22KeySystemConfigurationC21licenseAcquisitionURL10Foundation0H0VSgvp":{"name":"licenseAcquisitionURL","abstract":"

    Specifies the URL of the licensing server.

    ","parent_name":"KeySystemConfiguration"},"Classes/KeySystemConfiguration.html#/s:13THEOplayerSDK22KeySystemConfigurationC14certificateURL10Foundation0G0VSgvp":{"name":"certificateURL","abstract":"

    Specifies the URL of the FairPlay certificate server.

    ","parent_name":"KeySystemConfiguration"},"Classes/KeySystemConfiguration.html#/s:13THEOplayerSDK22KeySystemConfigurationC11licenseTypeAA07LicenseG0OSgvp":{"name":"licenseType","abstract":"

    Specifies the license type.

    ","parent_name":"KeySystemConfiguration"},"Classes/KeySystemConfiguration.html#/s:13THEOplayerSDK22KeySystemConfigurationC7headersSDyS2SGSgvp":{"name":"headers","abstract":"

    Optionally specifies request headers that should be sent with any license requests to the DRM server. This is a plain object where the keys of the object are header names and corresponding values are header values.

    ","parent_name":"KeySystemConfiguration"},"Classes/KeySystemConfiguration.html#/s:13THEOplayerSDK22KeySystemConfigurationC15queryParametersSDyS2SGSgvp":{"name":"queryParameters","abstract":"

    Record of query parameters for the licence acquisition request. Each entry contains a query parameter name with associated value.

    ","parent_name":"KeySystemConfiguration"},"Classes/KeySystemConfiguration.html#/s:13THEOplayerSDK22KeySystemConfigurationC21licenseAcquisitionURL011certificateH00F4Type7headers15queryParametersACSSSg_AiA07LicenseJ0OSgSDyS2SGSgANtcfc":{"name":"init(licenseAcquisitionURL:certificateURL:licenseType:headers:queryParameters:)","abstract":"

    Constructs a KeySystemConfiguration.

    ","parent_name":"KeySystemConfiguration"},"Classes/XstreamDRMConfiguration.html#/s:13THEOplayerSDK23XstreamDRMConfigurationC20ticketAcquisitionURLSSvp":{"name":"ticketAcquisitionURL","abstract":"

    The required ticket acquisition URL.

    ","parent_name":"XstreamDRMConfiguration"},"Classes/XstreamDRMConfiguration.html#/s:13THEOplayerSDK23XstreamDRMConfigurationC9sessionIdSSSgvp":{"name":"sessionId","abstract":"

    The required session id for the ticket server.

    ","parent_name":"XstreamDRMConfiguration"},"Classes/XstreamDRMConfiguration.html#/s:13THEOplayerSDK23XstreamDRMConfigurationC8streamIdSSvp":{"name":"streamId","abstract":"

    The required stream id for the ticket server.

    ","parent_name":"XstreamDRMConfiguration"},"Classes/XstreamDRMConfiguration.html#/s:13THEOplayerSDK23XstreamDRMConfigurationC20ticketAcquisitionURL8streamId07sessionI023keySystemConfigurationsACSS_S2SSgAA03KeyL23ConfigurationCollectionCtcfc":{"name":"init(ticketAcquisitionURL:streamId:sessionId:keySystemConfigurations:)","abstract":"

    Constructs a Xstream DRMConfiguration.

    ","parent_name":"XstreamDRMConfiguration"},"Classes/VimondDRMConfiguration.html#/s:13THEOplayerSDK22VimondDRMConfigurationC23keySystemConfigurationsAcA03KeyF23ConfigurationCollectionC_tcfc":{"name":"init(keySystemConfigurations:)","abstract":"

    Constructs a Vimond DRMConfiguration.

    ","parent_name":"VimondDRMConfiguration"},"Classes/VerimatrixDRMConfiguration.html#/s:13THEOplayerSDK26VerimatrixDRMConfigurationC23keySystemConfigurationsAcA03KeyF23ConfigurationCollectionC_tcfc":{"name":"init(keySystemConfigurations:)","abstract":"

    Constructs a VERIMATRIX DRMConfiguration.

    ","parent_name":"VerimatrixDRMConfiguration"},"Classes/UplynkDRMConfiguration.html#/s:13THEOplayerSDK22UplynkDRMConfigurationC23keySystemConfigurationsAcA03KeyF23ConfigurationCollectionC_tcfc":{"name":"init(keySystemConfigurations:)","abstract":"

    Constructs a EZDRM DRMConfiguration.

    ","parent_name":"UplynkDRMConfiguration"},"Classes/KeyOSDRMConfiguration.html#/s:13THEOplayerSDK21KeyOSDRMConfigurationC10customdataSSSgvp":{"name":"customdata","abstract":"

    The KeyOS custom data.

    ","parent_name":"KeyOSDRMConfiguration"},"Classes/KeyOSDRMConfiguration.html#/s:13THEOplayerSDK21KeyOSDRMConfigurationC10customdata23keySystemConfigurationsACSSSg_AA0cG23ConfigurationCollectionCtcfc":{"name":"init(customdata:keySystemConfigurations:)","abstract":"

    Constructs a KeyOS DRMConfiguration.

    ","parent_name":"KeyOSDRMConfiguration"},"Classes/ComcastDRMConfiguration.html#/s:13THEOplayerSDK23ComcastDRMConfigurationC10releasePidSSvp":{"name":"releasePid","abstract":"

    The PID of the media for which the license is being requested.

    ","parent_name":"ComcastDRMConfiguration"},"Classes/ComcastDRMConfiguration.html#/s:13THEOplayerSDK23ComcastDRMConfigurationC5tokenSSvp":{"name":"token","abstract":"

    The Comcast Authorization Token.

    ","parent_name":"ComcastDRMConfiguration"},"Classes/ComcastDRMConfiguration.html#/s:13THEOplayerSDK23ComcastDRMConfigurationC9accountIdSSvp":{"name":"accountId","abstract":"

    The identifier of the Comcast account.

    ","parent_name":"ComcastDRMConfiguration"},"Classes/ComcastDRMConfiguration.html#/s:13THEOplayerSDK23ComcastDRMConfigurationC10releasePid5token9accountId23keySystemConfigurationsACSS_S2SAA03KeyK23ConfigurationCollectionCtcfc":{"name":"init(releasePid:token:accountId:keySystemConfigurations:)","abstract":"

    Constructs an Comcast DRM Configuration.

    ","parent_name":"ComcastDRMConfiguration"},"Classes/AxinomDRMConfiguration.html#/s:13THEOplayerSDK22AxinomDRMConfigurationC5tokenSSvp":{"name":"token","abstract":"

    The Axinom token.

    ","parent_name":"AxinomDRMConfiguration"},"Classes/AxinomDRMConfiguration.html#/s:13THEOplayerSDK22AxinomDRMConfigurationC5token23keySystemConfigurationsACSS_AA03KeyG23ConfigurationCollectionCtcfc":{"name":"init(token:keySystemConfigurations:)","abstract":"

    Constructs a Axinom DRMConfiguration.

    ","parent_name":"AxinomDRMConfiguration"},"Classes/WidevineDRMConfiguration.html#/s:13THEOplayerSDK24WidevineDRMConfigurationC8widevineAA22KeySystemConfigurationCvp":{"name":"widevine","abstract":"

    The Widevine KeySystemConfiguration.

    ","parent_name":"WidevineDRMConfiguration"},"Classes/WidevineDRMConfiguration.html#/s:13THEOplayerSDK16DRMConfigurationP11integrationAA14DRMIntegrationOSgvp":{"name":"integration","parent_name":"WidevineDRMConfiguration"},"Classes/WidevineDRMConfiguration.html#/s:13THEOplayerSDK16DRMConfigurationP7headersSaySDyS2SGGSgvp":{"name":"headers","parent_name":"WidevineDRMConfiguration"},"Classes/WidevineDRMConfiguration.html#/s:13THEOplayerSDK16DRMConfigurationP21integrationParametersSDySSypGSgvp":{"name":"integrationParameters","parent_name":"WidevineDRMConfiguration"},"Classes/WidevineDRMConfiguration.html#/s:13THEOplayerSDK16DRMConfigurationP19customIntegrationIdSSSgvp":{"name":"customIntegrationId","parent_name":"WidevineDRMConfiguration"},"Classes/WidevineDRMConfiguration.html#/s:13THEOplayerSDK24WidevineDRMConfigurationC15queryParametersSDyS2SGSgvp":{"name":"queryParameters","abstract":"

    Record of query parameters for the licence acquisition request. Each entry contains a query parameter name with associated value.

    ","parent_name":"WidevineDRMConfiguration"},"Classes/WidevineDRMConfiguration.html#/s:13THEOplayerSDK24WidevineDRMConfigurationC19customIntegrationId21licenseAcquisitionURL7headers21integrationParameters05queryM0ACSSSg_AISaySDyS2SGGSgSDySSypGSgAJSgtcfc":{"name":"init(customIntegrationId:licenseAcquisitionURL:headers:integrationParameters:queryParameters:)","abstract":"

    Constructs a Widevine DRM configuration object.

    ","parent_name":"WidevineDRMConfiguration"},"Classes/VudrmDRMConfiguration.html#/s:13THEOplayerSDK21VudrmDRMConfigurationC5tokenSSvp":{"name":"token","abstract":"

    The VUDRM token.

    ","parent_name":"VudrmDRMConfiguration"},"Classes/VudrmDRMConfiguration.html#/s:13THEOplayerSDK21VudrmDRMConfigurationC5token23keySystemConfigurationsACSS_AA03KeyG23ConfigurationCollectionCtcfc":{"name":"init(token:keySystemConfigurations:)","abstract":"

    Constructs a VUDRM DRMConfiguration.

    ","parent_name":"VudrmDRMConfiguration"},"Classes/IrdetoDRMConfiguration.html#/s:13THEOplayerSDK22IrdetoDRMConfigurationC5crmId07accountF007contentF003keyF0011applicationF007sessionF06ticket0I20SystemConfigurationsACSS_S5SSgAlA03KeyM23ConfigurationCollectionCtcfc":{"name":"init(crmId:accountId:contentId:keyId:applicationId:sessionId:ticket:keySystemConfigurations:)","abstract":"

    Constructs an Irdeto DRMConfiguration.

    ","parent_name":"IrdetoDRMConfiguration"},"Classes/EzdrmDRMConfiguration.html#/s:13THEOplayerSDK21EzdrmDRMConfigurationC23keySystemConfigurationsAcA03KeyF23ConfigurationCollectionC_tcfc":{"name":"init(keySystemConfigurations:)","abstract":"

    Constructs a EZDRM DRMConfiguration.

    ","parent_name":"EzdrmDRMConfiguration"},"Classes/DRMTodayDRMConfiguration.html#/s:13THEOplayerSDK24DRMTodayDRMConfigurationC5tokenSSSgvp":{"name":"token","abstract":"

    The authentication token.

    ","parent_name":"DRMTodayDRMConfiguration"},"Classes/DRMTodayDRMConfiguration.html#/s:13THEOplayerSDK24DRMTodayDRMConfigurationC6userIdSSSgvp":{"name":"userId","abstract":"

    The user ID.

    ","parent_name":"DRMTodayDRMConfiguration"},"Classes/DRMTodayDRMConfiguration.html#/s:13THEOplayerSDK24DRMTodayDRMConfigurationC9sessionIdSSSgvp":{"name":"sessionId","abstract":"

    The session ID.

    ","parent_name":"DRMTodayDRMConfiguration"},"Classes/DRMTodayDRMConfiguration.html#/s:13THEOplayerSDK24DRMTodayDRMConfigurationC8merchantSSSgvp":{"name":"merchant","abstract":"

    The merchant ID.

    ","parent_name":"DRMTodayDRMConfiguration"},"Classes/DRMTodayDRMConfiguration.html#/s:13THEOplayerSDK24DRMTodayDRMConfigurationC5token6userId07sessionG08merchant23keySystemConfigurationsACSSSg_A3iA03KeyK23ConfigurationCollectionCtcfc":{"name":"init(token:userId:sessionId:merchant:keySystemConfigurations:)","abstract":"

    Constructs a DRMToday DRMConfiguration.

    ","parent_name":"DRMTodayDRMConfiguration"},"Classes/AzureDRMConfiguration.html#/s:13THEOplayerSDK21AzureDRMConfigurationC5tokenSSvp":{"name":"token","abstract":"

    The Azure token.

    ","parent_name":"AzureDRMConfiguration"},"Classes/AzureDRMConfiguration.html#/s:13THEOplayerSDK21AzureDRMConfigurationC5token23keySystemConfigurationsACSS_AA03KeyG23ConfigurationCollectionCtcfc":{"name":"init(token:keySystemConfigurations:)","abstract":"

    Constructs a Azure DRMConfiguration.

    ","parent_name":"AzureDRMConfiguration"},"Classes/FairPlayDRMConfiguration.html#/s:13THEOplayerSDK24FairPlayDRMConfigurationC8fairplayAA22KeySystemConfigurationCvp":{"name":"fairplay","abstract":"

    The FairPlay KeySystemConfiguration.

    ","parent_name":"FairPlayDRMConfiguration"},"Classes/FairPlayDRMConfiguration.html#/s:13THEOplayerSDK24FairPlayDRMConfigurationC11integrationAA14DRMIntegrationOSgvp":{"name":"integration","abstract":"

    The identifier of the DRM integration.

    ","parent_name":"FairPlayDRMConfiguration"},"Classes/FairPlayDRMConfiguration.html#/s:13THEOplayerSDK24FairPlayDRMConfigurationC7headersSaySDyS2SGGSgvp":{"name":"headers","abstract":"

    The FairPlay headers.

    ","parent_name":"FairPlayDRMConfiguration"},"Classes/FairPlayDRMConfiguration.html#/s:13THEOplayerSDK24FairPlayDRMConfigurationC21integrationParametersSDySSypGSgvp":{"name":"integrationParameters","abstract":"

    The FairPlay integration parameters.

    ","parent_name":"FairPlayDRMConfiguration"},"Classes/FairPlayDRMConfiguration.html#/s:13THEOplayerSDK24FairPlayDRMConfigurationC19customIntegrationIdSSSgvp":{"name":"customIntegrationId","abstract":"

    The custom integration identifier.

    ","parent_name":"FairPlayDRMConfiguration"},"Classes/FairPlayDRMConfiguration.html#/s:13THEOplayerSDK24FairPlayDRMConfigurationC15queryParametersSDyS2SGSgvp":{"name":"queryParameters","abstract":"

    Record of query parameters for the licence acquisition request. Each entry contains a query parameter name with associated value.

    ","parent_name":"FairPlayDRMConfiguration"},"Classes/FairPlayDRMConfiguration.html#/s:13THEOplayerSDK24FairPlayDRMConfigurationC19customIntegrationId21licenseAcquisitionURL011certificateK07headers0I4Type21integrationParameters05queryP0ACSSSg_A2KSaySDyS2SGGSgAA07LicenseN0OSgSDySSypGSgALSgtcfc":{"name":"init(customIntegrationId:licenseAcquisitionURL:certificateURL:headers:licenseType:integrationParameters:queryParameters:)","abstract":"

    Constructs a FairPlay DRMConfiguration.

    ","parent_name":"FairPlayDRMConfiguration"},"Protocols/DRMConfiguration.html#/s:13THEOplayerSDK16DRMConfigurationP7headersSaySDyS2SGGSgvp":{"name":"headers","abstract":"

    Optionally specifies request headers that should be sent with any license requests to the DRM server. This is a plain object where the keys of the object are header names and corresponding values are header values.

    ","parent_name":"DRMConfiguration"},"Protocols/DRMConfiguration.html#/s:13THEOplayerSDK16DRMConfigurationP21integrationParametersSDySSypGSgvp":{"name":"integrationParameters","abstract":"

    An object of key/value pairs which can be used to pass in specific parameters related to a source into a ContentProtectionIntegration.

    ","parent_name":"DRMConfiguration"},"Protocols/DRMConfiguration.html#/s:13THEOplayerSDK16DRMConfigurationP11integrationAA14DRMIntegrationOSgvp":{"name":"integration","abstract":"

    DRM integration.

    ","parent_name":"DRMConfiguration"},"Protocols/DRMConfiguration.html#/s:13THEOplayerSDK16DRMConfigurationP19customIntegrationIdSSSgvp":{"name":"customIntegrationId","abstract":"

    The custom integration identifier of the DRM integration.

    ","parent_name":"DRMConfiguration"},"Protocols/DRMConfiguration.html#/s:13THEOplayerSDK16DRMConfigurationP15queryParametersSDyS2SGSgvp":{"name":"queryParameters","abstract":"

    Record of query parameters for the licence acquisition request. Each entry contains a query parameter name with associated value.

    ","parent_name":"DRMConfiguration"},"Content%20Protection.html#/s:13THEOplayerSDK32FairPlayDRMConfigurationProtocolP":{"name":"FairPlayDRMConfigurationProtocol","abstract":"

    The FairPlay DRM configuration.

    "},"Content%20Protection.html#/s:13THEOplayerSDK32WidevineDRMConfigurationProtocolP":{"name":"WidevineDRMConfigurationProtocol","abstract":"

    The Widevine DRM configuration.

    "},"Protocols/DRMConfiguration.html":{"name":"DRMConfiguration","abstract":"

    The DRMConfiguration object provides a set of DRM parameters for DRM streaming.

    "},"Classes/FairPlayDRMConfiguration.html":{"name":"FairPlayDRMConfiguration","abstract":"

    The FairPlayDRMConfiguration object provides a set of DRM parameters for FairPlay DRM streaming.

    "},"Classes/AzureDRMConfiguration.html":{"name":"AzureDRMConfiguration","abstract":"

    The Azure DRMConfiguration object provides a set of DRM parameters for FairPlay DRM streaming with Azure integration.

    "},"Classes/DRMTodayDRMConfiguration.html":{"name":"DRMTodayDRMConfiguration","abstract":"

    The DRMtoday DRMConfiguration object provides a set of DRM parameters for FairPlay DRM streaming with DRMtoday integration.

    "},"Classes/EzdrmDRMConfiguration.html":{"name":"EzdrmDRMConfiguration","abstract":"

    The EZDRM DRMConfiguration object provides a set of DRM parameters for FairPlay DRM streaming with EZDRM integration.

    "},"Classes/IrdetoDRMConfiguration.html":{"name":"IrdetoDRMConfiguration","abstract":"

    The Irdeto DRMConfiguration object provides a set of DRM parameters for FairPlay DRM streaming with Irdeto integration.

    "},"Classes/VudrmDRMConfiguration.html":{"name":"VudrmDRMConfiguration","abstract":"

    The VUDRM DRMConfiguration object provides a set of DRM parameters for FairPlay DRM streaming with VUDRM integration.

    "},"Classes/WidevineDRMConfiguration.html":{"name":"WidevineDRMConfiguration","abstract":"

    The WidevineDRMConfiguration object provides a set of DRM parameters for Widevine DRM streaming.

    "},"Classes/AxinomDRMConfiguration.html":{"name":"AxinomDRMConfiguration","abstract":"

    The AxinomDRMConfiguration object provides a set of DRM parameters for FairPlay DRM streaming with Axinom integration.

    "},"Classes/ComcastDRMConfiguration.html":{"name":"ComcastDRMConfiguration","abstract":"

    Represents Comcast MPX DRM Configuration.

    "},"Classes/KeyOSDRMConfiguration.html":{"name":"KeyOSDRMConfiguration","abstract":"

    The KeyOS DRMConfiguration object provides a set of DRM parameters for FairPlay DRM streaming with KeyOS integration.

    "},"Classes/UplynkDRMConfiguration.html":{"name":"UplynkDRMConfiguration","abstract":"

    The Uplynk DRMConfiguration object provides a set of DRM parameters for FairPlay DRM streaming with Uplynk integration.

    "},"Classes/VerimatrixDRMConfiguration.html":{"name":"VerimatrixDRMConfiguration","abstract":"

    The VERIMATRIX DRMConfiguration object provides a set of DRM parameters for FairPlay DRM streaming with VERIMATRIX integration.

    "},"Classes/VimondDRMConfiguration.html":{"name":"VimondDRMConfiguration","abstract":"

    Describes the configuration of the Vimond DRM integration.

    "},"Classes/XstreamDRMConfiguration.html":{"name":"XstreamDRMConfiguration","abstract":"

    The Xstream DRMConfiguration object provides a set of DRM parameters for FairPlay DRM streaming with Xstream integration.

    "},"Classes/KeySystemConfiguration.html":{"name":"KeySystemConfiguration","abstract":"

    Key system configuration.

    "},"Enums/DRMIntegration.html":{"name":"DRMIntegration","abstract":"

    The identifier for the DRM integration.

    "},"Enums/LicenseType.html":{"name":"LicenseType","abstract":"

    The LicenseTypes for the DRM configuration.

    "},"Protocols/ContentProtectionError.html":{"name":"ContentProtectionError","abstract":"

    An error related to content protection.

    "},"Classes/MetadataDescription.html#/s:13THEOplayerSDK19MetadataDescriptionC12metadataKeysSDySSypGSgvp":{"name":"metadataKeys","abstract":"

    A dictionary of metadata.

    ","parent_name":"MetadataDescription"},"Classes/MetadataDescription.html#/s:13THEOplayerSDK19MetadataDescriptionC5titleSSSgvp":{"name":"title","abstract":"

    The title of the content.

    ","parent_name":"MetadataDescription"},"Classes/MetadataDescription.html#/s:13THEOplayerSDK19MetadataDescriptionC12metadataKeys5titleACSDySSypGSg_SSSgtcfc":{"name":"init(metadataKeys:title:)","abstract":"

    Constructs a MetadataDescription object.

    ","parent_name":"MetadataDescription"},"Classes/TextTrackDescription.html#/s:13THEOplayerSDK20TextTrackDescriptionC9isDefaultSbSgvp":{"name":"isDefault","abstract":"

    Whether the track should be enabled by default.

    ","parent_name":"TextTrackDescription"},"Classes/TextTrackDescription.html#/s:13THEOplayerSDK20TextTrackDescriptionC4kindAA0cD4KindOSgvp":{"name":"kind","abstract":"

    A TextTrackKind object specifying what kind of text track this is.

    ","parent_name":"TextTrackDescription"},"Classes/TextTrackDescription.html#/s:13THEOplayerSDK20TextTrackDescriptionC3src10Foundation3URLVvp":{"name":"src","abstract":"

    Specifies a source URL where the text track can be downloaded from.

    ","parent_name":"TextTrackDescription"},"Classes/TextTrackDescription.html#/s:13THEOplayerSDK20TextTrackDescriptionC7srclangSSvp":{"name":"srclang","abstract":"

    Specifies the main language of the track.

    ","parent_name":"TextTrackDescription"},"Classes/TextTrackDescription.html#/s:13THEOplayerSDK20TextTrackDescriptionC5labelSSSgvp":{"name":"label","abstract":"

    Specifies a label for the track which can be used to identify it.

    ","parent_name":"TextTrackDescription"},"Classes/TextTrackDescription.html#/s:13THEOplayerSDK20TextTrackDescriptionC6formatAA0cD6FormatOSgvp":{"name":"format","abstract":"

    A TextTrackFormat object specifying what format of text track this is.

    ","parent_name":"TextTrackDescription"},"Classes/TextTrackDescription.html#/s:13THEOplayerSDK20TextTrackDescriptionC3src7srclang9isDefault4kind5label6formatACSS_SSSbSgAA0cD4KindOSgSSSgAA0cD6FormatOSgtcfc":{"name":"init(src:srclang:isDefault:kind:label:format:)","abstract":"

    Constructs a TextTrackDescription.

    ","parent_name":"TextTrackDescription"},"Classes/TextTrackDescription.html#/s:SE6encode2toys7Encoder_p_tKF":{"name":"encode(to:)","parent_name":"TextTrackDescription"},"Classes/TypedSource.html#/s:13THEOplayerSDK11TypedSourceC3srcSSvp":{"name":"src","abstract":"

    The ‘src’ property represents the source URL of the manifest or video file to be played.

    ","parent_name":"TypedSource"},"Classes/TypedSource.html#/s:13THEOplayerSDK11TypedSourceC4typeSSvp":{"name":"type","abstract":"

    Specifies the content type (MIME type) of source being played.

    ","parent_name":"TypedSource"},"Classes/TypedSource.html#/s:13THEOplayerSDK11TypedSourceC3drmAA16DRMConfiguration_pSgvp":{"name":"drm","abstract":"

    This optional property can be used to specify required DRM parameters for a playback source.

    ","parent_name":"TypedSource"},"Classes/TypedSource.html#/s:13THEOplayerSDK11TypedSourceC11crossOriginAA05CrossF0OSgvp":{"name":"crossOrigin","abstract":"

    This optional property can be used to specify CORS parameters.

    ","parent_name":"TypedSource"},"Classes/TypedSource.html#/s:13THEOplayerSDK11TypedSourceC12hlsDateRangeSbSgvp":{"name":"hlsDateRange","abstract":"

    Parse / Expose date ranges from HLS manifest.

    ","parent_name":"TypedSource"},"Classes/TypedSource.html#/s:13THEOplayerSDK11TypedSourceC4ssaiAA34ServerSideAdInsertionConfiguration_pSgvp":{"name":"ssai","abstract":"

    This optional property can be used to specify required Server-Side Ad Insertion parameters for a playback source.

    ","parent_name":"TypedSource"},"Classes/TypedSource.html#/s:13THEOplayerSDK11TypedSourceC7headersSDyS2SGSgvp":{"name":"headers","abstract":"

    The HTTP request headers associated with the source. These headers are passed to every HTTP request that the player will make which include: master playlist, media playlist and segment requests.

    ","parent_name":"TypedSource"},"Classes/TypedSource.html#/s:13THEOplayerSDK11TypedSourceC4cmcdSbSgvp":{"name":"cmcd","abstract":"

    Send Common Media Client Data (CTA-5004) as HTTP request headers.

    ","parent_name":"TypedSource"},"Classes/TypedSource.html#/s:13THEOplayerSDK11TypedSourceC3src4type3drm11crossOrigin4ssai12hlsDateRange7headers4cmcdACSS_SSAA16DRMConfiguration_pSgAA05CrossI0OSgAA34ServerSideAdInsertionConfiguration_pSgSbSgSDyS2SGSgAStcfc":{"name":"init(src:type:drm:crossOrigin:ssai:hlsDateRange:headers:cmcd:)","abstract":"

    Constructs a TypedSource.

    ","parent_name":"TypedSource"},"Classes/SourceDescription.html#/s:13THEOplayerSDK17SourceDescriptionC7sourcesSayAA05TypedC0CGvp":{"name":"sources","abstract":"

    Represents the source of the media to be played.

    ","parent_name":"SourceDescription"},"Classes/SourceDescription.html#/s:13THEOplayerSDK17SourceDescriptionC10textTracksSayAA09TextTrackD0CGSgvp":{"name":"textTracks","abstract":"

    The textTracks property can be used to add an array of side-loaded text tracks to the player.

    ","parent_name":"SourceDescription"},"Classes/SourceDescription.html#/s:13THEOplayerSDK17SourceDescriptionC3adsSayAA02AdD0_pGSgvp":{"name":"ads","abstract":"

    The ads property can be used to add an array of AdDescriptions to the player. All valid and supported advertisement files will be cued for playback in the player. Each ad in the array should be described as an AdDescription.

    ","parent_name":"SourceDescription"},"Classes/SourceDescription.html#/s:13THEOplayerSDK17SourceDescriptionC18enableStreamingDVRSbSgvp":{"name":"enableStreamingDVR","abstract":"

    Enables smooth switching to HLS for DVR when seeking in THEOlive or Millicast. Users must provide a typed source as a fallback in the source description

    ","parent_name":"SourceDescription"},"Classes/SourceDescription.html#/s:13THEOplayerSDK17SourceDescriptionC6poster10Foundation3URLVSgvp":{"name":"poster","abstract":"

    The poster property can be used to specify a content poster per source.

    ","parent_name":"SourceDescription"},"Classes/SourceDescription.html#/s:13THEOplayerSDK17SourceDescriptionC8metadataAA08MetadataD0CSgvp":{"name":"metadata","abstract":"

    Metadata that can be used to describe content, e.g. when casting to chromecast.

    ","parent_name":"SourceDescription"},"Classes/SourceDescription.html#/s:13THEOplayerSDK17SourceDescriptionC3abrAA0C16AbrConfigurationCSgvp":{"name":"abr","abstract":"

    Sets the ABR configuration for the source being played.

    ","parent_name":"SourceDescription"},"Classes/SourceDescription.html#/s:13THEOplayerSDK17SourceDescriptionC7sources10textTracks3ads6poster8metadata3abr18enableStreamingDVRACSayAA05TypedC0CG_SayAA09TextTrackD0CGSgSayAA02AdD0_pGSgSSSgAA08MetadataD0CSgAA0C16AbrConfigurationCSgSbtcfc":{"name":"init(sources:textTracks:ads:poster:metadata:abr:enableStreamingDVR:)","abstract":"

    Constructs a SourceDescription.

    ","parent_name":"SourceDescription"},"Classes/SourceDescription.html#/s:13THEOplayerSDK17SourceDescriptionC6source10textTracks3ads6poster8metadata3abrAcA05TypedC0C_SayAA09TextTrackD0CGSgSayAA02AdD0_pGSgSSSgAA08MetadataD0CSgAA0C16AbrConfigurationCSgtcfc":{"name":"init(source:textTracks:ads:poster:metadata:abr:)","abstract":"

    Constructs a SourceDescription.

    ","parent_name":"SourceDescription"},"Classes/SourceDescription.html":{"name":"SourceDescription","abstract":"

    The SourceDescription object is used to describe a configuration of a source for a THEOplayer instance.

    "},"Classes/TypedSource.html":{"name":"TypedSource","abstract":"

    The TypedSource object provides the following properties:

    "},"Classes/TextTrackDescription.html":{"name":"TextTrackDescription","abstract":"

    A TextTrackDescription object contains a description of a side-loaded text track that will be added to the player.

    "},"Classes/MetadataDescription.html":{"name":"MetadataDescription","abstract":"

    The MetadataDescription object is used to describe content.

    "},"Classes/TextTrackStyleEdgeStyle.html#/s:13THEOplayerSDK018TextTrackStyleEdgeE0C4noneSSvpZ":{"name":"none","abstract":"

    No edge style

    ","parent_name":"TextTrackStyleEdgeStyle"},"Classes/TextTrackStyleEdgeStyle.html#/s:13THEOplayerSDK018TextTrackStyleEdgeE0C6raisedSSvpZ":{"name":"raised","abstract":"

    A raised edge style.

    ","parent_name":"TextTrackStyleEdgeStyle"},"Classes/TextTrackStyleEdgeStyle.html#/s:13THEOplayerSDK018TextTrackStyleEdgeE0C9depressedSSvpZ":{"name":"depressed","abstract":"

    A depressed edge style.

    ","parent_name":"TextTrackStyleEdgeStyle"},"Classes/TextTrackStyleEdgeStyle.html#/s:13THEOplayerSDK018TextTrackStyleEdgeE0C7uniformSSvpZ":{"name":"uniform","abstract":"

    A uniform border style.

    ","parent_name":"TextTrackStyleEdgeStyle"},"Classes/TextTrackStyleEdgeStyle.html#/s:13THEOplayerSDK018TextTrackStyleEdgeE0C10dropShadowSSvpZ":{"name":"dropShadow","abstract":"

    A drop shadow style.

    ","parent_name":"TextTrackStyleEdgeStyle"},"Protocols/TextTrackStyle.html#/s:13THEOplayerSDK14TextTrackStyleP15backgroundColorSayAA0cde4RuleG0CGSgvp":{"name":"backgroundColor","abstract":"

    The background color for the text track.

    ","parent_name":"TextTrackStyle"},"Protocols/TextTrackStyle.html#/s:13THEOplayerSDK14TextTrackStyleP9fontColorSayAA0cde4RuleG0CGSgvp":{"name":"fontColor","abstract":"

    The font color for the text track.

    ","parent_name":"TextTrackStyle"},"Protocols/TextTrackStyle.html#/s:13THEOplayerSDK14TextTrackStyleP8fontSizeSayAA0cdE10RuleNumberCGSgvp":{"name":"fontSize","abstract":"

    The font size for the text track. A non-negative number.

    ","parent_name":"TextTrackStyle"},"Protocols/TextTrackStyle.html#/s:13THEOplayerSDK14TextTrackStyleP10fontFamilySayAA0cdE10RuleStringCGSgvp":{"name":"fontFamily","abstract":"

    The font family for the text track.

    ","parent_name":"TextTrackStyle"},"Protocols/TextTrackStyle.html#/s:13THEOplayerSDK14TextTrackStyleP04edgeE0SayAA0cdE10RuleStringCGSgvp":{"name":"edgeStyle","abstract":"

    The edge style of the text, represented by a value from TextTrackStyleEdgeStyle

    ","parent_name":"TextTrackStyle"},"Protocols/TextTrackStyle.html#/s:13THEOplayerSDK14TextTrackStyleP9marginTopSayAA0cdE10RuleNumberCGSgvp":{"name":"marginTop","abstract":"

    The top margin of the area where subtitles are being rendered. A non-negative number.

    ","parent_name":"TextTrackStyle"},"Protocols/TextTrackStyle.html#/s:13THEOplayerSDK14TextTrackStyleP10marginLeftSayAA0cdE10RuleNumberCGSgvp":{"name":"marginLeft","abstract":"

    The left margin of the area where subtitles are being rendered. A non-negative number.

    ","parent_name":"TextTrackStyle"},"Protocols/TextTrackStyle.html":{"name":"TextTrackStyle","abstract":"

    The TextTrackStyle API can be used to change the style of the renderred TextTracks.

    "},"Text%20Track%20Styling%20API.html#/s:13THEOplayerSDK18TextTrackStyleRuleP":{"name":"TextTrackStyleRule","abstract":"

    The common protocol for TextTrackStyleRuleColor, THEOplayerTextTrackStyleRuleString and THEOplayerTextTrackStyleRuleNumber

    "},"Text%20Track%20Styling%20API.html#/c:@M@THEOplayerSDK@objc(cs)TextTrackStyleRuleColor":{"name":"TextTrackStyleRuleColor","abstract":"

    A TextTrackStyleRule that holds a color (UIColor) value.

    "},"Text%20Track%20Styling%20API.html#/c:@M@THEOplayerSDK@objc(cs)TextTrackStyleRuleString":{"name":"TextTrackStyleRuleString","abstract":"

    A TextTrackStyleRule that holds a color (String) value.

    "},"Text%20Track%20Styling%20API.html#/c:@M@THEOplayerSDK@objc(cs)TextTrackStyleRuleNumber":{"name":"TextTrackStyleRuleNumber","abstract":"

    A TextTrackStyleRule that holds a color (Int) value.

    "},"Classes/TextTrackStyleEdgeStyle.html":{"name":"TextTrackStyleEdgeStyle","abstract":"

    The TextTrackStyleEdgeStyle API can be used to change the edge style of the renderred TextTracks.

    "},"Classes/CueUpdateEvent.html#/s:13THEOplayerSDK14CueUpdateEventC4typeSSvp":{"name":"type","abstract":"

    The textual representation of the type of event, “update”.

    ","parent_name":"CueUpdateEvent"},"Classes/CueUpdateEvent.html#/s:13THEOplayerSDK14CueUpdateEventC4date10Foundation4DateVvp":{"name":"date","abstract":"

    The date at which the event occurred.

    ","parent_name":"CueUpdateEvent"},"Classes/CueUpdateEvent.html#/s:13THEOplayerSDK14CueUpdateEventC3cueAA09TextTrackC0_pvp":{"name":"cue","abstract":"

    The TextTrackCuewhich was updated.

    ","parent_name":"CueUpdateEvent"},"Classes/CueExitEvent.html#/s:13THEOplayerSDK12CueExitEventC4typeSSvp":{"name":"type","abstract":"

    The textual representation of the type of event, “exit”.

    ","parent_name":"CueExitEvent"},"Classes/CueExitEvent.html#/s:13THEOplayerSDK12CueExitEventC4date10Foundation4DateVvp":{"name":"date","abstract":"

    The date at which the event occurred.

    ","parent_name":"CueExitEvent"},"Classes/CueExitEvent.html#/s:13THEOplayerSDK12CueExitEventC3cueAA09TextTrackC0_pvp":{"name":"cue","abstract":"

    The TextTrackCuewhich was exited.

    ","parent_name":"CueExitEvent"},"Classes/CueEnterEvent.html#/s:13THEOplayerSDK13CueEnterEventC4typeSSvp":{"name":"type","abstract":"

    The textual representation of the type of event, “enter”.

    ","parent_name":"CueEnterEvent"},"Classes/CueEnterEvent.html#/s:13THEOplayerSDK13CueEnterEventC4date10Foundation4DateVvp":{"name":"date","abstract":"

    The date at which the event occurred.

    ","parent_name":"CueEnterEvent"},"Classes/CueEnterEvent.html#/s:13THEOplayerSDK13CueEnterEventC3cueAA09TextTrackC0_pvp":{"name":"cue","abstract":"

    The TextTrackCuewhich was entered.

    ","parent_name":"CueEnterEvent"},"Structs/TextTrackCueEventTypes.html#/s:13THEOplayerSDK22TextTrackCueEventTypesV5ENTERAA0F4TypeCyAA0e5EnterF0CGvpZ":{"name":"ENTER","abstract":"

    Fired when CueEnterEvent occurs.

    ","parent_name":"TextTrackCueEventTypes"},"Structs/TextTrackCueEventTypes.html#/s:13THEOplayerSDK22TextTrackCueEventTypesV4EXITAA0F4TypeCyAA0e4ExitF0CGvpZ":{"name":"EXIT","abstract":"

    Fired when CueExitEvent occurs.

    ","parent_name":"TextTrackCueEventTypes"},"Structs/TextTrackCueEventTypes.html#/s:13THEOplayerSDK22TextTrackCueEventTypesV6UPDATEAA0F4TypeCyAA0e6UpdateF0CGvpZ":{"name":"UPDATE","abstract":"

    Fired when CueUpdateEvent occurs.

    ","parent_name":"TextTrackCueEventTypes"},"Structs/TextTrackCueEventTypes.html":{"name":"TextTrackCueEventTypes","abstract":"

    The types of TextTrackCue events. These events apply to a certain TextTrackCue.

    "},"Classes/CueEnterEvent.html":{"name":"CueEnterEvent","abstract":"

    Fired when TextTrackCueEventTypes.ENTER occurs for a TextTrackCue.

    "},"Classes/CueExitEvent.html":{"name":"CueExitEvent","abstract":"

    Fired when TextTrackCueEventTypes.EXIT occurs for a TextTrackCue.

    "},"Classes/CueUpdateEvent.html":{"name":"CueUpdateEvent","abstract":"

    Fired when TextTrackCueEventTypes.UPDATE occurs for a TextTrackCue.

    "},"Protocols/WebVttCue.html#/s:13THEOplayerSDK9WebVttCueP5alignSSvp":{"name":"align","abstract":"

    The WebVTT cue text alignment, following the WebVTT specification.

    ","parent_name":"WebVttCue"},"Protocols/WebVttCue.html#/s:13THEOplayerSDK9WebVttCueP4lineSSvp":{"name":"line","abstract":"

    The WebVTT cue line, following the WebVTT specification.

    ","parent_name":"WebVttCue"},"Protocols/WebVttCue.html#/s:13THEOplayerSDK9WebVttCueP9lineAlignSSvp":{"name":"lineAlign","abstract":"

    A string representing the WebVTT cue line alignment, following the WebVTT specification.

    ","parent_name":"WebVttCue"},"Protocols/WebVttCue.html#/s:13THEOplayerSDK9WebVttCueP8positionSSvp":{"name":"position","abstract":"

    The WebVTT cue position, following the WebVTT specification.

    ","parent_name":"WebVttCue"},"Protocols/WebVttCue.html#/s:13THEOplayerSDK9WebVttCueP13positionAlignSSvp":{"name":"positionAlign","abstract":"

    A string representing the WebVTT cue position alignment, following the WebVTT specification.

    ","parent_name":"WebVttCue"},"Protocols/WebVttCue.html#/s:13THEOplayerSDK9WebVttCueP6regionSSSgvp":{"name":"region","abstract":"

    The VTTRegion object to which this cue belongs, the WebVTTRegion objects follows the WebVTT specification for WebVTTRegions.

    ","parent_name":"WebVttCue"},"Protocols/WebVttCue.html#/s:13THEOplayerSDK9WebVttCueP4sizeSivp":{"name":"size","abstract":"

    The WebVTT cue size, following to the WebVTT specification.

    ","parent_name":"WebVttCue"},"Protocols/WebVttCue.html#/s:13THEOplayerSDK9WebVttCueP11snapToLinesSbvp":{"name":"snapToLines","abstract":"

    True if the WebVTT cue snap-to-lines flag is true, false otherwise, following the WebVTT specification.

    ","parent_name":"WebVttCue"},"Protocols/WebVttCue.html#/s:13THEOplayerSDK9WebVttCueP4textSSSgvp":{"name":"text","abstract":"

    The text track cue text in raw unparsed form, following to the WebVTT specification.

    ","parent_name":"WebVttCue"},"Protocols/WebVttCue.html#/s:13THEOplayerSDK9WebVttCueP8verticalSSvp":{"name":"vertical","abstract":"

    A string representing the WebVTT cue writing direction, following the WebVTT specification.

    ","parent_name":"WebVttCue"},"Protocols/TextTrackCue.html#/s:13THEOplayerSDK12TextTrackCueP7contentypSgvp":{"name":"content","abstract":"

    The cue’s content.

    ","parent_name":"TextTrackCue"},"Protocols/TextTrackCue.html#/s:13THEOplayerSDK12TextTrackCueP13contentStringSSSgvp":{"name":"contentString","abstract":"

    If the cue’s type is WebVtt, the contentString is used. It contains the text track cue text in raw unparsed form.

    ","parent_name":"TextTrackCue"},"Protocols/TextTrackCue.html#/s:13THEOplayerSDK12TextTrackCueP17contentDictionarySDyS2SGSgvp":{"name":"contentDictionary","abstract":"

    If the cue’s type is WebVtt, the contentDictionary is used. It contains the text track cue info in a dictionary.

    ","parent_name":"TextTrackCue"},"Protocols/TextTrackCue.html#/s:13THEOplayerSDK12TextTrackCueP7endTimeSdvp":{"name":"endTime","abstract":"

    The time in seconds and relative to a THEOplayer instance’s currentTime at which the cue becomes inactive.

    ","parent_name":"TextTrackCue"},"Protocols/TextTrackCue.html#/s:13THEOplayerSDK12TextTrackCueP2idSSvp":{"name":"id","abstract":"

    The cue’s identifier.

    ","parent_name":"TextTrackCue"},"Protocols/TextTrackCue.html#/s:13THEOplayerSDK12TextTrackCueP3uidSivp":{"name":"uid","abstract":"

    The cue’s unique identifier.

    ","parent_name":"TextTrackCue"},"Protocols/TextTrackCue.html#/s:13THEOplayerSDK12TextTrackCueP9startTimeSdvp":{"name":"startTime","abstract":"

    The time in seconds and relative to a THEOplayer instance’s currentTime at which the cue becomes active.

    ","parent_name":"TextTrackCue"},"Protocols/TextTrackCue.html#/s:13THEOplayerSDK12TextTrackCueP5trackAA0cD0_pSgvp":{"name":"track","abstract":"

    The track the given cue belongs to.

    ","parent_name":"TextTrackCue"},"Protocols/TextTrackCue.html#/s:13THEOplayerSDK12TextTrackCueP16addEventListener4type8listenerAA0gH0_pAA0G4TypeCyqd__G_yqd__ctAA0G8ProtocolRd__lF":{"name":"addEventListener(type:listener:)","abstract":"

    Adds the given event listener of the given TextTrackCueEventType.

    ","parent_name":"TextTrackCue"},"Protocols/TextTrackCue.html#/s:13THEOplayerSDK12TextTrackCueP19removeEventListener4type8listeneryAA0G4TypeCyqd__G_AA0gH0_ptAA0G8ProtocolRd__lF":{"name":"removeEventListener(type:listener:)","abstract":"

    Removes the given event listener of the given TextTrackCueEventType.

    ","parent_name":"TextTrackCue"},"Classes/CustomAttributes.html#/s:13THEOplayerSDK16CustomAttributesC9getDouble3forSdSgSS_tKF":{"name":"getDouble(for:)","abstract":"

    The Double value from the CustomAttribute list.

    ","parent_name":"CustomAttributes"},"Classes/CustomAttributes.html#/s:13THEOplayerSDK16CustomAttributesC9getString3forSSSgSS_tKF":{"name":"getString(for:)","abstract":"

    The String value from the CustomAttribute list.

    ","parent_name":"CustomAttributes"},"Classes/CustomAttributes.html#/s:13THEOplayerSDK16CustomAttributesC8getBytes3for10Foundation4DataVSgSS_tKF":{"name":"getBytes(for:)","abstract":"

    The byte buffer from the CustomAttribute list.

    ","parent_name":"CustomAttributes"},"Classes/CustomAttributes.html#/s:13THEOplayerSDK16CustomAttributesC03getD12AsDictionarySDySSAA0C9AttributeCGyF":{"name":"getAttributesAsDictionary()","abstract":"

    The CustomAttribute list as a dictionary.

    ","parent_name":"CustomAttributes"},"Protocols/DateRangeCue.html#/s:13THEOplayerSDK12DateRangeCueP14attributeClassSSSgvp":{"name":"attributeClass","abstract":"

    Identifier of some set of attributes with associated value semantics.

    ","parent_name":"DateRangeCue"},"Protocols/DateRangeCue.html#/s:13THEOplayerSDK12DateRangeCueP05startC010Foundation0C0Vvp":{"name":"startDate","abstract":"

    Returns the date at which the DateRange begins.

    ","parent_name":"DateRangeCue"},"Protocols/DateRangeCue.html#/s:13THEOplayerSDK12DateRangeCueP03endC010Foundation0C0VSgvp":{"name":"endDate","abstract":"

    Returns the date at which the DateRange ends. The date will be equal to or later than the startDate.

    ","parent_name":"DateRangeCue"},"Protocols/DateRangeCue.html#/s:13THEOplayerSDK12DateRangeCueP8durationSdSgvp":{"name":"duration","abstract":"

    Returns the duration in seconds of the timed metadata.

    ","parent_name":"DateRangeCue"},"Protocols/DateRangeCue.html#/s:13THEOplayerSDK12DateRangeCueP15plannedDurationSdSgvp":{"name":"plannedDuration","abstract":"

    Returns the expected duration in seconds of the timed metadata. Use this whenever the exact duration is not known.

    ","parent_name":"DateRangeCue"},"Protocols/DateRangeCue.html#/s:13THEOplayerSDK12DateRangeCueP9endOnNextSbvp":{"name":"endOnNext","abstract":"

    Returns true if the end of this DateRange is equal to the startDate of the Following Range.

    ","parent_name":"DateRangeCue"},"Protocols/DateRangeCue.html#/s:13THEOplayerSDK12DateRangeCueP9scte35Cmd10Foundation4DataVSgvp":{"name":"scte35Cmd","abstract":"

    Returns the SCTE ‘cmd’ splice_info_section.

    ","parent_name":"DateRangeCue"},"Protocols/DateRangeCue.html#/s:13THEOplayerSDK12DateRangeCueP9scte35Out10Foundation4DataVSgvp":{"name":"scte35Out","abstract":"

    Returns the SCTE ‘out’ splice_info_section.

    ","parent_name":"DateRangeCue"},"Protocols/DateRangeCue.html#/s:13THEOplayerSDK12DateRangeCueP8scte35In10Foundation4DataVSgvp":{"name":"scte35In","abstract":"

    Returns the SCTE ‘in’ splice_info_section.

    ","parent_name":"DateRangeCue"},"Protocols/DateRangeCue.html#/s:13THEOplayerSDK12DateRangeCueP16customAttributesAA06CustomG0Cvp":{"name":"customAttributes","abstract":"

    Returns all client-defined attributes. The attribute name does not include the ‘X-’ prefix.

    ","parent_name":"DateRangeCue"},"Text%20Track%20Cue%20API.html#/s:13THEOplayerSDK16CueEventProtocolP":{"name":"CueEventProtocol","abstract":"

    The base TextTrackCue Event protocol.

    "},"Text%20Track%20Cue%20API.html#/s:13THEOplayerSDK25TextTrackCueEventProtocolP":{"name":"TextTrackCueEventProtocol","abstract":"

    The base TextTrack cue Event protocol.

    "},"Protocols/DateRangeCue.html":{"name":"DateRangeCue","abstract":"

    Represents the HLS date range cue which is a part of the metadata text track.

    "},"Text%20Track%20Cue%20API.html#/c:@M@THEOplayerSDK@objc(cs)CustomAttribute":{"name":"CustomAttribute","abstract":"

    The CustomAttribute object of the date range cue."},"Classes/CustomAttributes.html":{"name":"CustomAttributes","abstract":"

    An array of CustomAttribute objects for the dateRangeCue.

    "},"Protocols/TextTrackCue.html":{"name":"TextTrackCue","abstract":"

    A TextTrackCue object represents an individual cue and provides methods and properties to access the data and events to act on changes to cue state. Depending on the TextTrack’s type, a cue might have different properties.

    "},"Protocols/WebVttCue.html":{"name":"WebVttCue","abstract":"

    Web Video Text Tracks cue.

    "},"Text%20Track%20Cue%20API.html#/s:13THEOplayerSDK6Id3CueP":{"name":"Id3Cue","abstract":"

    ID3 Text Track cue. Content type is [String:String].

    "},"Classes/ExitCueEvent.html#/s:13THEOplayerSDK12ExitCueEventC4typeSSvp":{"name":"type","abstract":"

    The textual representation of the type of event, “exitcue”.

    ","parent_name":"ExitCueEvent"},"Classes/ExitCueEvent.html#/s:13THEOplayerSDK12ExitCueEventC4date10Foundation4DateVvp":{"name":"date","abstract":"

    The date at which the event occurred.

    ","parent_name":"ExitCueEvent"},"Classes/ExitCueEvent.html#/s:13THEOplayerSDK12ExitCueEventC3cueAA09TextTrackD0_pvp":{"name":"cue","abstract":"

    The TextTrackCue that exited.

    ","parent_name":"ExitCueEvent"},"Classes/EnterCueEvent.html#/s:13THEOplayerSDK13EnterCueEventC4typeSSvp":{"name":"type","abstract":"

    The textual representation of the type of event, “entercue”.

    ","parent_name":"EnterCueEvent"},"Classes/EnterCueEvent.html#/s:13THEOplayerSDK13EnterCueEventC4date10Foundation4DateVvp":{"name":"date","abstract":"

    The date at which the event occurred.

    ","parent_name":"EnterCueEvent"},"Classes/EnterCueEvent.html#/s:13THEOplayerSDK13EnterCueEventC3cueAA09TextTrackD0_pvp":{"name":"cue","abstract":"

    The TextTrackCue that entered.

    ","parent_name":"EnterCueEvent"},"Classes/CueChangeEvent.html#/s:13THEOplayerSDK14CueChangeEventC4typeSSvp":{"name":"type","abstract":"

    The textual representation of the type of event, “cuechange”.

    ","parent_name":"CueChangeEvent"},"Classes/CueChangeEvent.html#/s:13THEOplayerSDK14CueChangeEventC4date10Foundation4DateVvp":{"name":"date","abstract":"

    The date at which the event occurred.

    ","parent_name":"CueChangeEvent"},"Classes/CueChangeEvent.html#/s:13THEOplayerSDK14CueChangeEventC5trackAA5Track_pvp":{"name":"track","abstract":"

    The TextTrackfor which the TextTrackCue changed.

    ","parent_name":"CueChangeEvent"},"Classes/RemoveCueEvent.html#/s:13THEOplayerSDK14RemoveCueEventC4typeSSvp":{"name":"type","abstract":"

    The textual representation of the type of event, “removecue”.

    ","parent_name":"RemoveCueEvent"},"Classes/RemoveCueEvent.html#/s:13THEOplayerSDK14RemoveCueEventC4date10Foundation4DateVvp":{"name":"date","abstract":"

    The date at which the event occurred.

    ","parent_name":"RemoveCueEvent"},"Classes/RemoveCueEvent.html#/s:13THEOplayerSDK14RemoveCueEventC3cueAA09TextTrackD0_pvp":{"name":"cue","abstract":"

    The TextTrackCue that was removed.

    ","parent_name":"RemoveCueEvent"},"Classes/AddCueEvent.html#/s:13THEOplayerSDK11AddCueEventC4typeSSvp":{"name":"type","abstract":"

    The textual representation of the type of event, “addcue”.

    ","parent_name":"AddCueEvent"},"Classes/AddCueEvent.html#/s:13THEOplayerSDK11AddCueEventC4date10Foundation4DateVvp":{"name":"date","abstract":"

    The date at which the event occurred.

    ","parent_name":"AddCueEvent"},"Classes/AddCueEvent.html#/s:13THEOplayerSDK11AddCueEventC3cueAA09TextTrackD0_pvp":{"name":"cue","abstract":"

    The TextTrackCue that was added.

    ","parent_name":"AddCueEvent"},"Structs/TextTrackEventTypes.html#/s:13THEOplayerSDK19TextTrackEventTypesV10CUE_CHANGEAA0E4TypeCyAA09CueChangeE0CGvpZ":{"name":"CUE_CHANGE","abstract":"

    Fired when CueChangeEvent occurs.

    ","parent_name":"TextTrackEventTypes"},"Structs/TextTrackEventTypes.html#/s:13THEOplayerSDK19TextTrackEventTypesV7ADD_CUEAA0E4TypeCyAA06AddCueE0CGvpZ":{"name":"ADD_CUE","abstract":"

    Fired when AddCueEvent occurs.

    ","parent_name":"TextTrackEventTypes"},"Structs/TextTrackEventTypes.html#/s:13THEOplayerSDK19TextTrackEventTypesV10REMOVE_CUEAA0E4TypeCyAA09RemoveCueE0CGvpZ":{"name":"REMOVE_CUE","abstract":"

    Fired when RemoveCueEvent occurs.

    ","parent_name":"TextTrackEventTypes"},"Structs/TextTrackEventTypes.html#/s:13THEOplayerSDK19TextTrackEventTypesV9ENTER_CUEAA0E4TypeCyAA08EnterCueE0CGvpZ":{"name":"ENTER_CUE","abstract":"

    Fired when EnterCueEvent occurs.

    ","parent_name":"TextTrackEventTypes"},"Structs/TextTrackEventTypes.html#/s:13THEOplayerSDK19TextTrackEventTypesV8EXIT_CUEAA0E4TypeCyAA07ExitCueE0CGvpZ":{"name":"EXIT_CUE","abstract":"

    Fired when ExitCueEvent occurs.

    ","parent_name":"TextTrackEventTypes"},"Structs/MediaTrackEventTypes.html#/s:13THEOplayerSDK20MediaTrackEventTypesV22ACTIVE_QUALITY_CHANGEDAA0E4TypeCyAA020ActiveQualityChangedE0CGvpZ":{"name":"ACTIVE_QUALITY_CHANGED","abstract":"

    Fired when the activeQualityBandwidth property of a MediaTrack has been updated.

    ","parent_name":"MediaTrackEventTypes"},"Structs/TrackEventTypes.html#/s:13THEOplayerSDK15TrackEventTypesV6UPDATEAA0D4TypeCyAA0c6UpdateD0CGvpZ":{"name":"UPDATE","abstract":"

    Fired when one or more properties of a track have been updated.

    ","parent_name":"TrackEventTypes"},"Structs/TrackEventTypes.html":{"name":"TrackEventTypes","abstract":"

    The events fired by a Track.

    "},"Structs/MediaTrackEventTypes.html":{"name":"MediaTrackEventTypes","abstract":"

    The events fired by a MediaTrack.

    "},"Structs/TextTrackEventTypes.html":{"name":"TextTrackEventTypes","abstract":"

    The types of TextTrack events. These events apply to the list of TextTrackCues.

    "},"Classes/AddCueEvent.html":{"name":"AddCueEvent","abstract":"

    Fired when TextTrackEventTypes.ADD_CUE occurs for the list of TextTrackCues.

    "},"Classes/RemoveCueEvent.html":{"name":"RemoveCueEvent","abstract":"

    Fired when TextTrackEventTypes.REMOVE_CUE occurs for the list of TextTrackCues.

    "},"Classes/CueChangeEvent.html":{"name":"CueChangeEvent","abstract":"

    Fired when TextTrackEventTypes.CUE_CHANGE occurs for the list of TextTrackCues.

    "},"Classes/EnterCueEvent.html":{"name":"EnterCueEvent","abstract":"

    Fired when TextTrackEventTypes.ENTER_CUE occurs for the list of TextTrackCues.

    "},"Classes/ExitCueEvent.html":{"name":"ExitCueEvent","abstract":"

    Fired when TextTrackEventTypes.EXIT_CUE occurs for the list of TextTrackCues.

    "},"Enums/TextTrackFormat.html#/s:13THEOplayerSDK15TextTrackFormatO6WebVTTyA2CmF":{"name":"WebVTT","abstract":"

    The text track is in the Web Video Text Tracks format.

    ","parent_name":"TextTrackFormat"},"Enums/TextTrackFormat.html#/s:13THEOplayerSDK15TextTrackFormatO3SRTyA2CmF":{"name":"SRT","abstract":"

    The text track is in the SubRip Text Tracks format.

    ","parent_name":"TextTrackFormat"},"Enums/TextTrackFormat.html#/s:13THEOplayerSDK15TextTrackFormatO9_rawValueSSvp":{"name":"_rawValue","abstract":"

    The raw value of type String.

    ","parent_name":"TextTrackFormat"},"Enums/TextTrackKind.html#/s:13THEOplayerSDK13TextTrackKindO9subtitlesyA2CmF":{"name":"subtitles","abstract":"

    The text track contains subtitles.

    ","parent_name":"TextTrackKind"},"Enums/TextTrackKind.html#/s:13THEOplayerSDK13TextTrackKindO8captionsyA2CmF":{"name":"captions","abstract":"

    The text track contains closed captions, a translation of dialogue and sound effects.

    ","parent_name":"TextTrackKind"},"Enums/TextTrackKind.html#/s:13THEOplayerSDK13TextTrackKindO11descriptionyA2CmF":{"name":"description","abstract":"

    The text track contains descriptions, a textual description of the video.

    ","parent_name":"TextTrackKind"},"Enums/TextTrackKind.html#/s:13THEOplayerSDK13TextTrackKindO8chaptersyA2CmF":{"name":"chapters","abstract":"

    The text track contains chapter titles suitable for navigating the media resource.

    ","parent_name":"TextTrackKind"},"Enums/TextTrackKind.html#/s:13THEOplayerSDK13TextTrackKindO8metadatayA2CmF":{"name":"metadata","abstract":"

    The text track contains metadata.

    ","parent_name":"TextTrackKind"},"Enums/TextTrackKind.html#/s:13THEOplayerSDK13TextTrackKindO9_rawValueSSvp":{"name":"_rawValue","abstract":"

    The raw value of type String.

    ","parent_name":"TextTrackKind"},"Enums/TextTrackMode.html#/s:13THEOplayerSDK13TextTrackModeO9_rawValueSSvp":{"name":"_rawValue","abstract":"

    The raw value of type String.

    ","parent_name":"TextTrackMode"},"Protocols/TextTrack.html#/s:13THEOplayerSDK9TextTrackP014inBandMetadataD12DispatchTypeSSvp":{"name":"inBandMetadataTrackDispatchType","abstract":"

    The text track in-band metadata track dispatch type of the text track that the TextTrack object represents.

    ","parent_name":"TextTrack"},"Protocols/TextTrack.html#/s:13THEOplayerSDK9TextTrackP4modeAA0cD4ModeOvp":{"name":"mode","abstract":"

    The text track mode.

    ","parent_name":"TextTrack"},"Protocols/TextTrack.html#/s:13THEOplayerSDK9TextTrackP4cuesSayAA0cD3Cue_pGvp":{"name":"cues","abstract":"

    The text track’s list of TextTrackCue objects as a TextTrackCueList. This list includes all of the text track’s known cues.

    ","parent_name":"TextTrack"},"Protocols/TextTrack.html#/s:13THEOplayerSDK9TextTrackP3srcSSvp":{"name":"src","abstract":"

    The text track’s resource path

    ","parent_name":"TextTrack"},"Protocols/TextTrack.html#/s:13THEOplayerSDK9TextTrackP10activeCuesSayAA0cD3Cue_pGvp":{"name":"activeCues","abstract":"

    The text track’s list of active TextTrackCue objects as a TextTrackCueList.

    ","parent_name":"TextTrack"},"Protocols/TextTrack.html#/s:13THEOplayerSDK9TextTrackP4typeSSvp":{"name":"type","abstract":"

    The content type of the given track.

    ","parent_name":"TextTrack"},"Protocols/TextTrack.html#/s:13THEOplayerSDK9TextTrackP6forcedSbvp":{"name":"forced","abstract":"

    Indicates whether the track contains Forced Narrative cues.

    ","parent_name":"TextTrack"},"Protocols/TextTrack.html#/s:13THEOplayerSDK9TextTrackP16addEventListener4type8listenerAA0fG0_pAA0F4TypeCyqd__G_yqd__ctAA0F8ProtocolRd__lF":{"name":"addEventListener(type:listener:)","abstract":"

    Adds the given event listener of the given TextTrackEventType.

    ","parent_name":"TextTrack"},"Protocols/TextTrack.html#/s:13THEOplayerSDK9TextTrackP19removeEventListener4type8listeneryAA0F4TypeCyqd__G_AA0fG0_ptAA0F8ProtocolRd__lF":{"name":"removeEventListener(type:listener:)","abstract":"

    Removes the given event listener of the given TextTrackEventType.

    ","parent_name":"TextTrack"},"Protocols/AudioTrack.html#/s:13THEOplayerSDK10AudioTrackP7enabledSbvp":{"name":"enabled","abstract":"

    Indicates whether the track is enabled.

    ","parent_name":"AudioTrack"},"Protocols/MediaTrack.html#/s:13THEOplayerSDK10MediaTrackP7enabledSbvp":{"name":"enabled","abstract":"

    Indicates whether the track is enabled.

    ","parent_name":"MediaTrack"},"Protocols/MediaTrack.html#/s:13THEOplayerSDK10MediaTrackP22activeQualityBandwidthSivp":{"name":"activeQualityBandwidth","abstract":"

    Returns the bandwidth of the media track’s current active quality.

    ","parent_name":"MediaTrack"},"Protocols/MediaTrack.html#/s:13THEOplayerSDK10MediaTrackP13activeQualityAA0F0_pSgvp":{"name":"activeQuality","abstract":"

    The active quality of the media track, i.e. the quality that is currently being played.

    ","parent_name":"MediaTrack"},"Protocols/MediaTrack.html#/s:13THEOplayerSDK10MediaTrackP9qualitiesAA11QualityList_pvp":{"name":"qualities","abstract":"

    The qualities of the media track.

    ","parent_name":"MediaTrack"},"Protocols/MediaTrack.html#/s:13THEOplayerSDK10MediaTrackP15targetQualitiesSayAA7Quality_pGSgvp":{"name":"targetQualities","abstract":"

    One or more desired qualities of the media track.

    ","parent_name":"MediaTrack"},"Protocols/Track.html#/s:13THEOplayerSDK5TrackP4kindSSvp":{"name":"kind","abstract":"

    The kind of the track.

    ","parent_name":"Track"},"Protocols/Track.html#/s:13THEOplayerSDK5TrackP8languageSSvp":{"name":"language","abstract":"

    The language of the track.

    ","parent_name":"Track"},"Protocols/Track.html#/s:13THEOplayerSDK5TrackP5labelSSvp":{"name":"label","abstract":"

    The label of the track. This label could be localized.

    ","parent_name":"Track"},"Protocols/Track.html#/s:13THEOplayerSDK5TrackP16unlocalizedLabelSSvp":{"name":"unlocalizedLabel","abstract":"

    The unlocalized label of the track. This is guaranteed to be not localized.

    ","parent_name":"Track"},"Protocols/Track.html#/s:13THEOplayerSDK5TrackP2idSSvp":{"name":"id","abstract":"

    The identifier of the track.

    ","parent_name":"Track"},"Protocols/Track.html#/s:13THEOplayerSDK5TrackP3uidSivp":{"name":"uid","abstract":"

    A unique identifier of the track.

    ","parent_name":"Track"},"Protocols/Track.html":{"name":"Track","abstract":"

    A track object.

    "},"Protocols/MediaTrack.html":{"name":"MediaTrack","abstract":"

    A MediaTrack is an element that represents a single video or audio track that can be played by the player.

    "},"Track%20API.html#/s:13THEOplayerSDK10VideoTrackP":{"name":"VideoTrack","abstract":"

    A VideoTrack object is an element that represents a single video track that can be played by the player.

    "},"Protocols/AudioTrack.html":{"name":"AudioTrack","abstract":"

    An AudioTrack object is an element that represents a single audio track that can be played by the player.

    "},"Protocols/TextTrack.html":{"name":"TextTrack","abstract":"

    A TextTrack object is an element that represents a single text track that can be displayed in the player.

    "},"Enums/TextTrackMode.html":{"name":"TextTrackMode","abstract":"

    The different TextTrack modes.

    "},"Enums/TextTrackKind.html":{"name":"TextTrackKind","abstract":"

    Describes the kind of the text track.

    "},"Enums/TextTrackFormat.html":{"name":"TextTrackFormat","abstract":"

    Describes the format of the text track.

    "},"Classes/RemoveTrackEvent.html#/s:13THEOplayerSDK16RemoveTrackEventC4typeSSvp":{"name":"type","abstract":"

    The textual representation of the type of event, “removetrack”.

    ","parent_name":"RemoveTrackEvent"},"Classes/RemoveTrackEvent.html#/s:13THEOplayerSDK16RemoveTrackEventC4date10Foundation4DateVvp":{"name":"date","abstract":"

    The date at which the event occurred.

    ","parent_name":"RemoveTrackEvent"},"Classes/RemoveTrackEvent.html#/s:13THEOplayerSDK16RemoveTrackEventC5trackAA0D0_pvp":{"name":"track","abstract":"

    The Track which was just removed from the track list.

    ","parent_name":"RemoveTrackEvent"},"Classes/AddTrackEvent.html#/s:13THEOplayerSDK13AddTrackEventC4typeSSvp":{"name":"type","abstract":"

    The textual representation of the type of event, “addtrack”.

    ","parent_name":"AddTrackEvent"},"Classes/AddTrackEvent.html#/s:13THEOplayerSDK13AddTrackEventC4date10Foundation4DateVvp":{"name":"date","abstract":"

    The date at which the event occurred.

    ","parent_name":"AddTrackEvent"},"Classes/AddTrackEvent.html#/s:13THEOplayerSDK13AddTrackEventC5trackAA0D0_pvp":{"name":"track","abstract":"

    The Track which was just added to the track list.

    ","parent_name":"AddTrackEvent"},"Classes/TrackChangeEvent.html#/s:13THEOplayerSDK16TrackChangeEventC4typeSSvp":{"name":"type","abstract":"

    The textual representation of the type of event, “change”.

    ","parent_name":"TrackChangeEvent"},"Classes/TrackChangeEvent.html#/s:13THEOplayerSDK16TrackChangeEventC4date10Foundation4DateVvp":{"name":"date","abstract":"

    The date at which the event occurred.

    ","parent_name":"TrackChangeEvent"},"Classes/TrackChangeEvent.html#/s:13THEOplayerSDK16TrackChangeEventC5trackAA0C0_pvp":{"name":"track","abstract":"

    The Track which has its state just changed.

    ","parent_name":"TrackChangeEvent"},"Structs/TextTrackListEventTypes.html#/s:13THEOplayerSDK23TextTrackListEventTypesV9ADD_TRACKAA0F4TypeCyAA03AdddF0CGvpZ":{"name":"ADD_TRACK","abstract":"

    Fired when AddTrackEvent occurs.

    ","parent_name":"TextTrackListEventTypes"},"Structs/TextTrackListEventTypes.html#/s:13THEOplayerSDK23TextTrackListEventTypesV12REMOVE_TRACKAA0F4TypeCyAA06RemovedF0CGvpZ":{"name":"REMOVE_TRACK","abstract":"

    Fired when RemoveTrackEvent occurs.

    ","parent_name":"TextTrackListEventTypes"},"Structs/TextTrackListEventTypes.html#/s:13THEOplayerSDK23TextTrackListEventTypesV6CHANGEAA0F4TypeCyAA0d6ChangeF0CGvpZ":{"name":"CHANGE","abstract":"

    Fired when TrackChangeEvent occurs.

    ","parent_name":"TextTrackListEventTypes"},"Structs/AudioTrackListEventTypes.html#/s:13THEOplayerSDK24AudioTrackListEventTypesV9ADD_TRACKAA0F4TypeCyAA03AdddF0CGvpZ":{"name":"ADD_TRACK","abstract":"

    Fired when AddTrackEvent occurs.

    ","parent_name":"AudioTrackListEventTypes"},"Structs/AudioTrackListEventTypes.html#/s:13THEOplayerSDK24AudioTrackListEventTypesV12REMOVE_TRACKAA0F4TypeCyAA06RemovedF0CGvpZ":{"name":"REMOVE_TRACK","abstract":"

    Fired when RemoveTrackEvent occurs.

    ","parent_name":"AudioTrackListEventTypes"},"Structs/AudioTrackListEventTypes.html#/s:13THEOplayerSDK24AudioTrackListEventTypesV6CHANGEAA0F4TypeCyAA0d6ChangeF0CGvpZ":{"name":"CHANGE","abstract":"

    Fired when TrackChangeEvent occurs.

    ","parent_name":"AudioTrackListEventTypes"},"Structs/VideoTrackListEventTypes.html#/s:13THEOplayerSDK24VideoTrackListEventTypesV9ADD_TRACKAA0F4TypeCyAA03AdddF0CGvpZ":{"name":"ADD_TRACK","abstract":"

    Fired when AddTrackEvent occurs.

    ","parent_name":"VideoTrackListEventTypes"},"Structs/VideoTrackListEventTypes.html#/s:13THEOplayerSDK24VideoTrackListEventTypesV12REMOVE_TRACKAA0F4TypeCyAA06RemovedF0CGvpZ":{"name":"REMOVE_TRACK","abstract":"

    Fired when RemoveTrackEvent occurs.

    ","parent_name":"VideoTrackListEventTypes"},"Structs/VideoTrackListEventTypes.html#/s:13THEOplayerSDK24VideoTrackListEventTypesV6CHANGEAA0F4TypeCyAA0d6ChangeF0CGvpZ":{"name":"CHANGE","abstract":"

    Fired when TrackChangeEvent occurs.

    ","parent_name":"VideoTrackListEventTypes"},"Structs/VideoTrackListEventTypes.html":{"name":"VideoTrackListEventTypes","abstract":"

    The types of VideoTrackList events.

    "},"Structs/AudioTrackListEventTypes.html":{"name":"AudioTrackListEventTypes","abstract":"

    The types of AudioTrackList events.

    "},"Structs/TextTrackListEventTypes.html":{"name":"TextTrackListEventTypes","abstract":"

    The types of TextTrackList events.

    "},"Classes/TrackChangeEvent.html":{"name":"TrackChangeEvent","abstract":"

    Fired when TextTrackListEventTypes.CHANGE occurs for a TextTrackList.

    "},"Classes/AddTrackEvent.html":{"name":"AddTrackEvent","abstract":"

    Fired when TextTrackListEventTypes.ADD_TRACK occurs for a TextTrackList.

    "},"Classes/RemoveTrackEvent.html":{"name":"RemoveTrackEvent","abstract":"

    Fired when TextTrackListEventTypes.REMOVE_TRACK occurs for a TextTrackList.

    "},"Protocols/TextTrackList.html#/s:13THEOplayerSDK13TextTrackListP5countSivp":{"name":"count","abstract":"

    The number of text tracks in the list of text tracks.

    ","parent_name":"TextTrackList"},"Protocols/TextTrackList.html#/s:13THEOplayerSDK13TextTrackListP3getyAA0cD0_pSiF":{"name":"get(_:)","abstract":"

    The TextTrack object representing the text track at the index position in the player’s list of text tracks.

    ","parent_name":"TextTrackList"},"Protocols/TextTrackList.html#/s:13THEOplayerSDK13TextTrackListPyAA0cD0_pSicip":{"name":"subscript(_:)","abstract":"

    Returns the TextTrack object representing the text track at the index position in the player’s list of text tracks.

    ","parent_name":"TextTrackList"},"Protocols/TextTrackList.html#/s:13THEOplayerSDK13TextTrackListP16addEventListener4type8listenerAA0gH0_pAA0G4TypeCyqd__G_yqd__ctAA0G8ProtocolRd__lF":{"name":"addEventListener(type:listener:)","abstract":"

    Adds the given event listener of the given TextTrackListEventType.

    ","parent_name":"TextTrackList"},"Protocols/TextTrackList.html#/s:13THEOplayerSDK13TextTrackListP19removeEventListener4type8listeneryAA0G4TypeCyqd__G_AA0gH0_ptAA0G8ProtocolRd__lF":{"name":"removeEventListener(type:listener:)","abstract":"

    Removes the given event listener of the given TextTrackListEventType.

    ","parent_name":"TextTrackList"},"Protocols/AudioTrackList.html#/s:13THEOplayerSDK14AudioTrackListP16addEventListener4type8listenerAA0gH0_pAA0G4TypeCyqd__G_yqd__ctAA0G8ProtocolRd__lF":{"name":"addEventListener(type:listener:)","abstract":"

    Adds the given event listener of the given AudioTrackListEventType.

    ","parent_name":"AudioTrackList"},"Protocols/AudioTrackList.html#/s:13THEOplayerSDK14AudioTrackListP19removeEventListener4type8listeneryAA0G4TypeCyqd__G_AA0gH0_ptAA0G8ProtocolRd__lF":{"name":"removeEventListener(type:listener:)","abstract":"

    Removes the given event listener of the given AudioTrackListEventType.

    ","parent_name":"AudioTrackList"},"Protocols/VideoTrackList.html#/s:13THEOplayerSDK14VideoTrackListP16addEventListener4type8listenerAA0gH0_pAA0G4TypeCyqd__G_yqd__ctAA0G8ProtocolRd__lF":{"name":"addEventListener(type:listener:)","abstract":"

    Adds the given event listener of the given VideoTrackListEventType.

    ","parent_name":"VideoTrackList"},"Protocols/VideoTrackList.html#/s:13THEOplayerSDK14VideoTrackListP19removeEventListener4type8listeneryAA0G4TypeCyqd__G_AA0gH0_ptAA0G8ProtocolRd__lF":{"name":"removeEventListener(type:listener:)","abstract":"

    Removes the given event listener of the given VideoTrackListEventType.

    ","parent_name":"VideoTrackList"},"Protocols/MediaTrackList.html#/s:13THEOplayerSDK14MediaTrackListP5countSivp":{"name":"count","abstract":"

    The number of media tracks in the list of media tracks.

    ","parent_name":"MediaTrackList"},"Protocols/MediaTrackList.html#/s:13THEOplayerSDK14MediaTrackListP3getyAA0cD0_pSiF":{"name":"get(_:)","abstract":"

    Returns the MediaTrack object representing the media track at the index position in the player’s list of audio or video tracks.

    ","parent_name":"MediaTrackList"},"Protocols/MediaTrackList.html#/s:13THEOplayerSDK14MediaTrackListPyAA0cD0_pSicip":{"name":"subscript(_:)","abstract":"

    Returns the MediaTrack object representing the media track at the index position in the player’s list of audio or video tracks.

    ","parent_name":"MediaTrackList"},"Protocols/MediaTrackList.html":{"name":"MediaTrackList","abstract":"

    A MediaTrackList lists all available MediaTrack objects that the player can play. It contains MediaTrack objects, which are either AudioTracks or VideoTracks.

    "},"Protocols/VideoTrackList.html":{"name":"VideoTrackList","abstract":"

    A VideoTrackList lists all available VideoTrack objects that the player can play.

    "},"Protocols/AudioTrackList.html":{"name":"AudioTrackList","abstract":"

    An AudioTrackList lists all available AudioTrack objects that the player can play.

    "},"Protocols/TextTrackList.html":{"name":"TextTrackList","abstract":"

    A TextTrackList lists all available TextTrack objects that the player can display.

    "},"Classes/VolumeChangeEvent.html#/s:13THEOplayerSDK17VolumeChangeEventC6volumeSfvp":{"name":"volume","abstract":"

    The new value, between 0 and 1, of the player’s volume.

    ","parent_name":"VolumeChangeEvent"},"Classes/VolumeChangeEvent.html#/s:13THEOplayerSDK17VolumeChangeEventC06deviceC0Sfvp":{"name":"deviceVolume","abstract":"

    The new value, between 0 and 1, of the device’s volume.

    ","parent_name":"VolumeChangeEvent"},"Classes/PresentationModeChangeEvent.html#/s:13THEOplayerSDK27PresentationModeChangeEventC012presentationD0AA0cD0Ovp":{"name":"presentationMode","abstract":"

    The new PresentationMode of the player.

    ","parent_name":"PresentationModeChangeEvent"},"Classes/ErrorEvent.html#/s:13THEOplayerSDK10ErrorEventC5errorSSvp":{"name":"error","abstract":"

    The textual representation of the error that happened.

    ","parent_name":"ErrorEvent"},"Classes/ErrorEvent.html#/s:13THEOplayerSDK10ErrorEventC11errorObjectAA9THEOError_pSgvp":{"name":"errorObject","abstract":"

    A more descriptive THEOErrorcontaining information about the error.

    ","parent_name":"ErrorEvent"},"Classes/RateChangeEvent.html#/s:13THEOplayerSDK15RateChangeEventC08playbackC0Sdvp":{"name":"playbackRate","abstract":"

    The new rate of playback of the player.

    ","parent_name":"RateChangeEvent"},"Classes/TimeUpdateEvent.html#/s:13THEOplayerSDK15TimeUpdateEventC018currentProgramDateC010Foundation0H0VSgvp":{"name":"currentProgramDateTime","abstract":"

    The current program date time of the player.

    ","parent_name":"TimeUpdateEvent"},"Classes/DurationChangeEvent.html#/s:13THEOplayerSDK19DurationChangeEventC8durationSdSgvp":{"name":"duration","abstract":"

    The new duration of the content, in seconds.

    ","parent_name":"DurationChangeEvent"},"Classes/ReadyStateEvent.html#/s:13THEOplayerSDK15ReadyStateEventC05readyD0AA0cD0Ovp":{"name":"readyState","abstract":"

    The ReadyState of the player.

    ","parent_name":"ReadyStateEvent"},"Classes/SourceChangeEvent.html#/s:13THEOplayerSDK17SourceChangeEventC6sourceAA0C11DescriptionCSgvp":{"name":"source","abstract":"

    The new SourceDescription that was set.

    ","parent_name":"SourceChangeEvent"},"Structs/PlayerEventTypes.html#/s:13THEOplayerSDK16PlayerEventTypesV4PLAYAA0D4TypeCyAA04PlayD0CGvpZ":{"name":"PLAY","abstract":"

    Fired when PlayEvent occurs.

    ","parent_name":"PlayerEventTypes"},"Structs/PlayerEventTypes.html#/s:13THEOplayerSDK16PlayerEventTypesV7PLAYINGAA0D4TypeCyAA07PlayingD0CGvpZ":{"name":"PLAYING","abstract":"

    Fired when PlayingEvent occurs.

    ","parent_name":"PlayerEventTypes"},"Structs/PlayerEventTypes.html#/s:13THEOplayerSDK16PlayerEventTypesV5PAUSEAA0D4TypeCyAA05PauseD0CGvpZ":{"name":"PAUSE","abstract":"

    Fired when PauseEvent occurs.

    ","parent_name":"PlayerEventTypes"},"Structs/PlayerEventTypes.html#/s:13THEOplayerSDK16PlayerEventTypesV8PROGRESSAA0D4TypeCyAA08ProgressD0CGvpZ":{"name":"PROGRESS","abstract":"

    Fired when ProgressEvent occurs.

    ","parent_name":"PlayerEventTypes"},"Structs/PlayerEventTypes.html#/s:13THEOplayerSDK16PlayerEventTypesV7SEEKINGAA0D4TypeCyAA07SeekingD0CGvpZ":{"name":"SEEKING","abstract":"

    Fired when SeekingEvent occurs.

    ","parent_name":"PlayerEventTypes"},"Structs/PlayerEventTypes.html#/s:13THEOplayerSDK16PlayerEventTypesV6SEEKEDAA0D4TypeCyAA06SeekedD0CGvpZ":{"name":"SEEKED","abstract":"

    Fired when SeekedEvent occurs.

    ","parent_name":"PlayerEventTypes"},"Structs/PlayerEventTypes.html#/s:13THEOplayerSDK16PlayerEventTypesV7WAITINGAA0D4TypeCyAA07WaitingD0CGvpZ":{"name":"WAITING","abstract":"

    Fired when WaitingEvent occurs.

    ","parent_name":"PlayerEventTypes"},"Structs/PlayerEventTypes.html#/s:13THEOplayerSDK16PlayerEventTypesV11TIME_UPDATEAA0D4TypeCyAA010TimeUpdateD0CGvpZ":{"name":"TIME_UPDATE","abstract":"

    Fired when TimeUpdateEvent occurs.

    ","parent_name":"PlayerEventTypes"},"Structs/PlayerEventTypes.html#/s:13THEOplayerSDK16PlayerEventTypesV5ENDEDAA0D4TypeCyAA05EndedD0CGvpZ":{"name":"ENDED","abstract":"

    Fired when EndedEvent occurs.

    ","parent_name":"PlayerEventTypes"},"Structs/PlayerEventTypes.html#/s:13THEOplayerSDK16PlayerEventTypesV11RATE_CHANGEAA0D4TypeCyAA010RateChangeD0CGvpZ":{"name":"RATE_CHANGE","abstract":"

    Fired when RateChangeEvent occurs.

    ","parent_name":"PlayerEventTypes"},"Structs/PlayerEventTypes.html#/s:13THEOplayerSDK16PlayerEventTypesV18READY_STATE_CHANGEAA0D4TypeCyAA016ReadyStateChangeD0CGvpZ":{"name":"READY_STATE_CHANGE","abstract":"

    Fired when ReadyStateChangeEvent occurs.

    ","parent_name":"PlayerEventTypes"},"Structs/PlayerEventTypes.html#/s:13THEOplayerSDK16PlayerEventTypesV16LOADED_META_DATAAA0D4TypeCyAA014LoadedMetaDataD0CGvpZ":{"name":"LOADED_META_DATA","abstract":"

    Fired when LoadedMetaDataEvent occurs.

    ","parent_name":"PlayerEventTypes"},"Structs/PlayerEventTypes.html#/s:13THEOplayerSDK16PlayerEventTypesV11LOADED_DATAAA0D4TypeCyAA010LoadedDataD0CGvpZ":{"name":"LOADED_DATA","abstract":"

    Fired when LoadedDataEvent occurs.

    ","parent_name":"PlayerEventTypes"},"Structs/PlayerEventTypes.html#/s:13THEOplayerSDK16PlayerEventTypesV10LOAD_STARTAA0D4TypeCyAA09LoadStartD0CGvpZ":{"name":"LOAD_START","abstract":"

    Fired when LoadStartEvent occurs.

    ","parent_name":"PlayerEventTypes"},"Structs/PlayerEventTypes.html#/s:13THEOplayerSDK16PlayerEventTypesV8CAN_PLAYAA0D4TypeCyAA07CanPlayD0CGvpZ":{"name":"CAN_PLAY","abstract":"

    Fired when CanPlayEvent occurs.

    ","parent_name":"PlayerEventTypes"},"Structs/PlayerEventTypes.html#/s:13THEOplayerSDK16PlayerEventTypesV16CAN_PLAY_THROUGHAA0D4TypeCyAA014CanPlayThroughD0CGvpZ":{"name":"CAN_PLAY_THROUGH","abstract":"

    Fired when CanPlayThroughEvent occurs.

    ","parent_name":"PlayerEventTypes"},"Structs/PlayerEventTypes.html#/s:13THEOplayerSDK16PlayerEventTypesV5ERRORAA0D4TypeCyAA05ErrorD0CGvpZ":{"name":"ERROR","abstract":"

    Fired when ErrorEvent occurs.

    ","parent_name":"PlayerEventTypes"},"Structs/PlayerEventTypes.html#/s:13THEOplayerSDK16PlayerEventTypesV15DURATION_CHANGEAA0D4TypeCyAA014DurationChangeD0CGvpZ":{"name":"DURATION_CHANGE","abstract":"

    Fired when DurationChangeEvent occurs.

    ","parent_name":"PlayerEventTypes"},"Structs/PlayerEventTypes.html#/s:13THEOplayerSDK16PlayerEventTypesV13SOURCE_CHANGEAA0D4TypeCyAA012SourceChangeD0CGvpZ":{"name":"SOURCE_CHANGE","abstract":"

    Fired when SourceChangeEvent occurs.

    ","parent_name":"PlayerEventTypes"},"Structs/PlayerEventTypes.html#/s:13THEOplayerSDK16PlayerEventTypesV21CURRENT_SOURCE_CHANGEAA0D4TypeCyAA019CurrentSourceChangeD0CGvpZ":{"name":"CURRENT_SOURCE_CHANGE","abstract":"

    Fired when the current source, which is chosen from SourceDescription.sources, changes.

    ","parent_name":"PlayerEventTypes"},"Structs/PlayerEventTypes.html#/s:13THEOplayerSDK16PlayerEventTypesV24PRESENTATION_MODE_CHANGEAA0D4TypeCyAA022PresentationModeChangeD0CGvpZ":{"name":"PRESENTATION_MODE_CHANGE","abstract":"

    Fired when PresentationModeChangeEvent occurs.

    ","parent_name":"PlayerEventTypes"},"Structs/PlayerEventTypes.html#/s:13THEOplayerSDK16PlayerEventTypesV19ASPECT_RATIO_CHANGEAA0D4TypeCyAA017AspectRatioChangeD0CGvpZ":{"name":"ASPECT_RATIO_CHANGE","abstract":"

    Fired when AspectRatioChangeEvent occurs.

    ","parent_name":"PlayerEventTypes"},"Structs/PlayerEventTypes.html#/s:13THEOplayerSDK16PlayerEventTypesV13VOLUME_CHANGEAA0D4TypeCyAA012VolumeChangeD0CGvpZ":{"name":"VOLUME_CHANGE","abstract":"

    Fired when VolumeChangeEvent occurs.

    ","parent_name":"PlayerEventTypes"},"Structs/PlayerEventTypes.html#/s:13THEOplayerSDK16PlayerEventTypesV6RESIZEAA0D4TypeCyAA06ResizeD0CGvpZ":{"name":"RESIZE","abstract":"

    Fired when ResizeEvent occurs.

    ","parent_name":"PlayerEventTypes"},"Structs/PlayerEventTypes.html#/s:13THEOplayerSDK16PlayerEventTypesV7DESTROYAA0D4TypeCyAA07DestroyD0CGvpZ":{"name":"DESTROY","abstract":"

    Fired when DestroyEvent occurs.

    ","parent_name":"PlayerEventTypes"},"Structs/PlayerEventTypes.html#/s:13THEOplayerSDK16PlayerEventTypesV9ENCRYPTEDAA0D4TypeCyAA09EncryptedD0CGvpZ":{"name":"ENCRYPTED","abstract":"

    Fired when the player encounters key system initialization data in the media data.

    ","parent_name":"PlayerEventTypes"},"Structs/PlayerEventTypes.html#/s:13THEOplayerSDK16PlayerEventTypesV26CONTENT_PROTECTION_SUCCESSAA0D4TypeCyAA024ContentProtectionSuccessD0CGvpZ":{"name":"CONTENT_PROTECTION_SUCCESS","abstract":"

    Fired when the key is usable for decryption.

    ","parent_name":"PlayerEventTypes"},"Structs/PlayerEventTypes.html":{"name":"PlayerEventTypes","abstract":"

    The types of Player events.

    "},"Classes/SourceChangeEvent.html":{"name":"SourceChangeEvent","abstract":"

    Fired when PlayerEventTypes.SOURCE_CHANGE occurs for the THEOplayer.

    "},"Classes/ReadyStateEvent.html":{"name":"ReadyStateEvent","abstract":"

    The base event for all events that change the ReadyState of the player.

    "},"Player%20Events.html#/c:@M@THEOplayerSDK@objc(cs)PlayEvent":{"name":"PlayEvent","abstract":"

    Fired when PlayerEventTypes.PLAY occurs for the THEOplayer.

    "},"Player%20Events.html#/c:@M@THEOplayerSDK@objc(cs)PlayingEvent":{"name":"PlayingEvent","abstract":"

    Fired when PlayerEventTypes.PLAYING occurs for the THEOplayer.

    "},"Player%20Events.html#/c:@M@THEOplayerSDK@objc(cs)PauseEvent":{"name":"PauseEvent","abstract":"

    Fired when PlayerEventTypes.PAUSE occurs for the THEOplayer.

    "},"Player%20Events.html#/c:@M@THEOplayerSDK@objc(cs)ProgressEvent":{"name":"ProgressEvent","abstract":"

    Fired when PlayerEventTypes.PROGRESS occurs for the THEOplayer.

    "},"Classes/DurationChangeEvent.html":{"name":"DurationChangeEvent","abstract":"

    Fired when PlayerEventTypes.DURATION_CHANGE occurs for the THEOplayer.

    "},"Player%20Events.html#/c:@M@THEOplayerSDK@objc(cs)SeekingEvent":{"name":"SeekingEvent","abstract":"

    Fired when PlayerEventTypes.SEEKING occurs for the THEOplayer.

    "},"Player%20Events.html#/c:@M@THEOplayerSDK@objc(cs)SeekedEvent":{"name":"SeekedEvent","abstract":"

    Fired when PlayerEventTypes.SEEKED occurs for the THEOplayer.

    "},"Player%20Events.html#/c:@M@THEOplayerSDK@objc(cs)WaitingEvent":{"name":"WaitingEvent","abstract":"

    Fired when PlayerEventTypes.WAITING occurs for the THEOplayer.

    "},"Classes/TimeUpdateEvent.html":{"name":"TimeUpdateEvent","abstract":"

    Fired when PlayerEventTypes.TIME_UPDATE occurs for the THEOplayer.

    "},"Player%20Events.html#/c:@M@THEOplayerSDK@objc(cs)EndedEvent":{"name":"EndedEvent","abstract":"

    Fired when PlayerEventTypes.ENDED occurs for the THEOplayer.

    "},"Classes/RateChangeEvent.html":{"name":"RateChangeEvent","abstract":"

    Fired when PlayerEventTypes.RATE_CHANGE occurs for the THEOplayer.

    "},"Player%20Events.html#/c:@M@THEOplayerSDK@objc(cs)ReadyStateChangeEvent":{"name":"ReadyStateChangeEvent","abstract":"

    Fired when PlayerEventTypes.READY_STATE_CHANGE occurs for the THEOplayer.

    "},"Player%20Events.html#/c:@M@THEOplayerSDK@objc(cs)LoadedMetaDataEvent":{"name":"LoadedMetaDataEvent","abstract":"

    Fired when PlayerEventTypes.LOADED_META_DATA occurs for the THEOplayer.

    "},"Player%20Events.html#/c:@M@THEOplayerSDK@objc(cs)LoadedDataEvent":{"name":"LoadedDataEvent","abstract":"

    Fired when PlayerEventTypes.LOADED_DATA occurs for the THEOplayer.

    "},"Player%20Events.html#/c:@M@THEOplayerSDK@objc(cs)CanPlayEvent":{"name":"CanPlayEvent","abstract":"

    Fired when PlayerEventTypes.CAN_PLAY occurs for the THEOplayer.

    "},"Player%20Events.html#/c:@M@THEOplayerSDK@objc(cs)CanPlayThroughEvent":{"name":"CanPlayThroughEvent","abstract":"

    Fired when PlayerEventTypes.CAN_PLAY_THROUGH occurs for the THEOplayer.

    "},"Classes/ErrorEvent.html":{"name":"ErrorEvent","abstract":"

    Fired when PlayerEventTypes.ERROR occurs for the THEOplayer.

    "},"Classes/PresentationModeChangeEvent.html":{"name":"PresentationModeChangeEvent","abstract":"

    Fired when PlayerEventTypes.PRESENTATION_MODE_CHANGE occurs for the THEOplayer.

    "},"Classes/VolumeChangeEvent.html":{"name":"VolumeChangeEvent","abstract":"

    Fired when PlayerEventTypes.VOLUME_CHANGE occurs for the THEOplayer.

    "},"Player%20Events.html#/c:@M@THEOplayerSDK@objc(cs)ResizeEvent":{"name":"ResizeEvent","abstract":"

    Fired when PlayerEventTypes.RESIZE occurs for the THEOplayer.

    "},"Player%20Events.html#/c:@M@THEOplayerSDK@objc(cs)LoadStartEvent":{"name":"LoadStartEvent","abstract":"

    Fired when PlayerEventTypes.LOAD_START occurs for the THEOplayer.

    "},"Player%20Events.html#/c:@M@THEOplayerSDK@objc(cs)DestroyEvent":{"name":"DestroyEvent","abstract":"

    Fired when PlayerEventTypes.DESTROY occurs for the THEOplayer.

    "},"Protocols/BackgroundPlaybackDelegate.html#/s:13THEOplayerSDK26BackgroundPlaybackDelegateP019shouldContinueAudiod2InC0SbyF":{"name":"shouldContinueAudioPlaybackInBackground()","abstract":"

    Decides whether audio should continue playing when the application goes to background and the video is not visible anymore.

    ","parent_name":"BackgroundPlaybackDelegate"},"Classes/Metrics.html#/s:13THEOplayerSDK7MetricsC18droppedVideoFramesSivp":{"name":"droppedVideoFrames","abstract":"

    The total number of dropped video frames.

    ","parent_name":"Metrics"},"Classes/Metrics.html#/s:13THEOplayerSDK7MetricsC17renderedFramerateSdvp":{"name":"renderedFramerate","abstract":"

    The rendered frame rate of the video as it plays, in units of frames per second.

    ","parent_name":"Metrics"},"Enums/Preload.html#/s:13THEOplayerSDK7PreloadO4noneyA2CmF":{"name":"none","abstract":"

    The player will not load any data.

    ","parent_name":"Preload"},"Enums/Preload.html#/s:13THEOplayerSDK7PreloadO4autoyA2CmF":{"name":"auto","abstract":"

    The player will load the metadata and the media.

    ","parent_name":"Preload"},"Enums/Preload.html#/s:13THEOplayerSDK7PreloadO8metadatayA2CmF":{"name":"metadata","abstract":"

    The player will load the metadata.

    ","parent_name":"Preload"},"Enums/Preload.html#/s:13THEOplayerSDK7PreloadO9_rawValueSSvp":{"name":"_rawValue","abstract":"

    The raw value of type String.

    ","parent_name":"Preload"},"Enums/PresentationMode.html#/s:13THEOplayerSDK16PresentationModeO6inlineyA2CmF":{"name":"inline","abstract":"

    The player is shown in its original location in the view.

    ","parent_name":"PresentationMode"},"Enums/PresentationMode.html#/s:13THEOplayerSDK16PresentationModeO10fullscreenyA2CmF":{"name":"fullscreen","abstract":"

    The player fills the entire screen and overlays all the other view controllers.

    ","parent_name":"PresentationMode"},"Enums/PresentationMode.html#/s:13THEOplayerSDK16PresentationModeO16pictureInPictureyA2CmF":{"name":"pictureInPicture","abstract":"

    The player is shown in a window that overlays all the views. Further configurations can be made through PictureInPicture.configure

    ","parent_name":"PresentationMode"},"Enums/PresentationMode.html#/s:13THEOplayerSDK16PresentationModeO9_rawValueSSvp":{"name":"_rawValue","abstract":"

    The raw value of type String.

    ","parent_name":"PresentationMode"},"Enums/ReadyState.html#/s:13THEOplayerSDK10ReadyStateO12HAVE_NOTHINGyA2CmF":{"name":"HAVE_NOTHING","abstract":"

    The player has no information about the duration of its source.

    ","parent_name":"ReadyState"},"Enums/ReadyState.html#/s:13THEOplayerSDK10ReadyStateO13HAVE_METADATAyA2CmF":{"name":"HAVE_METADATA","abstract":"

    The player has information about the duration of its source.

    ","parent_name":"ReadyState"},"Enums/ReadyState.html#/s:13THEOplayerSDK10ReadyStateO17HAVE_CURRENT_DATAyA2CmF":{"name":"HAVE_CURRENT_DATA","abstract":"

    The player has its current frame in its buffer.

    ","parent_name":"ReadyState"},"Enums/ReadyState.html#/s:13THEOplayerSDK10ReadyStateO16HAVE_FUTURE_DATAyA2CmF":{"name":"HAVE_FUTURE_DATA","abstract":"

    The player has enough data for the current playback position, as well as for at least a little bit of time into the future (at least two frames of video, for example).

    ","parent_name":"ReadyState"},"Enums/ReadyState.html#/s:13THEOplayerSDK10ReadyStateO16HAVE_ENOUGH_DATAyA2CmF":{"name":"HAVE_ENOUGH_DATA","abstract":"

    The player has enough data available, and the download rate is high enough that the media can be played through to the end without interruption.

    ","parent_name":"ReadyState"},"Protocols/Cast.html#/s:13THEOplayerSDK4CastP7castingSbvp":{"name":"casting","abstract":"

    Whether THEOplayer is currently connected with a casting device.

    ","parent_name":"Cast"},"Protocols/Cast.html#/s:13THEOplayerSDK4CastP10chromecastAA10Chromecast_pSgvp":{"name":"chromecast","abstract":"

    A Chromecast integration object that allows you to cast to Chromecast and inspect its state.

    ","parent_name":"Cast"},"Protocols/Cast.html#/s:13THEOplayerSDK4CastP7airPlayAA03AirE0_pSgvp":{"name":"airPlay","abstract":"

    An AirPlay integration object that allows you to cast to AirPlay and inspect its state.

    ","parent_name":"Cast"},"Classes/THEOplayerConfiguration.html#/s:13THEOplayerSDK0A13ConfigurationC12hlsDateRangeSbSgvp":{"name":"hlsDateRange","abstract":"

    Whether the logic to expose date ranges parsed from HLS manifests is enabled.

    ","parent_name":"THEOplayerConfiguration"},"Classes/THEOplayerConfiguration.html#/s:13THEOplayerSDK0A13ConfigurationC7licenseSSSgvp":{"name":"license","abstract":"

    The license for the player.

    ","parent_name":"THEOplayerConfiguration"},"Classes/THEOplayerConfiguration.html#/s:13THEOplayerSDK0A13ConfigurationC10licenseUrlSSSgvp":{"name":"licenseUrl","abstract":"

    The url to fetch the license for the player.

    ","parent_name":"THEOplayerConfiguration"},"Classes/THEOplayerConfiguration.html#/s:13THEOplayerSDK0A13ConfigurationC3pipAA16PiPConfigurationCSgvp":{"name":"pip","abstract":"

    The picture in picture configuration of the player.

    ","parent_name":"THEOplayerConfiguration"},"Classes/THEOplayerConfiguration.html#/s:13THEOplayerSDK0A13ConfigurationC7networkAA07NetworkC0CSgvp":{"name":"network","abstract":"

    The network configuration of the player.

    ","parent_name":"THEOplayerConfiguration"},"Classes/THEOplayerConfiguration.html#/s:13THEOplayerSDK0A13ConfigurationC16autoIntegrationsSbvp":{"name":"autoIntegrations","abstract":"

    Flag that enables the player to automatically look for THEOplayer integration libraries (e.g. THEOlive) and register those on the player instance.","parent_name":"THEOplayerConfiguration"},"Classes/THEOplayerConfiguration.html#/s:13THEOplayerSDK0A13ConfigurationC3uidSiSgvp":{"name":"uid","abstract":"

    The unique identifier of the player.

    ","parent_name":"THEOplayerConfiguration"},"Classes/THEOplayerConfiguration.html#/s:13THEOplayerSDK0A13ConfigurationC6encode2toys7Encoder_p_tKF":{"name":"encode(to:)","abstract":"

    :nodoc

    ","parent_name":"THEOplayerConfiguration"},"Classes/THEOplayer.html#/s:13THEOplayerSDK0A0C26backgroundPlaybackDelegateAA010BackgrounddE0_pSgvp":{"name":"backgroundPlaybackDelegate","abstract":"

    The delegate defining behavior for background playback

    ","parent_name":"THEOplayer"},"Classes/THEOplayer.html#/s:13THEOplayerSDK0A0C4with13configurationACSo6CGRectVSg_AA0A13ConfigurationCSgtcfc":{"name":"init(with:configuration:)","abstract":"

    Create a new instance of THEOplayer with a frame.

    ","parent_name":"THEOplayer"},"Classes/THEOplayer.html#/s:13THEOplayerSDK0A0C7versionSSvpZ":{"name":"version","abstract":"

    THEOplayer’s Version.

    ","parent_name":"THEOplayer"},"Classes/THEOplayer.html#/s:13THEOplayerSDK0A0C5frameSo6CGRectVvp":{"name":"frame","abstract":"

    The frame rectangle, which describes the THEOplayer view’s location and size in its superview’s coordinate system.

    ","parent_name":"THEOplayer"},"Classes/THEOplayer.html#/s:13THEOplayerSDK0A0C6boundsSo6CGRectVvp":{"name":"bounds","abstract":"

    The bounds rectangle, which describes the THEOplayer view’s location and size in its own coordinate system.

    ","parent_name":"THEOplayer"},"Classes/THEOplayer.html#/s:13THEOplayerSDK0A0C6centerSo7CGPointVvp":{"name":"center","abstract":"

    The center of the THEOplayer view’s frame.

    ","parent_name":"THEOplayer"},"Classes/THEOplayer.html#/s:13THEOplayerSDK0A0C16autoresizingMaskSo18UIViewAutoresizingVvp":{"name":"autoresizingMask","abstract":"

    An integer bit mask that determines how the THEOplayer view resizes itself when its superview’s bounds change.

    ","parent_name":"THEOplayer"},"Classes/THEOplayer.html#/s:13THEOplayerSDK0A0C11videoHeightSivp":{"name":"videoHeight","abstract":"

    Returns the height of the video in pixels for the current quality.

    ","parent_name":"THEOplayer"},"Classes/THEOplayer.html#/s:13THEOplayerSDK0A0C10videoWidthSivp":{"name":"videoWidth","abstract":"

    Returns the width of the video in pixels for the current quality.

    ","parent_name":"THEOplayer"},"Classes/THEOplayer.html#/c:@M@THEOplayerSDK@objc(cs)THEOplayer(py)videoRect":{"name":"videoRect","abstract":"

    Returns the current size and position of the video image as displayed within the receiver’s bounds.

    ","parent_name":"THEOplayer"},"Classes/THEOplayer.html#/s:13THEOplayerSDK0A0C23resizeTransitionEnabledSbvp":{"name":"resizeTransitionEnabled","abstract":"

    Enables or disables the transition animation when resizing the player. Defaults to true.

    ","parent_name":"THEOplayer"},"Classes/THEOplayer.html#/s:13THEOplayerSDK0A0C3abrAA16ABRConfiguration_pvp":{"name":"abr","abstract":"

    Allows you to modify the player’s ABR behavior. See documentation for ABRConfiguration to see how this is done.

    ","parent_name":"THEOplayer"},"Classes/THEOplayer.html#/s:13THEOplayerSDK0A0C11aspectRatioAA06AspectD0Ovp":{"name":"aspectRatio","abstract":"

    Specifies how to handle the aspect ratio of the content.

    ","parent_name":"THEOplayer"},"Classes/THEOplayer.html#/s:13THEOplayerSDK0A0C7networkAA7Network_pvp":{"name":"network","abstract":"

    The network status of the player which can be used to monitor the network related errors.

    ","parent_name":"THEOplayer"},"Classes/THEOplayer.html#/s:13THEOplayerSDK0A0C10textTracksAA13TextTrackList_pvp":{"name":"textTracks","abstract":"

    The list of Text Tracks.

    ","parent_name":"THEOplayer"},"Classes/THEOplayer.html#/s:13THEOplayerSDK0A0C11audioTracksAA14AudioTrackList_pvp":{"name":"audioTracks","abstract":"

    The list of Audio Tracks.

    ","parent_name":"THEOplayer"},"Classes/THEOplayer.html#/s:13THEOplayerSDK0A0C11videoTracksAA14VideoTrackList_pvp":{"name":"videoTracks","abstract":"

    The list of Video Tracks.

    ","parent_name":"THEOplayer"},"Classes/THEOplayer.html#/s:13THEOplayerSDK0A0C8durationSdSgvp":{"name":"duration","abstract":"

    The length of the currently loaded video, in seconds.

    ","parent_name":"THEOplayer"},"Classes/THEOplayer.html#/s:13THEOplayerSDK0A0C8autoplaySbvp":{"name":"autoplay","abstract":"

    Sets or returns if the video should automatically start playing.

    ","parent_name":"THEOplayer"},"Classes/THEOplayer.html#/s:13THEOplayerSDK0A0C6sourceAA17SourceDescriptionCSgvp":{"name":"source","abstract":"

    Sets or returns the current source of the video.

    ","parent_name":"THEOplayer"},"Classes/THEOplayer.html#/s:13THEOplayerSDK0A0C3srcSSSgvp":{"name":"src","abstract":"

    Returns the current source URL of the video.

    ","parent_name":"THEOplayer"},"Classes/THEOplayer.html#/s:13THEOplayerSDK0A0C6volumeSfvp":{"name":"volume","abstract":"

    Sets or returns the volume of the video.

    ","parent_name":"THEOplayer"},"Classes/THEOplayer.html#/s:13THEOplayerSDK0A0C5mutedSbvp":{"name":"muted","abstract":"

    Sets or returns whether the audio output of the video is muted.

    ","parent_name":"THEOplayer"},"Classes/THEOplayer.html#/s:13THEOplayerSDK0A0C7seekingSbvp":{"name":"seeking","abstract":"

    Return whether the video is seeking.

    ","parent_name":"THEOplayer"},"Classes/THEOplayer.html#/s:13THEOplayerSDK0A0C6pausedSbvp":{"name":"paused","abstract":"

    Returns whether the video is paused.

    ","parent_name":"THEOplayer"},"Classes/THEOplayer.html#/s:13THEOplayerSDK0A0C5endedSbvp":{"name":"ended","abstract":"

    Returns whether the video has ended.

    ","parent_name":"THEOplayer"},"Classes/THEOplayer.html#/s:13THEOplayerSDK0A0C39preventsDisplaySleepDuringVideoPlaybackSbvp":{"name":"preventsDisplaySleepDuringVideoPlayback","abstract":"

    Prevents the display from sleeping during video playback. Defaults to true.

    ","parent_name":"THEOplayer"},"Classes/THEOplayer.html#/s:13THEOplayerSDK0A0C22allowsExternalPlaybackSbvp":{"name":"allowsExternalPlayback","abstract":"

    Whether to allow the player to playback externally (Airplay).","parent_name":"THEOplayer"},"Classes/THEOplayer.html#/s:13THEOplayerSDK0A0C7preloadAA7PreloadOvp":{"name":"preload","abstract":"

    Returns whether the player should preload a certain type of data.

    ","parent_name":"THEOplayer"},"Classes/THEOplayer.html#/s:13THEOplayerSDK0A0C12playbackRateSdvp":{"name":"playbackRate","abstract":"

    Returns current playback rate of the player.

    ","parent_name":"THEOplayer"},"Classes/THEOplayer.html#/s:13THEOplayerSDK0A0C8bufferedSayAA9TimeRangeCGvp":{"name":"buffered","abstract":"

    Returns the buffered TimeRanges of the player.

    ","parent_name":"THEOplayer"},"Classes/THEOplayer.html#/s:13THEOplayerSDK0A0C6playedSayAA9TimeRangeCGvp":{"name":"played","abstract":"

    Returns the played TimeRanges of the player.

    ","parent_name":"THEOplayer"},"Classes/THEOplayer.html#/s:13THEOplayerSDK0A0C8seekableSayAA9TimeRangeCGvp":{"name":"seekable","abstract":"

    Returns the seekable TimeRanges of the player.

    ","parent_name":"THEOplayer"},"Classes/THEOplayer.html#/s:13THEOplayerSDK0A0C7metricsypSgvp":{"name":"metrics","abstract":"

    Returns the Metrics data.

    ","parent_name":"THEOplayer"},"Classes/THEOplayer.html#/s:13THEOplayerSDK0A0C13playerMetricsAA0D0Cvp":{"name":"playerMetrics","abstract":"

    The metrics API.

    ","parent_name":"THEOplayer"},"Classes/THEOplayer.html#/s:13THEOplayerSDK0A0C16presentationModeAA012PresentationD0Ovp":{"name":"presentationMode","abstract":"

    Sets or returns the presentationMode of the player.

    ","parent_name":"THEOplayer"},"Classes/THEOplayer.html#/s:13THEOplayerSDK0A0C10readyStateAA05ReadyD0Ovp":{"name":"readyState","abstract":"

    Returns the readystate of the player.

    ","parent_name":"THEOplayer"},"Classes/THEOplayer.html#/s:13THEOplayerSDK0A0C5errorSSSgvp":{"name":"error","abstract":"

    Returns the last encountered player error.

    ","parent_name":"THEOplayer"},"Classes/THEOplayer.html#/s:13THEOplayerSDK0A0C3uidSivp":{"name":"uid","abstract":"

    Returns the unique ID of the player

    ","parent_name":"THEOplayer"},"Classes/THEOplayer.html#/s:13THEOplayerSDK0A0C11currentTimeSdvp":{"name":"currentTime","abstract":"

    The current playback position of the video, in seconds. Setting it allows to change the playback position.

    ","parent_name":"THEOplayer"},"Classes/THEOplayer.html#/s:13THEOplayerSDK0A0C22currentProgramDateTime10Foundation0E0VSgvp":{"name":"currentProgramDateTime","abstract":"

    Returns the current playback position of the media, as a timestamp.

    ","parent_name":"THEOplayer"},"Classes/THEOplayer.html#/s:13THEOplayerSDK0A0C31automaticallyManageAudioSessionSbvpZ":{"name":"automaticallyManageAudioSession","abstract":"

    Sets whether THEOplayer automatically manages the AVAudioSession.

    ","parent_name":"THEOplayer"},"Classes/THEOplayer.html#/s:13THEOplayerSDK0A0C4playyyF":{"name":"play()","abstract":"

    After invoking this method, the player starts playback.

    ","parent_name":"THEOplayer"},"Classes/THEOplayer.html#/s:13THEOplayerSDK0A0C5pauseyyF":{"name":"pause()","abstract":"

    After invoking this method, the player pauses playback.

    ","parent_name":"THEOplayer"},"Classes/THEOplayer.html#/s:13THEOplayerSDK0A0C4stop17completionHandleryySbSg_s5Error_pSgtcSg_tF":{"name":"stop(completionHandler:)","abstract":"

    After invoking this method, the player stops playback completely and unloads all loaded resources.

    ","parent_name":"THEOplayer"},"Classes/THEOplayer.html#/s:13THEOplayerSDK0A0C16addEventListener4type8listenerAA0dE0_pAA0D4TypeCyxG_yxctAA0D8ProtocolRzlF":{"name":"addEventListener(type:listener:)","abstract":"

    Adds the given event listener of the given PlayerEventType.

    ","parent_name":"THEOplayer"},"Classes/THEOplayer.html#/s:13THEOplayerSDK0A0C19removeEventListener4type8listeneryAA0D4TypeCyxG_AA0dE0_ptAA0D8ProtocolRzlF":{"name":"removeEventListener(type:listener:)","abstract":"

    Removes the given event listener of the given PlayerEventType.

    ","parent_name":"THEOplayer"},"Classes/THEOplayer.html#/s:13THEOplayerSDK0A0C14setCurrentTime_17completionHandlerySd_yypSg_s5Error_pSgtcSgtF":{"name":"setCurrentTime(_:completionHandler:)","abstract":"

    Sets the current playback position in the video.

    ","parent_name":"THEOplayer"},"Classes/THEOplayer.html#/s:13THEOplayerSDK0A0C25setCurrentProgramDateTime_17completionHandlery10Foundation0F0V_yypSg_s5Error_pSgtcSgtF":{"name":"setCurrentProgramDateTime(_:completionHandler:)","abstract":"

    Sets the current ProgramDateTime of the player.

    ","parent_name":"THEOplayer"},"Classes/THEOplayer.html#/s:13THEOplayerSDK0A0C12addAsSubview2ofySo6UIViewC_tF":{"name":"addAsSubview(of:)","abstract":"

    Adds the THEOplayer view to the end of the parameter view’s list of subviews.

    ","parent_name":"THEOplayer"},"Classes/THEOplayer.html#/s:13THEOplayerSDK0A0C15insertAsSubview2of2atySo6UIViewC_SitF":{"name":"insertAsSubview(of:at:)","abstract":"

    Inserts the THEOplayer view at the specified index of the parameter view’s list of subviews.

    ","parent_name":"THEOplayer"},"Classes/THEOplayer.html#/s:13THEOplayerSDK0A0C15insertAsSubview2of05belowE0ySo6UIViewC_AHtF":{"name":"insertAsSubview(of:belowSubview:)","abstract":"

    Inserts the THEOplayer view below another view in the parameter view’s hierarchy.

    ","parent_name":"THEOplayer"},"Classes/THEOplayer.html#/s:13THEOplayerSDK0A0C15insertAsSubview2of05aboveE0ySo6UIViewC_AHtF":{"name":"insertAsSubview(of:aboveSubview:)","abstract":"

    Inserts the THEOplayer view above another view in the parameter view’s hierarchy.

    ","parent_name":"THEOplayer"},"Classes/THEOplayer.html#/s:13THEOplayerSDK0A0C11isContained2inSbSaySo6UIViewCG_tF":{"name":"isContained(in:)","abstract":"

    Returns a Boolean value indicating whether THEOplayer is contained in the given array of UIview.

    ","parent_name":"THEOplayer"},"Classes/THEOplayer.html#/s:13THEOplayerSDK0A0C36registerContentProtectionIntegration13integrationId9keySystem0G7FactoryySS_AA03KeyjH0OAA0defK0_ptFZ":{"name":"registerContentProtectionIntegration(integrationId:keySystem:integrationFactory:)","abstract":"

    Register a content protection integration

    ","parent_name":"THEOplayer"},"Classes/THEOplayer.html#/s:13THEOplayerSDK0A0C14addIntegrationyyAA0D0_pF":{"name":"addIntegration(_:)","abstract":"

    Add an Integration to the THEOplayer instance .

    ","parent_name":"THEOplayer"},"Classes/THEOplayer.html#/s:13THEOplayerSDK0A0C17removeIntegrationyyAA0D0_pF":{"name":"removeIntegration(_:)","abstract":"

    Removes an Integration from the THEOplayer instance.

    ","parent_name":"THEOplayer"},"Classes/THEOplayer.html#/s:13THEOplayerSDK0A0C21removeAllIntegrationsyyF":{"name":"removeAllIntegrations()","abstract":"

    Removes all Integrations from the THEOplayer instance.

    ","parent_name":"THEOplayer"},"Classes/THEOplayer.html#/s:13THEOplayerSDK0A0C18getAllIntegrationsSayAA11Integration_pGyF":{"name":"getAllIntegrations()","abstract":"

    Returns all registered Integrations on the THEOplayer instance

    ","parent_name":"THEOplayer"},"Classes/THEOplayer.html#/s:13THEOplayerSDK0A0C20getIntegrationByKindyAA0D0_pSgAA0dF0OF":{"name":"getIntegrationByKind(_:)","abstract":"

    Returns the registered Integration on the THEOplayer instance of the specified kind. Returns nil if not found.

    ","parent_name":"THEOplayer"},"Classes/THEOplayer.html#/s:13THEOplayerSDK0A0C14textTrackStyleAA04TextdE0_pSgvp":{"name":"textTrackStyle","abstract":"

    API to configure TextTrack styles (for subtitles)

    ","parent_name":"THEOplayer"},"Classes/THEOplayer.html#/s:13THEOplayerSDK0A0C4castAA4Cast_pSgvp":{"name":"cast","abstract":"

    The Cast object helps you configure and control casting to external devices with THEOplayer.

    ","parent_name":"THEOplayer"},"Classes/THEOplayer.html#/s:13THEOplayerSDK0A0C10fullscreenAA10Fullscreen_pvp":{"name":"fullscreen","abstract":"

    The Fullscreen api of theoplayer.

    ","parent_name":"THEOplayer"},"Classes/THEOplayer.html#/s:13THEOplayerSDK0A0C20addGestureRecognizeryySo09UIGestureE0CF":{"name":"addGestureRecognizer(_:)","abstract":"

    Attaches a gesture recognizer to THEOplayer.

    ","parent_name":"THEOplayer"},"Classes/THEOplayer.html#/s:13THEOplayerSDK0A0C23removeGestureRecognizeryySo09UIGestureE0CF":{"name":"removeGestureRecognizer(_:)","abstract":"

    Detaches a gesture recognizer from THEOplayer.

    ","parent_name":"THEOplayer"},"Classes/THEOplayer.html#/s:13THEOplayerSDK0A0C18gestureRecognizersSaySo19UIGestureRecognizerCGSgvp":{"name":"gestureRecognizers","abstract":"

    List of the gesture recognizers attached to THEOplayer.

    ","parent_name":"THEOplayer"},"Classes/THEOplayer.html#/s:13THEOplayerSDK0A0C3adsAA3Ads_pvp":{"name":"ads","abstract":"

    An Ads object that contains information about the current and the scheduled advertisements.

    ","parent_name":"THEOplayer"},"Classes/THEOplayer.html#/s:13THEOplayerSDK0A0C3pipAA09PictureInD0_pSgvp":{"name":"pip","abstract":"

    A PictureInPicture object to configure Picture-In-Picture.

    ","parent_name":"THEOplayer"},"Classes/THEOplayer.html#/s:13THEOplayerSDK0A0C29fullscreenOrientationCouplingSbvp":{"name":"fullscreenOrientationCoupling","abstract":"

    Whether the fullscreen mode is coupled to device orientation, defaults to false.

    ","parent_name":"THEOplayer"},"Classes/THEOplayer.html#/s:13THEOplayerSDK0A0C5cacheAA5Cache_pvpZ":{"name":"cache","abstract":"

    The Cache object to access the caching API.

    ","parent_name":"THEOplayer"},"Classes/THEOplayer.html":{"name":"THEOplayer","abstract":"

    The THEOplayer object.

    "},"Classes/THEOplayerConfiguration.html":{"name":"THEOplayerConfiguration","abstract":"

    The configuration for a THEOplayer instance.

    "},"Protocols/Cast.html":{"name":"Cast","abstract":"

    The Cast object helps you configure and control casting to external devices with THEOplayer.

    "},"Enums/ReadyState.html":{"name":"ReadyState","abstract":"

    The ready state of the player.

    "},"Enums/PresentationMode.html":{"name":"PresentationMode","abstract":"

    The presentation mode specifies how the player will be displayed.

    "},"Enums/Preload.html":{"name":"Preload","abstract":"

    The preload strategy of the player. The strategy specifies what data to load on source change.

    "},"Classes/Metrics.html":{"name":"Metrics","abstract":"

    The metrics API which can be used to gather information related to the quality-of-service and video playback experience.

    "},"Protocols/BackgroundPlaybackDelegate.html":{"name":"BackgroundPlaybackDelegate","abstract":"

    A delegate defining behavior for background playback.

    "},"THEOplayer%20API.html":{"name":"THEOplayer API"},"Player%20Events.html":{"name":"Player Events"},"Track%20List%20API.html":{"name":"Track List API"},"Track%20List%20Events.html":{"name":"Track List Events"},"Track%20API.html":{"name":"Track API"},"Track%20Events.html":{"name":"Track Events"},"Text%20Track%20Cue%20API.html":{"name":"Text Track Cue API"},"Text%20Track%20Cue%20Events.html":{"name":"Text Track Cue Events"},"Text%20Track%20Styling%20API.html":{"name":"Text Track Styling API"},"Source%20Description%20API.html":{"name":"Source Description API"},"Content%20Protection.html":{"name":"Content Protection"},"SSAI.html":{"name":"SSAI"},"CSAI.html":{"name":"CSAI"},"Ads%20API.html":{"name":"Ads API"},"Ads%20Events.html":{"name":"Ads Events"},"ChromeCast%20API.html":{"name":"ChromeCast API"},"ChromeCast%20Events.html":{"name":"ChromeCast Events"},"Airplay%20API.html":{"name":"Airplay API"},"Airplay%20Events.html":{"name":"Airplay Events"},"Picture-In-Picture.html":{"name":"Picture-In-Picture"},"Fullscreen%20API.html":{"name":"Fullscreen API"},"Fullscreen%20Events.html":{"name":"Fullscreen Events"},"Network%20Events.html":{"name":"Network Events"},"Error%20API.html":{"name":"Error API"},"Cache%20API.html":{"name":"Cache API"},"Cache%20Events.html":{"name":"Cache Events"},"Adaptive%20Bit%20Rate%20API.html":{"name":"Adaptive Bit Rate API"},"External%20Content%20Protection%20integration%20API.html":{"name":"External Content Protection integration API"},"Util.html":{"name":"Util"},"Base%20classes%20%26%20interfaces.html":{"name":"Base classes & interfaces"},"Other%20Classes.html":{"name":"Other Classes","abstract":"

    The following classes are available globally.

    "},"Other%20Extensions.html":{"name":"Other Extensions","abstract":"

    The following extensions are available globally.

    "},"Other%20Protocols.html":{"name":"Other Protocols","abstract":"

    The following protocols are available globally.

    "},"Other%20Structs.html":{"name":"Other Structures","abstract":"

    The following structures are available globally.

    "}} \ No newline at end of file diff --git a/theoplayer/static/theoplayer/v10/api-reference/ios/undocumented.json b/theoplayer/static/theoplayer/v10/api-reference/ios/undocumented.json index 0cf5dedbf6e1..9c921a341d68 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/ios/undocumented.json +++ b/theoplayer/static/theoplayer/v10/api-reference/ios/undocumented.json @@ -1,1384 +1,1391 @@ { "warnings": [ { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Core/API/Ads/ServerSideAdIntegration.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Core/API/Ads/ServerSideAdIntegration.swift", "line": 26, "symbol": "AdInit.init(type:timeOffset:companions:id:skipOffset:resourceURI:width:height:duration:clickThrough:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Core/API/Ads/ServerSideAdIntegration.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Core/API/Ads/ServerSideAdIntegration.swift", "line": 48, "symbol": "AdBreakInit.init(timeOffset:maxDuration:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Core/API/Ads/ServerSideAdIntegration.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Core/API/Ads/ServerSideAdIntegration.swift", "line": 55, "symbol": "AdBreakInit.init(with:maxDuration:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Core/API/Ads/THEOAdDescription.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Core/API/Ads/THEOAdDescription.swift", "line": 61, "symbol": "THEOAdDescription.init(networkCode:customAssetKey:backdropDoubleBox:backdropLShape:overrideLayout:overrideAdSrc:adTagParameters:useId3:streamActivityMonitorId:sseEndpoint:retrievePodIdURI:initializationDelay:returnToLive:daiAssetKey:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Core/API/EventListener_API.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Core/API/EventListener_API.swift", "line": 7, "symbol": "EventListener", "symbol_kind": "source.lang.swift.decl.protocol", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Core/API/EventedArray.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Core/API/EventedArray.swift", "line": 11, "symbol": "EventedArray", "symbol_kind": "source.lang.swift.decl.class", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Core/API/ExternalContentProtectionIntegration/ContentProtectionIntegration.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Core/API/ExternalContentProtectionIntegration/ContentProtectionIntegration.swift", "line": 101, "symbol": "CertificateRequestCallback.request(request:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Core/API/ExternalContentProtectionIntegration/ContentProtectionIntegration.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Core/API/ExternalContentProtectionIntegration/ContentProtectionIntegration.swift", "line": 108, "symbol": "CertificateResponseCallback.respond(certificate:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Core/API/ExternalContentProtectionIntegration/ContentProtectionIntegration.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Core/API/ExternalContentProtectionIntegration/ContentProtectionIntegration.swift", "line": 109, "symbol": "CertificateResponseCallback.error(error:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Core/API/ExternalContentProtectionIntegration/ContentProtectionIntegration.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Core/API/ExternalContentProtectionIntegration/ContentProtectionIntegration.swift", "line": 116, "symbol": "LicenseRequestCallback.request(request:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Core/API/ExternalContentProtectionIntegration/ContentProtectionIntegration.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Core/API/ExternalContentProtectionIntegration/ContentProtectionIntegration.swift", "line": 123, "symbol": "LicenseResponseCallback.respond(license:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Core/API/ExternalContentProtectionIntegration/ContentProtectionIntegration.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Core/API/ExternalContentProtectionIntegration/ContentProtectionIntegration.swift", "line": 124, "symbol": "LicenseResponseCallback.error(error:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Core/API/ExternalContentProtectionIntegration/ContentProtectionIntegration.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Core/API/ExternalContentProtectionIntegration/ContentProtectionIntegration.swift", "line": 127, "symbol": "ExtractContentIdCallback", "symbol_kind": "source.lang.swift.decl.protocol", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Core/API/ExternalContentProtectionIntegration/ContentProtectionIntegrationFactory.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Core/API/ExternalContentProtectionIntegration/ContentProtectionIntegrationFactory.swift", "line": 13, "symbol": "ContentProtectionIntegrationFactory.build(configuration:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Core/API/ExternalContentProtectionIntegration/KeySystemId.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Core/API/ExternalContentProtectionIntegration/KeySystemId.swift", "line": 13, "symbol": "KeySystemId.WIDEVINE", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Core/API/ExternalContentProtectionIntegration/KeySystemId.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Core/API/ExternalContentProtectionIntegration/KeySystemId.swift", "line": 14, "symbol": "KeySystemId.FAIRPLAY", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Core/API/ExternalContentProtectionIntegration/KeySystemId.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Core/API/ExternalContentProtectionIntegration/KeySystemId.swift", "line": 15, "symbol": "KeySystemId.PLAYREADY", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Core/API/Network_API.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Core/API/Network_API.swift", "line": 12, "symbol": "HlsPlaylistType", "symbol_kind": "source.lang.swift.decl.enum", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Core/API/Network_API.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Core/API/Network_API.swift", "line": 114, "symbol": "Network", "symbol_kind": "source.lang.swift.decl.protocol", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Core/API/SourceDescription_API.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Core/API/SourceDescription_API.swift", "line": 211, "symbol": "SourceType", "symbol_kind": "source.lang.swift.decl.enum", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Core/API/THEOplayer_API.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Core/API/THEOplayer_API.swift", "line": 16, "symbol": "THEOplayer.isDestroyed", "symbol_kind": "source.lang.swift.decl.var.instance", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Core/API/TextTrackKind_API.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Core/API/TextTrackKind_API.swift", "line": 13, "symbol": "TextTrackKind.none", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Core/API/TextTrackKind_API.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Core/API/TextTrackKind_API.swift", "line": 92, "symbol": "TextTrackFormat.none", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Core/API/TypedSource_API.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Core/API/TypedSource_API.swift", "line": 11, "symbol": "CrossOrigin", "symbol_kind": "source.lang.swift.decl.enum", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Core/API/TypedSource_API.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Core/API/TypedSource_API.swift", "line": 17, "symbol": "CrossOrigin", "symbol_kind": "source.lang.swift.decl.extension", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Core/AVAssetResourceLoaderProxy.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Core/AVAssetResourceLoaderProxy.swift", "line": 286, "symbol": "AVAssetResourceLoaderProxy", "symbol_kind": "source.lang.swift.decl.extension", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Core/Event/Ads/AdsEvents.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Core/Event/Ads/AdsEvents.swift", "line": 11, "symbol": "AdEventProtocol", "symbol_kind": "source.lang.swift.decl.protocol", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Core/Event/Ads/AdsEvents.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Core/Event/Ads/AdsEvents.swift", "line": 15, "symbol": "AdErrorEventProtocol", "symbol_kind": "source.lang.swift.decl.protocol", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Core/Event/Ads/AdsEvents.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Core/Event/Ads/AdsEvents.swift", "line": 20, "symbol": "AdBreakEventProtocol", "symbol_kind": "source.lang.swift.decl.protocol", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Core/Event/Ads/AdsEvents.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Core/Event/Ads/AdsEvents.swift", "line": 24, "symbol": "AdEvent", "symbol_kind": "source.lang.swift.decl.class", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Core/Event/Ads/AdsEvents.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Core/Event/Ads/AdsEvents.swift", "line": 118, "symbol": "AdErrorEvent.ad", "symbol_kind": "source.lang.swift.decl.var.instance", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Core/Event/Ads/AdsEvents.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Core/Event/Ads/AdsEvents.swift", "line": 119, "symbol": "AdErrorEvent.error", "symbol_kind": "source.lang.swift.decl.var.instance", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Core/Event/Ads/AdsEvents.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Core/Event/Ads/AdsEvents.swift", "line": 164, "symbol": "AdBreakEvent", "symbol_kind": "source.lang.swift.decl.class", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Core/Event/DefaultEventDispatcher.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Core/Event/DefaultEventDispatcher.swift", "line": 129, "symbol": "EventDispatchManager", "symbol_kind": "source.lang.swift.decl.extension", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Core/Event/Network/NetworkEvents.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Core/Event/Network/NetworkEvents.swift", "line": 42, "symbol": "ExitBadNetworkModeEvent", "symbol_kind": "source.lang.swift.decl.class", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Core/Event/Network/NetworkEvents.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Core/Event/Network/NetworkEvents.swift", "line": 51, "symbol": "EnterBadNetworkModeEvent", "symbol_kind": "source.lang.swift.decl.class", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Core/Event/Player/PlayerEvents.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Core/Event/Player/PlayerEvents.swift", "line": 355, "symbol": "ErrorEvent.init(error:errorObject:source:date:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Core/Event/Player/PlayerEvents.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Core/Event/Player/PlayerEvents.swift", "line": 430, "symbol": "ResizeEvent.init(date:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Core/Event/Player/TrackLists/TextTrackList/TextTrack/Cue/CueEvents.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Core/Event/Player/TrackLists/TextTrackList/TextTrack/Cue/CueEvents.swift", "line": 14, "symbol": "CueEventProtocol.cue", "symbol_kind": "source.lang.swift.decl.var.instance", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Core/Event/Player/TrackLists/TextTrackList/TextTrack/TextTrackEvents.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Core/Event/Player/TrackLists/TextTrackList/TextTrack/TextTrackEvents.swift", "line": 36, "symbol": "TextTrackCueEventProtocol.cue", "symbol_kind": "source.lang.swift.decl.var.instance", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Core/Event/Player/TrackLists/TrackListEvents.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Core/Event/Player/TrackLists/TrackListEvents.swift", "line": 13, "symbol": "TrackEventProtocol.track", "symbol_kind": "source.lang.swift.decl.var.instance", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Core/Models/Error/AVPlayerErrorManager.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Core/Models/Error/AVPlayerErrorManager.swift", "line": 137, "symbol": "AVPlayerErrorManager", "symbol_kind": "source.lang.swift.decl.extension", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Core/Models/Error/Errors/GenericSwiftError.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Core/Models/Error/Errors/GenericSwiftError.swift", "line": 1, "symbol": "GenericSwiftError", "symbol_kind": "source.lang.swift.decl.struct", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Core/Models/Error/Errors/InvalidUrlError.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Core/Models/Error/Errors/InvalidUrlError.swift", "line": 1, "symbol": "InvalidUrlError", "symbol_kind": "source.lang.swift.decl.struct", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Core/Models/Player/Configurations/NetworkConfiguration.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Core/Models/Player/Configurations/NetworkConfiguration.swift", "line": 30, "symbol": "NetworkConfigurationBuilder.build()", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Core/Models/Player/Metrics/Metrics.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Core/Models/Player/Metrics/Metrics.swift", "line": 56, "symbol": "Metrics.init(withDroppedFrames:andCorruptedFrames:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Core/Models/Player/SourceDescription/Ads/AdDescription.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Core/Models/Player/SourceDescription/Ads/AdDescription.swift", "line": 23, "symbol": "AdIntegration.none", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Core/Models/Player/SourceDescription/Ads/AdDescription.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Core/Models/Player/SourceDescription/Ads/AdDescription.swift", "line": 24, "symbol": "AdIntegration.theoAds", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Core/Models/Player/SourceDescription/Ads/AdDescription.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Core/Models/Player/SourceDescription/Ads/AdDescription.swift", "line": 25, "symbol": "AdIntegration.google_ima", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Core/Models/Player/SourceDescription/DRMConfiguration/DRMConfiguration.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Core/Models/Player/SourceDescription/DRMConfiguration/DRMConfiguration.swift", "line": 137, "symbol": "FairPlayDRMConfigurationProtocol.fairplay", "symbol_kind": "source.lang.swift.decl.var.instance", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Core/Models/Player/SourceDescription/DRMConfiguration/DRMConfiguration.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Core/Models/Player/SourceDescription/DRMConfiguration/DRMConfiguration.swift", "line": 142, "symbol": "WidevineDRMConfigurationProtocol.widevine", "symbol_kind": "source.lang.swift.decl.var.instance", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Core/Models/Player/SourceDescription/DRMConfiguration/DRMConfiguration.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Core/Models/Player/SourceDescription/DRMConfiguration/DRMConfiguration.swift", "line": 147, "symbol": "LicenseType.none", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Core/Models/Player/SourceDescription/DRMConfiguration/DRMConfiguration.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Core/Models/Player/SourceDescription/DRMConfiguration/DRMConfiguration.swift", "line": 148, "symbol": "LicenseType.temporary", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Core/Models/Player/SourceDescription/DRMConfiguration/DRMConfiguration.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Core/Models/Player/SourceDescription/DRMConfiguration/DRMConfiguration.swift", "line": 149, "symbol": "LicenseType.persistent", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Core/Models/Player/SourceDescription/DRMConfiguration/DRMConfiguration.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Core/Models/Player/SourceDescription/DRMConfiguration/DRMConfiguration.swift", "line": 202, "symbol": "DRMIntegration.none", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Core/Models/Player/SourceDescription/DRMConfiguration/DRMConfiguration.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Core/Models/Player/SourceDescription/DRMConfiguration/DRMConfiguration.swift", "line": 203, "symbol": "DRMIntegration.azure", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Core/Models/Player/SourceDescription/DRMConfiguration/DRMConfiguration.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Core/Models/Player/SourceDescription/DRMConfiguration/DRMConfiguration.swift", "line": 204, "symbol": "DRMIntegration.uplynk", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Core/Models/Player/SourceDescription/DRMConfiguration/DRMConfiguration.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Core/Models/Player/SourceDescription/DRMConfiguration/DRMConfiguration.swift", "line": 205, "symbol": "DRMIntegration.vimond", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Core/Models/Player/SourceDescription/DRMConfiguration/DRMConfiguration.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Core/Models/Player/SourceDescription/DRMConfiguration/DRMConfiguration.swift", "line": 206, "symbol": "DRMIntegration.ezdrm", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Core/Models/Player/SourceDescription/DRMConfiguration/DRMConfiguration.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Core/Models/Player/SourceDescription/DRMConfiguration/DRMConfiguration.swift", "line": 207, "symbol": "DRMIntegration.axinom", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Core/Models/Player/SourceDescription/DRMConfiguration/DRMConfiguration.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Core/Models/Player/SourceDescription/DRMConfiguration/DRMConfiguration.swift", "line": 208, "symbol": "DRMIntegration.keyos", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Core/Models/Player/SourceDescription/DRMConfiguration/DRMConfiguration.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Core/Models/Player/SourceDescription/DRMConfiguration/DRMConfiguration.swift", "line": 209, "symbol": "DRMIntegration.verimatrix", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Core/Models/Player/SourceDescription/DRMConfiguration/DRMConfiguration.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Core/Models/Player/SourceDescription/DRMConfiguration/DRMConfiguration.swift", "line": 210, "symbol": "DRMIntegration.comcast", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Core/Models/Player/SourceDescription/DRMConfiguration/DRMConfiguration.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Core/Models/Player/SourceDescription/DRMConfiguration/DRMConfiguration.swift", "line": 211, "symbol": "DRMIntegration.irdeto", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Core/Models/Player/SourceDescription/DRMConfiguration/DRMConfiguration.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Core/Models/Player/SourceDescription/DRMConfiguration/DRMConfiguration.swift", "line": 212, "symbol": "DRMIntegration.drmtoday", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Core/Models/Player/SourceDescription/DRMConfiguration/DRMConfiguration.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Core/Models/Player/SourceDescription/DRMConfiguration/DRMConfiguration.swift", "line": 213, "symbol": "DRMIntegration.xstream", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Core/Models/Player/SourceDescription/DRMConfiguration/DRMConfiguration.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Core/Models/Player/SourceDescription/DRMConfiguration/DRMConfiguration.swift", "line": 214, "symbol": "DRMIntegration.vudrm", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Core/Models/Player/SourceDescription/DRMConfiguration/DRMConfiguration.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Core/Models/Player/SourceDescription/DRMConfiguration/DRMConfiguration.swift", "line": 215, "symbol": "DRMIntegration.custom", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Core/Models/Player/SourceDescription/DRMConfiguration/MultiplatformDRMConfiguration.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Core/Models/Player/SourceDescription/DRMConfiguration/MultiplatformDRMConfiguration.swift", "line": 128, "symbol": "MultiplatformDRMConfiguration.fairplay", "symbol_kind": "source.lang.swift.decl.var.instance", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Core/Models/Player/SourceDescription/SourceAbrConfiguration.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Core/Models/Player/SourceDescription/SourceAbrConfiguration.swift", "line": 22, "symbol": "SourceAbrConfiguration.init(maxBitrate:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Core/Models/Player/TrackList/Track/Cue/CustomAttribute.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Core/Models/Player/TrackList/Track/Cue/CustomAttribute.swift", "line": 68, "symbol": "DateRangeCustomAttributesError", "symbol_kind": "source.lang.swift.decl.enum", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Core/Models/Player/TrackList/Track/Cue/CustomAttribute.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Core/Models/Player/TrackList/Track/Cue/CustomAttribute.swift", "line": 103, "symbol": "CustomAttributes.getBase64EncodedStringToData(for:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Core/Models/Player/TrackList/Track/TextTrackMode.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Core/Models/Player/TrackList/Track/TextTrackMode.swift", "line": 12, "symbol": "TextTrackMode.showing", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Core/Models/Player/TrackList/Track/TextTrackMode.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Core/Models/Player/TrackList/Track/TextTrackMode.swift", "line": 13, "symbol": "TextTrackMode.hidden", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Core/Models/Player/TrackList/Track/TextTrackMode.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Core/Models/Player/TrackList/Track/TextTrackMode.swift", "line": 14, "symbol": "TextTrackMode.disabled", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Core/Models/Player/TrackList/Track/TextTrackMode.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Core/Models/Player/TrackList/Track/TextTrackMode.swift", "line": 33, "symbol": "TextTrackMode.init(_rawValue:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Core/Models/Presentation Mode/Fullscreen/FullscreenViewController.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Core/Models/Presentation Mode/Fullscreen/FullscreenViewController.swift", "line": 59, "symbol": "FullscreenViewController.viewDidLoad()", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Core/Models/Presentation Mode/Fullscreen/FullscreenViewController.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Core/Models/Presentation Mode/Fullscreen/FullscreenViewController.swift", "line": 75, "symbol": "FullscreenViewController.viewDidLayoutSubviews()", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Core/Models/Presentation Mode/Fullscreen/FullscreenViewController.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Core/Models/Presentation Mode/Fullscreen/FullscreenViewController.swift", "line": 80, "symbol": "FullscreenViewController.viewWillDisappear(_:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Core/Models/Presentation Mode/Fullscreen/FullscreenViewController.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Core/Models/Presentation Mode/Fullscreen/FullscreenViewController.swift", "line": 110, "symbol": "FullscreenViewController.supportedInterfaceOrientations", "symbol_kind": "source.lang.swift.decl.var.instance", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Core/Models/Presentation Mode/Fullscreen/FullscreenViewController.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Core/Models/Presentation Mode/Fullscreen/FullscreenViewController.swift", "line": 118, "symbol": "FullscreenViewController.prefersHomeIndicatorAutoHidden", "symbol_kind": "source.lang.swift.decl.var.instance", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Core/Models/Presentation Mode/Fullscreen/FullscreenViewController.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Core/Models/Presentation Mode/Fullscreen/FullscreenViewController.swift", "line": 122, "symbol": "FullscreenViewController.prefersStatusBarHidden", "symbol_kind": "source.lang.swift.decl.var.instance", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Core/Models/TimeRange.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Core/Models/TimeRange.swift", "line": 29, "symbol": "TimeRange.==(_:_:)", "symbol_kind": "source.lang.swift.decl.function.method.static", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Core/Models/TimeRange.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Core/Models/TimeRange.swift", "line": 33, "symbol": "TimeRange.isEqual(_:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Core/Models/TimeRange.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Core/Models/TimeRange.swift", "line": 38, "symbol": "TimeRange.contains(_:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Core/ServerSentEvents/EventSource.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Core/ServerSentEvents/EventSource.swift", "line": 161, "symbol": "EventSource.urlSession(_:task:didCompleteWithError:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Core/ServerSentEvents/EventSource.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Core/ServerSentEvents/EventSource.swift", "line": 165, "symbol": "EventSource.urlSession(_:dataTask:didReceive:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Core/ServerSentEvents/EventSource.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Core/ServerSentEvents/EventSource.swift", "line": 170, "symbol": "EventSource.urlSession(_:dataTask:didReceive:completionHandler:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Core/ServerSentEvents/EventSource.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Core/ServerSentEvents/EventSource.swift", "line": 229, "symbol": "EventSource.networkConnectionDidChange(state:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Core/Util/CodableExtensions.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Core/Util/CodableExtensions.swift", "line": 13, "symbol": "Encodable.toJSON()", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Core/Util/CodableExtensions.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Core/Util/CodableExtensions.swift", "line": 17, "symbol": "Encodable.toJSONString()", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Core/Util/CodableExtensions.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Core/Util/CodableExtensions.swift", "line": 21, "symbol": "Encodable.toJSONEncodableDictionary()", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Core/Util/CodableUtil.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Core/Util/CodableUtil.swift", "line": 24, "symbol": "serializeObjectToJSON(object:dateEncodingStrategy:)", "symbol_kind": "source.lang.swift.decl.function.free", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Core/Util/THEOArray.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Core/Util/THEOArray.swift", "line": 11, "symbol": "THEOArray", "symbol_kind": "source.lang.swift.decl.class", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Core/Util/THEOArray.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Core/Util/THEOArray.swift", "line": 23, "symbol": "THEOArray", "symbol_kind": "source.lang.swift.decl.extension", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Core/Util/THEOArray.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Core/Util/THEOArray.swift", "line": 51, "symbol": "THEOArray", "symbol_kind": "source.lang.swift.decl.extension", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Core/Util/THEOArray.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Core/Util/THEOArray.swift", "line": 146, "symbol": "THEOArray", "symbol_kind": "source.lang.swift.decl.extension", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Core/Util/THEOArray.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Core/Util/THEOArray.swift", "line": 160, "symbol": "THEOArray", "symbol_kind": "source.lang.swift.decl.extension", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Core/Utils/SwitchingAsyncSequence.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Core/Utils/SwitchingAsyncSequence.swift", "line": 31, "symbol": "SwitchingAsyncSequence", "symbol_kind": "source.lang.swift.decl.extension", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Native/API/THEOplayer_API+DeveloperSettings.swift", - "line": 12, + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Native/API/THEOplayer_API+DeveloperSettings.swift", + "line": 13, "symbol": "THEOplayer.developerSettings", "symbol_kind": "source.lang.swift.decl.var.instance", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Native/API/TextTrackStyle_API.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Native/API/TextTrackStyle_API.swift", "line": 86, "symbol": "TextTrackStyleRuleColor.init(_:textSelector:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Native/API/TextTrackStyle_API.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Native/API/TextTrackStyle_API.swift", "line": 108, "symbol": "TextTrackStyleRuleString.init(_:textSelector:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Native/API/TextTrackStyle_API.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Native/API/TextTrackStyle_API.swift", "line": 129, "symbol": "TextTrackStyleRuleNumber.init(_:textSelector:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Native/Models/Ads/SSAI/SsaiIntegrationController.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Native/Models/Ads/SSAI/SsaiIntegrationController.swift", "line": 177, "symbol": "SsaiIntegrationController", "symbol_kind": "source.lang.swift.decl.extension", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Native/Models/Ads/SSAI/SsaiIntegrationController.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Native/Models/Ads/SSAI/SsaiIntegrationController.swift", "line": 295, "symbol": "SsaiIntegrationController", "symbol_kind": "source.lang.swift.decl.extension", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Native/Models/Cache/CacheInternalNative.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Native/Models/Cache/CacheInternalNative.swift", "line": 138, "symbol": "CacheInternalNative", "symbol_kind": "source.lang.swift.decl.extension", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Native/Models/Cache/CacheInternalNative.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Native/Models/Cache/CacheInternalNative.swift", "line": 146, "symbol": "CacheInternalNative", "symbol_kind": "source.lang.swift.decl.extension", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Native/Models/Cache/CachingTaskInternalNative.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Native/Models/Cache/CachingTaskInternalNative.swift", "line": 276, "symbol": "CachingTaskInternalNative", "symbol_kind": "source.lang.swift.decl.extension", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Native/Models/Cache/CachingTaskInternalNative.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Native/Models/Cache/CachingTaskInternalNative.swift", "line": 282, "symbol": "CachingTaskInternalNative", "symbol_kind": "source.lang.swift.decl.extension", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Native/Models/Cache/CachingTaskInternalNative.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Native/Models/Cache/CachingTaskInternalNative.swift", "line": 339, "symbol": "CachingTaskInternalNative", "symbol_kind": "source.lang.swift.decl.extension", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Native/Models/Cache/StreamCacher.swift", - "line": 271, + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Native/Models/Cache/CachingTaskInternalNative.swift", + "line": 355, + "symbol": "CachingTaskInternalNative", + "symbol_kind": "source.lang.swift.decl.extension", + "warning": "undocumented" + }, + { + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Native/Models/Cache/StreamCacher.swift", + "line": 282, "symbol": "StreamCacher", "symbol_kind": "source.lang.swift.decl.extension", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Native/Models/Cache/StreamCacher.swift", - "line": 437, + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Native/Models/Cache/StreamCacher.swift", + "line": 448, "symbol": "StreamCacher", "symbol_kind": "source.lang.swift.decl.extension", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Native/Models/Integrations/Integration.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Native/Models/Integrations/Integration.swift", "line": 11, "symbol": "IntegrationError", "symbol_kind": "source.lang.swift.decl.enum", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Native/Models/Integrations/Integration.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Native/Models/Integrations/Integration.swift", "line": 15, "symbol": "IntegrationKind", "symbol_kind": "source.lang.swift.decl.enum", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Native/Models/Integrations/Integration.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Native/Models/Integrations/Integration.swift", "line": 56, "symbol": "Integration", "symbol_kind": "source.lang.swift.decl.protocol", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Native/Models/Integrations/IntegrationsContentPlayer.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Native/Models/Integrations/IntegrationsContentPlayer.swift", "line": 118, "symbol": "IntegrationsContentPlayer", "symbol_kind": "source.lang.swift.decl.extension", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Native/Models/Integrations/InternalIntegration.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Native/Models/Integrations/InternalIntegration.swift", "line": 11, "symbol": "InternalIntegrationActivationDelegate", "symbol_kind": "source.lang.swift.decl.protocol", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Native/Models/Integrations/InternalIntegration.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Native/Models/Integrations/InternalIntegration.swift", "line": 17, "symbol": "InternalIntegration", "symbol_kind": "source.lang.swift.decl.protocol", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Native/Models/License/License.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Native/Models/License/License.swift", "line": 174, "symbol": "License", "symbol_kind": "source.lang.swift.decl.extension", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Native/Models/Player/AVMediaItem.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Native/Models/Player/AVMediaItem.swift", "line": 371, "symbol": "AVMediaItem", "symbol_kind": "source.lang.swift.decl.extension", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Native/Models/Player/ContentPlayers/AVPlayerContentPlayerNative.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Native/Models/Player/ContentPlayers/AVPlayerContentPlayerNative.swift", "line": 1347, "symbol": "AVPlayerContentPlayerNative", "symbol_kind": "source.lang.swift.decl.extension", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Native/Models/Player/ContentPlayers/AVPlayerContentPlayerNative.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Native/Models/Player/ContentPlayers/AVPlayerContentPlayerNative.swift", "line": 1389, "symbol": "AVPlayerContentPlayerNative", "symbol_kind": "source.lang.swift.decl.extension", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Native/Models/Player/ContentPlayers/AVPlayerContentPlayerNative.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Native/Models/Player/ContentPlayers/AVPlayerContentPlayerNative.swift", "line": 1451, "symbol": "AVPlayerContentPlayerNative", "symbol_kind": "source.lang.swift.decl.extension", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Native/Models/Player/ContentPlayers/AVPlayerContentPlayerNative.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Native/Models/Player/ContentPlayers/AVPlayerContentPlayerNative.swift", "line": 1561, "symbol": "AVPlayerContentPlayerNative", "symbol_kind": "source.lang.swift.decl.extension", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Native/Models/Player/ContentPlayers/AVPlayerMetadataCollectorNative.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Native/Models/Player/ContentPlayers/AVPlayerMetadataCollectorNative.swift", "line": 125, "symbol": "AVPlayerMetadataCollectorNative", "symbol_kind": "source.lang.swift.decl.extension", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Native/Models/Player/ContentPlayers/AVPlayerMetadataOutputNative.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Native/Models/Player/ContentPlayers/AVPlayerMetadataOutputNative.swift", "line": 78, "symbol": "AVPlayerMetadataOutputNative", "symbol_kind": "source.lang.swift.decl.extension", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Native/Models/Player/ContentPlayers/AVPlayerTextTracksController.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Native/Models/Player/ContentPlayers/AVPlayerTextTracksController.swift", "line": 339, "symbol": "AVPlayerTextTracksController", "symbol_kind": "source.lang.swift.decl.extension", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Native/Models/Player/ContentPlayers/AVQueingContentPlayer.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Native/Models/Player/ContentPlayers/AVQueingContentPlayer.swift", "line": 469, "symbol": "AVQueuingContentPlayer", "symbol_kind": "source.lang.swift.decl.extension", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Native/Models/Player/ContentPlayers/ContentPlayerNative.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Native/Models/Player/ContentPlayers/ContentPlayerNative.swift", "line": 654, "symbol": "ContentPlayerNative", "symbol_kind": "source.lang.swift.decl.extension", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Native/Models/Player/ContentPlayers/ContentPlayerNative.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Native/Models/Player/ContentPlayers/ContentPlayerNative.swift", "line": 682, "symbol": "ContentPlayerNative", "symbol_kind": "source.lang.swift.decl.extension", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Native/Models/Player/ContentPlayers/DVRContentPlayer.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Native/Models/Player/ContentPlayers/DVRContentPlayer.swift", "line": 11, "symbol": "DVRIntegration", "symbol_kind": "source.lang.swift.decl.protocol", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Native/Models/Player/ContentPlayers/DVRContentPlayer.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Native/Models/Player/ContentPlayers/DVRContentPlayer.swift", "line": 453, "symbol": "DVRContentPlayer", "symbol_kind": "source.lang.swift.decl.extension", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Native/Models/Player/PlayerView/PlayerView.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Native/Models/Player/PlayerView/PlayerView.swift", "line": 376, "symbol": "PlayerView", "symbol_kind": "source.lang.swift.decl.extension", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Native/Models/Player/THEOplayerInternalNative.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Native/Models/Player/THEOplayerInternalNative.swift", "line": 12, "symbol": "THEOplayerInternalNative", "symbol_kind": "source.lang.swift.decl.extension", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Native/Models/Player/THEOplayerInternalNative.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Native/Models/Player/THEOplayerInternalNative.swift", "line": 909, "symbol": "THEOplayerInternalNative", "symbol_kind": "source.lang.swift.decl.extension", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Native/Models/Player/THEOplayerInternalNative.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Native/Models/Player/THEOplayerInternalNative.swift", "line": 920, "symbol": "THEOplayerInternalNative", "symbol_kind": "source.lang.swift.decl.extension", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Native/Models/Player/THEOplayerInternalNative.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Native/Models/Player/THEOplayerInternalNative.swift", "line": 930, "symbol": "THEOplayerInternalNative", "symbol_kind": "source.lang.swift.decl.extension", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Native/Models/Player/THEOplayerInternalNative.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Native/Models/Player/THEOplayerInternalNative.swift", "line": 954, "symbol": "THEOplayerInternalNative", "symbol_kind": "source.lang.swift.decl.extension", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Native/Models/Player/THEOplayerInternalNative.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Native/Models/Player/THEOplayerInternalNative.swift", "line": 961, "symbol": "THEOplayerInternalNative", "symbol_kind": "source.lang.swift.decl.extension", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Native/Models/Player/THEOplayerInternalNative.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Native/Models/Player/THEOplayerInternalNative.swift", "line": 999, "symbol": "THEOplayerInternalNative", "symbol_kind": "source.lang.swift.decl.extension", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Native/Models/Player/THEOplayerInternalNative.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Native/Models/Player/THEOplayerInternalNative.swift", "line": 1015, "symbol": "THEOplayerInternalNative", "symbol_kind": "source.lang.swift.decl.extension", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Native/Models/Player/THEOplayerInternalNative.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Native/Models/Player/THEOplayerInternalNative.swift", "line": 1027, "symbol": "THEOplayerInternalNative", "symbol_kind": "source.lang.swift.decl.extension", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Native/Models/Player/THEOplayerInternalNative.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Native/Models/Player/THEOplayerInternalNative.swift", "line": 1033, "symbol": "THEOplayerInternalNative", "symbol_kind": "source.lang.swift.decl.extension", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Native/Models/Player/THEOplayerInternalNative.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Native/Models/Player/THEOplayerInternalNative.swift", "line": 1057, "symbol": "THEOplayerInternalNative", "symbol_kind": "source.lang.swift.decl.extension", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Native/Models/Player/TrackCues/TextTrackCueImplNative.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Native/Models/Player/TrackCues/TextTrackCueImplNative.swift", "line": 38, "symbol": "TextTrackCueImplNative", "symbol_kind": "source.lang.swift.decl.extension", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Native/Models/Player/TrackLists/MediaTrackListImpl.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Native/Models/Player/TrackLists/MediaTrackListImpl.swift", "line": 92, "symbol": "MediaTrackListImpl", "symbol_kind": "source.lang.swift.decl.extension", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Native/Models/Player/TrackLists/MediaTrackListImpl.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Native/Models/Player/TrackLists/MediaTrackListImpl.swift", "line": 102, "symbol": "MediaTrackListImpl", "symbol_kind": "source.lang.swift.decl.extension", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Native/Models/Player/TrackLists/TextTrackListImplNative.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Native/Models/Player/TrackLists/TextTrackListImplNative.swift", "line": 214, "symbol": "TextTrackListImplNative", "symbol_kind": "source.lang.swift.decl.extension", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Native/Models/Player/TrackLists/TrackListRouter.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Native/Models/Player/TrackLists/TrackListRouter.swift", "line": 97, "symbol": "TrackListRouter", "symbol_kind": "source.lang.swift.decl.extension", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Native/Models/Player/TrackLists/TrackListRouter.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Native/Models/Player/TrackLists/TrackListRouter.swift", "line": 204, "symbol": "TextTrackListRouter", "symbol_kind": "source.lang.swift.decl.extension", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Native/Models/Player/Tracks/MediaTrackImpl.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Native/Models/Player/Tracks/MediaTrackImpl.swift", "line": 102, "symbol": "MediaTrackImpl", "symbol_kind": "source.lang.swift.decl.extension", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Native/Models/Player/Tracks/TextTrackImplNative.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Native/Models/Player/Tracks/TextTrackImplNative.swift", "line": 493, "symbol": "TextTrackImplNative", "symbol_kind": "source.lang.swift.decl.extension", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Native/Models/Presentation Mode/PictureInPicture/NativePictureInPictureControllerNative.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Native/Models/Presentation Mode/PictureInPicture/NativePictureInPictureControllerNative.swift", "line": 152, "symbol": "NativePictureInPictureControllerNative", "symbol_kind": "source.lang.swift.decl.extension", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Native/Models/Presentation Mode/PictureInPicture/NativePictureInPictureControllerNative.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Native/Models/Presentation Mode/PictureInPicture/NativePictureInPictureControllerNative.swift", "line": 208, "symbol": "NativePictureInPictureControllerNative", "symbol_kind": "source.lang.swift.decl.extension", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Native/iOS/Models/Cast/AirPlay/AirPlayImplNative.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Native/iOS/Models/Cast/AirPlay/AirPlayImplNative.swift", "line": 76, "symbol": "AirPlayImplNative", "symbol_kind": "source.lang.swift.decl.extension", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Native/iOS/Models/Cast/AirPlay/AirPlayImplNative.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Native/iOS/Models/Cast/AirPlay/AirPlayImplNative.swift", "line": 87, "symbol": "AirPlayImplNative", "symbol_kind": "source.lang.swift.decl.extension", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Native/iOS/Models/Player/Fullscreen/FullscreenImplNative.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Native/iOS/Models/Player/Fullscreen/FullscreenImplNative.swift", "line": 56, "symbol": "FullscreenImplNative", "symbol_kind": "source.lang.swift.decl.extension", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Native/iOS/Models/Player/THEOplayerInternalNative_iOS.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Native/iOS/Models/Player/THEOplayerInternalNative_iOS.swift", "line": 149, "symbol": "THEOplayerInternalNative_iOS", "symbol_kind": "source.lang.swift.decl.extension", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Native/iOS/Models/Player/THEOplayerInternalNative_iOS.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Native/iOS/Models/Player/THEOplayerInternalNative_iOS.swift", "line": 159, "symbol": "THEOplayerInternalNative_iOS", "symbol_kind": "source.lang.swift.decl.extension", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/Native/iOS/Models/Player/THEOplayerInternalNative_iOS.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/Native/iOS/Models/Player/THEOplayerInternalNative_iOS.swift", "line": 173, "symbol": "THEOplayerInternalNative_iOS", "symbol_kind": "source.lang.swift.decl.extension", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/iOS/API/Cache_API.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/iOS/API/Cache_API.swift", "line": 66, "symbol": "CacheStatus.uninitialised", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/iOS/API/Cache_API.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/iOS/API/Cache_API.swift", "line": 67, "symbol": "CacheStatus.initialised", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/iOS/API/Cache_API.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/iOS/API/Cache_API.swift", "line": 151, "symbol": "CachingParameters.init()", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/iOS/API/Cache_API.swift", - "line": 242, + "file": "/Users/distiller/project/ios/THEOplayer_SDK/iOS/API/Cache_API.swift", + "line": 245, "symbol": "CachingTaskStatus.idle", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/iOS/API/Cache_API.swift", - "line": 243, + "file": "/Users/distiller/project/ios/THEOplayer_SDK/iOS/API/Cache_API.swift", + "line": 246, "symbol": "CachingTaskStatus.loading", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/iOS/API/Cache_API.swift", - "line": 244, + "file": "/Users/distiller/project/ios/THEOplayer_SDK/iOS/API/Cache_API.swift", + "line": 247, "symbol": "CachingTaskStatus.done", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/iOS/API/Cache_API.swift", - "line": 245, + "file": "/Users/distiller/project/ios/THEOplayer_SDK/iOS/API/Cache_API.swift", + "line": 248, "symbol": "CachingTaskStatus.error", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/iOS/API/Cache_API.swift", - "line": 246, + "file": "/Users/distiller/project/ios/THEOplayer_SDK/iOS/API/Cache_API.swift", + "line": 249, "symbol": "CachingTaskStatus.evicted", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/iOS/API/Cache_API.swift", - "line": 257, + "file": "/Users/distiller/project/ios/THEOplayer_SDK/iOS/API/Cache_API.swift", + "line": 260, "symbol": "CacheStatusIdleReason.notStarted", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/iOS/API/Cache_API.swift", - "line": 258, + "file": "/Users/distiller/project/ios/THEOplayer_SDK/iOS/API/Cache_API.swift", + "line": 261, "symbol": "CacheStatusIdleReason.paused", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/iOS/API/Cache_API.swift", - "line": 259, + "file": "/Users/distiller/project/ios/THEOplayer_SDK/iOS/API/Cache_API.swift", + "line": 262, "symbol": "CacheStatusIdleReason.lostNetwork", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/iOS/API/Cast/Chromecast/CastError.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/iOS/API/Cast/Chromecast/CastError.swift", "line": 27, "symbol": "ErrorCode.cancel", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/iOS/API/Cast/Chromecast/CastError.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/iOS/API/Cast/Chromecast/CastError.swift", "line": 28, "symbol": "ErrorCode.timeout", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/iOS/API/Cast/Chromecast/CastError.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/iOS/API/Cast/Chromecast/CastError.swift", "line": 29, "symbol": "ErrorCode.receiverUnavailable", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/iOS/API/Cast/Chromecast/CastError.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/iOS/API/Cast/Chromecast/CastError.swift", "line": 30, "symbol": "ErrorCode.extensionMissing", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/iOS/API/Cast/Chromecast/CastError.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/iOS/API/Cast/Chromecast/CastError.swift", "line": 31, "symbol": "ErrorCode.sessionError", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/iOS/API/Cast/Chromecast/CastError.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/iOS/API/Cast/Chromecast/CastError.swift", "line": 32, "symbol": "ErrorCode.channelError", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/iOS/API/Cast/Chromecast/CastError.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/iOS/API/Cast/Chromecast/CastError.swift", "line": 33, "symbol": "ErrorCode.invalidParameter", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/iOS/API/Cast/Chromecast/CastError.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/iOS/API/Cast/Chromecast/CastError.swift", "line": 34, "symbol": "ErrorCode.loadMediaFailed", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/iOS/API/Cast/Chromecast/CastError.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/iOS/API/Cast/Chromecast/CastError.swift", "line": 35, "symbol": "ErrorCode.extensionNotCompatible", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/iOS/API/Cast/Chromecast/CastError.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/iOS/API/Cast/Chromecast/CastError.swift", "line": 36, "symbol": "ErrorCode.apiNotInitialized", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/iOS/API/Cast/Chromecast/CastError.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/iOS/API/Cast/Chromecast/CastError.swift", "line": 37, "symbol": "ErrorCode.setPlaybackRateFailed", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/iOS/API/Cast/Chromecast/CastError.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/iOS/API/Cast/Chromecast/CastError.swift", "line": 38, "symbol": "ErrorCode.setActiveTrackIdFailed", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/iOS/API/Cast/Chromecast/ChromecastConnectionDelegate.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/iOS/API/Cast/Chromecast/ChromecastConnectionDelegate.swift", "line": 11, "symbol": "ChromecastConnectionDelegate", "symbol_kind": "source.lang.swift.decl.protocol", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/iOS/API/Cast/Chromecast/ChromecastMetadataDescription.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/iOS/API/Cast/Chromecast/ChromecastMetadataDescription.swift", "line": 131, "symbol": "ChromecastMetadataType.NONE", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/iOS/API/Cast/Chromecast/ChromecastMetadataDescription.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/iOS/API/Cast/Chromecast/ChromecastMetadataDescription.swift", "line": 132, "symbol": "ChromecastMetadataType.AUDIO", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/iOS/API/Cast/Chromecast/ChromecastMetadataDescription.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/iOS/API/Cast/Chromecast/ChromecastMetadataDescription.swift", "line": 133, "symbol": "ChromecastMetadataType.TV_SHOW", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/iOS/API/Cast/Chromecast/ChromecastMetadataDescription.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/iOS/API/Cast/Chromecast/ChromecastMetadataDescription.swift", "line": 134, "symbol": "ChromecastMetadataType.GENERIC", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/iOS/API/Cast/Chromecast/ChromecastMetadataDescription.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/iOS/API/Cast/Chromecast/ChromecastMetadataDescription.swift", "line": 135, "symbol": "ChromecastMetadataType.MOVIE", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/iOS/API/Cast/Chromecast/Event/ChromecastEvents.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/iOS/API/Cast/Chromecast/Event/ChromecastEvents.swift", "line": 9, "symbol": "ChromeCastEvent", "symbol_kind": "source.lang.swift.decl.class", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/iOS/API/Cast/Chromecast/Event/ChromecastEvents.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/iOS/API/Cast/Chromecast/Event/ChromecastEvents.swift", "line": 26, "symbol": "StateChangeEvent.init(state:date:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/iOS/API/Cast/Chromecast/Event/ChromecastEvents.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/iOS/API/Cast/Chromecast/Event/ChromecastEvents.swift", "line": 37, "symbol": "CastErrorEvent.init(error:date:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/iOS/API/Cast/PlayerCastState.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/iOS/API/Cast/PlayerCastState.swift", "line": 11, "symbol": "PlayerCastState.none", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/iOS/Models/Presentation Mode/PictureInPicture/InAppPictureInPicture/PictureInPictureCorner.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/iOS/Models/Presentation Mode/PictureInPicture/InAppPictureInPicture/PictureInPictureCorner.swift", "line": 31, "symbol": "PictureInPictureCorner.topLeft", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/iOS/Models/Presentation Mode/PictureInPicture/InAppPictureInPicture/PictureInPictureCorner.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/iOS/Models/Presentation Mode/PictureInPicture/InAppPictureInPicture/PictureInPictureCorner.swift", "line": 32, "symbol": "PictureInPictureCorner.topRight", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/iOS/Models/Presentation Mode/PictureInPicture/InAppPictureInPicture/PictureInPictureCorner.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/iOS/Models/Presentation Mode/PictureInPicture/InAppPictureInPicture/PictureInPictureCorner.swift", "line": 33, "symbol": "PictureInPictureCorner.bottomLeft", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios/THEOplayer_SDK/iOS/Models/Presentation Mode/PictureInPicture/InAppPictureInPicture/PictureInPictureCorner.swift", + "file": "/Users/distiller/project/ios/THEOplayer_SDK/iOS/Models/Presentation Mode/PictureInPicture/InAppPictureInPicture/PictureInPictureCorner.swift", "line": 34, "symbol": "PictureInPictureCorner.bottomRight", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" } ], - "source_directory": "/Users/jenkins/jenkins-agent/workspace/Documentation/SDK/0_API_Ref-iOS/ios" + "source_directory": "/Users/distiller/project/ios" } \ No newline at end of file diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/assets/hierarchy.js b/theoplayer/static/theoplayer/v10/api-reference/web/assets/hierarchy.js index 832178aacaaf..8f2cd5d12c1d 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/assets/hierarchy.js +++ b/theoplayer/static/theoplayer/v10/api-reference/web/assets/hierarchy.js @@ -1 +1 @@ -window.hierarchyData = "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" \ No newline at end of file +window.hierarchyData = "eJylXV1327qV/S96RqfEB0kwb4qdtF5jTzyx49uurj4wImxzQpEqSfnGtyv/fdYhZRsgIXNDfdG9sc7G3jg4+P7Qv1dt0/Td6sM/hBCKCSUTxmWaMi5FyriKM8ZVmrFUayZSzYROGI+zjIlEZCzlEZOpiplUUjPORcaSSLE4UkxlnEkeCaZYHCeMizRjXFAqccp4pgUTScqZlFr+k61ac1+ZTV82dbf68O+Voo8635rVh9VXU+W9Kc6aujd1/+nJ1P1Vvlux1Y+yLlYfRJyw1b6tVh9WZd2b9j7fmO7PftB/PfbbasVWmyrvutWHVd8Vf6JU/vSKpC8fy6poTb368A+u//mLrZKjYoJEhJILQeRcW+zfLk5yxjEYoOgXWwnxjoJAZoxR28V/XeXPpn3l4UK/8AyJmO7Po8XRpMc/UEbi1Er39q+fvuwG5Ke2bdqFjEysg8syEUykQ4GKxPbnwS/XbdOP4Y+I8YPA0kxt+lvzs79t880PyAeOMUpnx+8QeAssg02of2UkmYw0kzxm1G5JmTKpOJND05QxGUsm45TJhDOZJEymQ7vFZKqZ1JJJrZnMJJOZZiqSTEWaKS6Y4glTImJKxEyJjCmpmFIRU0oypRKm4oipWDGeaM14kknGU6UY1yJhXMuIPuif1DhqJeiDvojpizhmXGcJ41kU0YdiPKMGNookfaRMRJwzwTPNhIhiJkikIIUiEZLCKWEiU4I+6P/iiD4UfWgmMsppRNmOKI9cx/SRMUkNuBzyrTg5SZCXBLlJZNSMKybV4DVym6IEFDlOUXoqoS8S+iKlL1L6QtMXlLyi5BV5MYkFfSTka3I0z5hMhRzCXyfTgDgvu13ebx7NUgBOrIODRFMeMs1ZwoRgMReMp+T2VFHxpJzxjP6WUXeV6ZgKIGOC4kEkUcREmkRMaJUyoamgMvJBRBmMtGKSZ+TYKGNSCk39GrkkUkzGw4cUTKbDRzw4QkbSdgRVKah6vBqGd2aCj8R2lbzK6/LedD0sYA7AWgLJY4v2xjxsqSdCWWf2IKlIFxtbhP4dJChE2kJumn27MWePef1goNxP7UFSxe3c79vW1H0o9zEYKiGe9OUI56sdSpLZJPm+g3L2ZgjSxNKJYPOjrB+w4H0zRanSCZUpUKaDJUiU2CFyW27Nt12R95D/JtYoodP+1wWWsTdDkCaNJnEHlpVtilLZw9Xf8rIHqWxTlEo7c5G8eL7p8z6gNnsxILm2w/+yyQtTXJk+L/I+R6g9CJRYz4jPg0jPAwkzO6dneY22W7YpSqXnVLePbbN/eAxgtBEYsXKHH9tdX4I10TJFqew8XrfNQ2u6DqqMti1Ixu35zfm+zam7xiuIB4ES2w3bXVPttwH1cmYPkorIaRB2relM3Qfm+SgOFWH38V/D2qNTWiIl7P7+vNyaugsrZA8EpJbK6b427fOuR7sw2xikU9F8/HrTG9OW9cNN3+wCBq8zGCpBvichb/uTNLzgUBHJcRH4iOU4EJQRv1Mcl80msN4tJ4DKUsdlhc5x5jhQRGaPJP/H9L837Y8LstiYXd+0lHzbVNXiLP89aOicN+bDmlscqbm2T11fbvMTlHmAp+pyOqtD8pgIrFDi2F28/tfedMu9wWAVnKUkGbLkjO9fCzH/XhmM3gfBMpu8W8qBZRua/SRKh72CyJ64XZm827eUkUA1x4GgK4Q95Fr/LOtme/716qyp78uHwwhnQYIfBNIrh/6PfWtC2X0YkDxxhtTNdpN3fSD9ERQoIJv0EvnPYHoPBiNPuU3+3+b55rnrzTaE3Q8KrRCp0CxVCUuTmGVcUeVInaj8nJctzV1O0vg+OFRrJofmOHVGGZT8MF0+SeACGizMxB5Zn1Umb3+Y0/S8DwblOBPxwJg+IZzdBlZolijNkkSzJIuYjjTTkjPaTNFJxnQWsywWjEciZjyiXZgokYxHWjDOo2HNXUeTDNw2Rf4cnhEvDNzblPYw6dNPmnl1FCyBKt5BgkKcseynP4o2tIfwYkDyxJ7BXbSF6ZtAdj8IpM9it5H8chPI7sVg5BlXU/JTm+ljSFCIFFMh1KzuTm2TgRRAYbGzR132eV3uQ6PzGCy4b0gTxqMoovYjS+0O4tw8lRvzMe9McaJGIAXMYyTQdlnzw9T/ibDlBFBdztrQt131XP8I1OIHofzKrmx3pqVRdFuGDsiOA1Edib2Kcldum7oI1eAFofzarlJ3+/DW3osB2bmz2Py3rm9NHsp/BIUqcJYMXzYhzk23acsdwO5BBO+/czkMQui/9qjusW22hmYb4arexaKe0dGsho6bvVC9HE1BLuGcZvtL0zxU5nx9ERIGflBwWQihGRcyGwpECK+sy/LJnCRtBkTdIzOfjrumOEnGFIeqiLlPxe3zzhRQYPggKHdqe+DGtE+mvSkLsy4u6s60w+pogCuWEwgPnPFMKJ1knR/oCJE2RwRrkeOshrtHicaU8UZkZg+WlXu2hgYLUHS8GYY3oDpiXKp0zLRyTnPC0RkWlJPCjzkdjqYj0XQ+T2cpk5E4FEJq61nXefXcl5sOLwcfJPiIG5d06jrOmOSJZJKngj70QaHbBxZlfpuXVdNCfpvZg2Gi3BXRsqpK6rAwTtcaZYztfM6ObmHL0MdgwTGjkrGTUc6U97LcmLoDl8RdY9QL6YIXul1Td0slcBQX7gdN1SY7OEM74qhhvi83eW9QWXME6pbMWwwQ68QaZIwjZ7eaJNP+3tl+ic42RbmcY4aftt3DMs3BCmWIZwe6b4aBOUDkGKN82h6NXJzLZZ7RCE3fiYeLc0n90+eW/rnI8moaXBmSiDNON2V4wiP6iBlPaN0ykfSFTBlPFP2for/FwwcdME8EfSSMJynBUvoipS/02Akl0cRb3+ofdfP74lraqyHoNXer7eJcrvs+3zya4rrc9PsW8N0EgPI6uxtU0M2WzgV3QEgcLGGm2MPUbsq8AqNjAkB5xYT3L6Y2bbn5VG/yXbcfLtN8+f5/ZrO4j/oOFNUiJ9F0UT811ZMprk2zq8xlubyZ68PA7KnLft2WT3mPVk7bGmVUk/xeN11Jnd7Nc715bJu67IaBOqrgHTSsaBINr2n9YYrL57bcdHQrZ1mLH4eqiCcqMM4gBj1ptzrTnpv7sjYFRjYBoLzOZayhGSz/tTefy8pcFKamMcbiqZAjKFhBMvVtu+2+3H9bHI04tihbGk3z271Gpx0Zt21eoxMXNBlY4yTavrXVZVkvnYt5M4R5jsccTjnDoOzOaeqLc/n3ptvlizOiN0OYx87l/+7zquyhs8y2KcrlnJu+zdsH0x+SGc+0Qeckj+JgFXo2zR1uLWKXZecAkDd1xkRvycB8KI8zQniDA92xa4zyOVso45nJgDiaA2BeT+RiQRs8Hk8TzXiajTeuU+cA0V1ZmAZjt03RTGZ2B7TeFyXIZZuCXFo4d32c27xQxZwjYObEx7wuirM9dtXIA0G5ZeTj/mq2zZMJpXdRsALlUzBWjFAFLgpWoL0lT0ahAhwQyq/8l85/ln0wvYWB2b3Rd7YPuKdwBIUqiI/EYPgFrvfBsJ7Yp4eWxk9QMoHBGjJvTGC99MweZU29bSDKFtqxCM7j8RWP7FgMDvUpNATfQGC+s8gbgZTUzxK6weHFwOzeFvBsH3Lb1I9CFXBvC7S8mGibBg8r4ihjtCbLaNmU0VomE5Gi5x3odQGuxn2ZzFnoeCXsgAGda4z6IvbG4k3/XMHeGIxRPmeiZfViULFPzFFO57xLUMsS2KpMFnYzekoiHnc5Mh1PRSDk4aNXWkjW6fC6Az0fYo8oi+ItQ0tDStsW8zO9U+JcMKHhEUw4NUc5OZ+6NaDXmpjDnNmUE6meAVOtSZHSZkAm07FInSt4v5nvd7e3yy3Xqx2aRTdab68ugdZxtAIZuLOmfrbv+mY7qkQ7Yi8GZXfmk69byy8np5Yz64Og3M6axDro3vz6lDvzQjg7Qevi4/7+frzXB1G65jBn7HB2V3mdP5h2vISPEXswKLtQDvsiVfBgTtD7PyJTTEg+XHajv9hXzpr6sqxN3i6SW5Zo7jI7dyBNIId0rrCPx7gutvkijWWJMmm3PmCxcdKzR1QT6Nms8fUp92mHdXHzo4TuUFuWaBYnVf5ja3KwG34zBbnUpM9f2g5dF+A2KD0H6aQccJyp+A/OMQmlOBMqTphQCX1kgolYjyMc5WzT3eya/m8hwuYA1BfOuPniah3COjVHOZ3toc+tMb89GlOFMPtBKL+zPnnW5WUI9cweZHUPfdw+miaEdWYPsibuHHlIZakmHaxQBuFs+tB3XV/2ZV4hDcPMHmbNjrAGEAbX4EQmTCQqHt+8nDQjQwsXoMSDQDPv7KB/eTJtlT8HMHsQKLOz1DSelr9uDV2OooND4Jmzo7jwAhme3M2isUCc+bFDctcUp2izYKiDsvnNg0NidIL+FBE2DlSROnsTTmovKWHbXMeAqA5nKHn3dWmv6Suabua+3zu+lht0AcuHAdm1c0r7LN88lvXDbd4tTvTeLFEmZ5Xpr6bbrXflAsvBCmXI0gkDfup8Yg0yZs6+yXnZ9W35fU/up+kR/PjOcSCsY/Jo364p6x6f1nkQKLOzc2Jn5Mv9fVXW4HNPfhisQU36z7q/bT7nVfUdXOjyYmB258AtffcxLw7Pglw1BeSBYzBUQ+JeWi/7EyT4UaiCVE7GZtTUL9dwyxJjovscHibsaoljjPI5r4peWw+xkY/whc13kKgSpwey0wugRrlS72Ic7WdCLwN6ECiz87r8azooH8jCI7vlDu9zT+tx3QHf4TwL3QmyB98P+TYPeopnBjjhVhLdRVLZQY6cygn3zzEYWjzOi8FDYuFX+I7BUA3OBvhVk/ch5DN7lNW5iH6zzdv+pnx4DOI+gkIVOL9AMN4H+VKHXZ70gmB+u+n5e7P/3rT5l9342yPv87rGKJ92V8ULa2wLbstNETCzHWGHs0th5H4Qyu8ceqBEFu91kQ2YuuBHphbAxtzEGmXUbn7G3ifkLXUPBOV2Jsvr8fWrpcgZrUAG6dxTO1vuE8/w7lA6Z1bfni0A9+TnAJhXe3lhPpQn9fPgj296ICi3c5L8ztRF057hvp0Dgrt3KYZVPvrJC68SWEEws8ii4ec2BnrlnDI6q8rFsKpKNJCU09isi+KuNL+DrferKcrlnNMdW2CUbmINMzoFV5rfA16udq1hxmzC+HJbKozZg0IVOKdyL/PnZt/j3DN7mHV2OeHKVGGvWhxBhY/Kk/GHaJSav9G0Lj6ah7LGVz5tAOoLZxD+ksynGlpSmpqjnM5s+yWRz2Xb0Y2Tti+rgNVeHxDWkXp0XJXjOlmIBAeDsifzrYl1cftYtsUpXpgDYR2+yDtrtrvKYMcDvRiYfR5/Y/uJHUjwIFDm1BeFwxZXeLVzUbACX/yNBw/CKqCDQdm1L/6GlNADGX4QzO+LuyLgkIYXA7Mfj7tAAXMYqiGbR+B4yjZYwxwGanBfZX/xKOh4lEPO9zkPUkMCDGWLj8Y1MCmd2aOs6XwfdV0EEIZwZfPd0nXXmR6ne7EGGZPYV4LFkExYTX1FwMxH8npR3zfhe8N+KKolmZfxofKHOWIKAvlTPm+zrsv64YQt8ikKVSDmLdZ1yO9b+CAot6cVgdjQ9J0ROFCVTjlT/vrDk6kzBh78YJDmwrIMn6jTb43GMadfYY0YNSODFO0MRMdFkOrwrPX7P/o7tT2qaPyDo0YPr9HTL4Hac7F91ZfDlHKRe2K6QP3r16//B7e8BEk=" \ No newline at end of file diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/assets/navigation.js b/theoplayer/static/theoplayer/v10/api-reference/web/assets/navigation.js index b4ae5816dac5..553f755e00ce 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/assets/navigation.js +++ b/theoplayer/static/theoplayer/v10/api-reference/web/assets/navigation.js @@ -1 +1 @@ -window.navigationData = "eJztnVt34zaSx79Kjp+z05t7Nm9qy53Wxo41kuzMnDl5gEVYQkwBGhBUW9mT774HJEWBRKGq6PEl3fGbj+uPHyAQ98LlX/934uS9O/nhZDSdnHx+slyrPLNSn/zwr9ZyurZmI3NZFNNc7KU9+fxkK9z65IeTZS6KQhZv+oq/rd0mP/n85E7p7OSHL778/o/PW9pFmTt1reSHFKwnwFgpBB1yKZZreQy4E1aJm1wWbypDN+RXX3YCFg4OVzgk2K0UrrSygIIebEjwbfWDwNCNCQlcOpWDQSsDEnAnbaGMhoI2JiSwlStVOGlPjXZSu6k1Ti6dMnqinVxZ4Trk21JXxuINJ1w32m+/DtOsMml+C37uxmRlleLa0A36NVzi++VKaSftrVgGGKiIffnNt3/8+sevQWpGb2eJSjV6Ozs1+latyn5WBJH1RXF0nagupBOZcCLFOtgJzNxZ4eRqz0ofKMYimJvSLuXoxtJ4WMpM/ZHo9ttuWnuE//6f77745kuYsthvJULyZpjWKQVZkSoFGZyvGfojs7dWirtEyMrGCH62k9phjErAAE20QjneTmDK21tplV6haeqIcOBYFkurtulyGypwFJYkRkqQzKHz5VBfsTR0NDiuSCAKIhijHeiJCGCV1guxTbEOdhwzv1NbLGdaO5GaC6HFStpzIzKJfm5ASaSwar9SyauMGOA0N4XMTkVVSt+pHCZFKhRpNluhldGJhiewo5hCKLqWRSoM+c5K+ctaypzmwlIW/LSEMzEUYKAfpQHD/ygNGsyYVS7Howkc+GClEZONSHy5wM7C0JUalmLwycWI/np9EQY8V1oKm/jFByMGuJCZEsmq01oxxM9Go8kI7OiwR9qdtHOVSd/ytyNZP8q1Js8To00y1AOifC90NjC+Jgga2da4f9BfP5ZR0PtxakTbWknE30tp91NhxUa61C+PdRh2sZaG/rWRCkNeaeVnVSIfZRO4qHUUGOpaFO7s3kldpFLWUVBDmLYc/OQF/dFwX0COrrOplbkRGTi2Do00aSZFtp874QDQ0UZz6s4YTtDRRnNgAifsaVk4syFzOyGj6GOZ+6IDTmdCG8UJut4rrRyEAyQUNdHqvBNLZ2w0kcPVVFx1lSzOxd6U7nInrVVZ9BtAEUW+no4m4wsT01oDY6aoRb53apmcL64Ep+uOZWgV9+p6PYOJBsRkBHU1YkYAiLEI6rmhzOZytZHawROdvogcN1zIvOpqiQQntCR+IVRuLDJHiFQ40tm63ECgyoYGN8Ixfmpfhfa8G2HdXK3WDHBCi+KdlWJzqRlFCpZi8H+a8sZYcVl12nCmdiVk8W9rdtBkTcZRX5GWkp2PD3puVudyJ3OwH+oLWETf2qql/FlsYGBg5/Gqb5FM39FM0XxZ5GVqWkl2TG2xRCNIyEj6oVjyfgYhp2JryisvLlRMd2OnYrlWepVc9MwawUIU6DpkpEMXJbounXAhIvbpAEHRVamOgkI1KU6CGjsTQ6arp2Niz9VS6iKdYV0ZG1rA37KnGYDj/vxQy8S3Mz24hQeVGHomN2YnWWUblpJl1E9nyqJfWwMTOc3wUh8fQjqaKdpAL2q3idA7kRrmtkboo3gTOvn1Hrp3/nudijy/Ecs71C+WlvMimcl/l7Jwh8DR4D8l5LSihUNaUWX9MBxuOWsbXpySNZWqngVjQBepKCRRzbl1u3DVjP90LfRKpqsfJETB1QaHZTLPWjMPwsg/WMvG69pnHpfKVBy9ALyIzqw18HJaTzMAh3w0QMgEo4UrkvGgh2aCdINgIYZFNdmIVaLHhrWoKyA3NyJPtgNHMwOCV4++CG1Ypc6MTabqaOZB0C8fy1iNS9xpNgay8+0W4FNgrQiQ8KmHTw/NrmAVxf5fo3RqQ0VoowcKA3ZNdfrAXG236U7QmxNeUYV/zLxxDidbhUAA7fIJfarVRqXPjjuVUj322fyLL7//Se7n+8LJDWMpDAmALjjcK20249kFIwpQisJ/L63ksSEl+lGkdepWLYWTM1lsTXJ6Euvwby2FvZP7sVzafdXq/iThcROo5KAHfFQ8COG89/WFlfcJLY7X4p4JB5QEuruXDxk4gNLhcGQYkdYPigbcx4jFk9zAyI8ocokw44OdI3i0zXyFF1cjHhgBVsdTaiyKsfRrkW9FIbOFckKrktcKMsKh0bLiGAZcmEzsuWBQjEVwdr+1zW5tVhyIHo3m98zyvgCoRLf0iHqOO6DlxYOgG1tsJp1h/RBYisF/kvvLOYsNKkm0/9nbYTnFCEdGOzS6B0UzIIaB8GbdE2sEuxIWDGnwehoM5wtxtbthQA4QYdC9LkOa0oe0nwtzJ/XwVpsOhm632eZ7fceKCJbiE1CrNsJZxRtQpeX4GuTG6IwXAShF4SW36QaVGPofReXJYsETWnr2g7tZYwnpvPSTGRwaKciZeziP6bUzzaw9UpDMeuCPphTS0Fwt7glqX8FgAiNxcFkkqSR3PjWjIzTpoIgiB2MiFJ7SkXw/JMLJkYJi1qMTFApIKGrVf6PQWMFg1t3UJNoDF5goStOpQgtigYncM9Z0L+hPBEUUue5ZUC4gIXeitd0JSk7ISHrVl+DkWEJSS6q0xwqK+YvK5E5pSQ2Taj6upuJqOir0F0AaivusxyjDZc2qhU05aOvm1y/9dlYjpC43xZuOsRvH9/0Iuo19GD5q28Owj+2C+gTWpwgqD3IhtLqVpCculpG7HdM5ejSj2/3qXZtEwiIVOu2Q925hxfIunbauhA9LpxDQodj3Z5f1CW8kkV3N8LL4uCOu4/eEuF0r2fN2cgvixQpyXAW3XYdz4kjrlTgtfmvNppu0YzPcpR2UQMPbaXp3zSZmePfc4x3ffexzt0+yr2+UZfUHxoBHBYHyF0ugpFaAg/7Dc8GPfLT3z34W9lRoP//BNuQcBQzQYm1NuVqTvFD3MhuHnsk5VVortWuOTVC/ISFGPRJqU58Vo+CQEAU342uSG+vQ0dBm6xRWhEMBCtKVKxhFdSQ4DK1WR/OTD/SQ8KygY1VshVuuE6cpexrUt+JDFU45JfJ0qiIVutxenduiSlSkQpFVOzdGW+yehsbRnQCge/bh+1SUBZKNRzPlskAYnKbfi9CxSihAQVYWUruqOfHH8qiCgujxaMzKL/xh4ECBof5eilw5JANDAQaaMbq4Gb93Ox6xJaGQEkc/4V76OgQxquyLaCA+tuxpcNw2KHN03ibU+Hxa3mF9UWCnMGilDAXPPL/njYYGDYMWwq6ka2pbHQbJw6SatZDgp0klknBIyAKflmSmJLRc/Jkn8ehHKRt+rxyTfVBy0VfbTDhmtgRa3rqQx/A+aEf6EotOrfxeOWaSAyULze868CDMyKoegvVLuloW3vuQ2L+iJ2ZFUJc1Xvq7Wnxfx4Yu8V0NiqsqBpUNPREJJBPYE+FbPryMHEzFMnofySh7K1dKY9C+jAX1K3lcclfLxp9ppAsDlWw0viwFSzlwf01ZLrFiASo56IxcXwWVPHRRSKTrAnQcLOv7Dfl075Qt/KjFOpUzsjiWcyK5UNnWKM3Ijo6Sg16slc346Y/ljEj8F5roW3PYrkdGAwagI5r6sTPeuUNCHpib+EhL4+telFmXYjE/Ai57GJZTUftSGl53LMxMicX4XkD5gep7exoKNzWF4kw/E1oUb/JyQw6ZIhWG/EUoh05EQwG+0m2bo7BQ8pr9YoCGdDt6kb+kQOpw0bTZyRUaWaTOubUAEh9Xi8LPZC6czJDfFyuYzPcqQ4mtncmbr01/RaXDa+0ULz3TOFyugk4rAJ600qDAngAmhm7f92fzacLp+14W29FWgQW7sWFlupHEBSfGJApRhONe55XQUng/S8Luz+1pKFx9lRawC7BjpD9RJf1M6OwzP9/6rJp8pB31j+e3LjNlmgkJTAoEuJ/QXx/YzhWTh18j2QAodmkWLKXhv8ib68WiDYewe0q0pfe7qn39TN0KHApwZ2OxSjEaG+lQq293SlI6EtSdNv5q5Jy/fiWbqqV/VwL2p0UyAurPWVTXmKRwrYAAnZpN+o6+wM7B2KUSOZqqnoyCJrK/NhGBf/R9t1qe6aXYFmXVPV3e/CaXCYcmEoCIaKJ3Jt/JbCrNNpfJK5dAJYE+jOPme71cW6NVUR8fxbIYC0NFZ9VOOLxchRoC16bgd5md7/2Vh74dSIFhNRHFQtpNcXl7lTjE1VGQqHTaGCm50urfpfS3V08yqf0pkYQvPqEl8XfafEiccWzNJKRoC0WYyQsrNHFLODMwlQCbnysN9xdHMwUppB3LW6Vlhn2znowPpRIZKQn0P02xFYlx09GM7iOoRkTJnvZo5kHQcWcs40GT7V5XgsJUnqvwSpRU+w8JGf56zFX/LO7+UJfK/56GgUvmfGB/Zu976ABn+Mj/LC5e3JPz4l5i0gf6l3A3Y5UHEv4J/NjJGtoX/TUc4wyf+It62VklbFDxenXcs/AFXVEKdjWZu33inZmuhA/jFYyO9JPer5DuMsnu8kn2JuDfh11p0dEsayDbiugUca9JfvTNF4vFxXlyTFHbqODVgzWJlLTmZ98AUt3wi434QwHqwqqWLlN51FppxEyuUuPgUICuOC+XsijUjfKJnpk8WjiPBKTXKlvJXhPZuK0OBoowGX/VWylqbixo/k+FP04MIU9A10r7f/a5nFqzldbtZ3JpbHRNASAhqeV2a6z3vHXXyU/L6p6C6LpuSk/F9xTHK4FePwnlP9HU6Y6SPM6Xu14sRrla6bl0ze3aHVbPzKC1zuA0sS9hUP2bcgDJ/5sZmviVfQmDeljpBWgH0wAKkT5IxqDPl/5hvDS2Y6d4zVJZfAVJa2C4DA9rRwk3YWhHVp5Y61j4Qltf9SJLY60ee/ioq+HhnHDIURtAF2M7n82/Qv9fOyU/pL7bI75j/2jnkp/g5FvvZ+BFDNbSi4GPdnLmuv5g8C6lT2cDVS+j6w8ajWggEd1g/SzdB2PvUjtRFovpeymy1KMpgR11U/gQS7l1/h5w7JJFSDgAjFy4CCpx34MoSuvVTRadFc5foJS81yQlxyI55n5MbGyM4HjKHpCeVks8WJuWcyLB2paehoFrPzA31WAAvPFKF1xGWW0kyTfiAzsDU5e3xC/saXBcXRWQZB0F6NadxCXR8/IGfKEAl1NjtaDh6aa82ejVNfPmislpIiM9P5usntZeG5WlXgcCRfTeyCpf3posepMhMDEpQZlPwAIFk3mu7qJ8C0xMyoV0axONvDtGJilR4IaVr0aNgHiUuu7AH+9o43LQzxdJuFT4Ax5tXA6cWUcbOZ8zKptas1GFTL6vFUsoqt8JfqWdylPMSEAPmi5dfRUGNGTyO+O+/frKqRxsTo9mvDHdbIz2qsTOyqOd3Gsos+Ryc2BH5xmp8ORKtdrUWyrhX3E0Y5D6Sqr+BLL+dqGNbOTF/kaO/C6jqJVvLfRCoL8by99vehsvALYmugC1s0jwmZvqKsO8uUUWmmz2FdhsM8WgQ54LJ/VyT+/6hoT4vLXSN5dKYchGgsG4T1kPfMWaMf/lT3ubKVmqGh3NFGRe72j5hvdzQTUaBbWxZsrcVhPq8DwEhFzwE97mMpPOMgp+LMNXCQ4elMTCwMHMg1zeFNLuEvUnlhGOpOpMQcqJVBnxFQons1HpjL+ZEr13N62k2t6wRPu/LwAHBqQhuVbmRmTQ6CUwMSidggagOnZyMBR9wPSboykl3Q/N56NJohf60ZhVLsejCV0NYClWXtoQ52rHOFaUlrMioY4XQUIW+NpkAxLfV6MLW4+xsXdelYa5yuQom+jCvy5gNJ1gOhgW6Xg0Ge2EykVdJqFqBUio6tBmoi+x6LXbaSU5uOsFiH28fcFzeJTacvuyjwwe3oan3j+FhCj4I3290M/jkCblaEaneZ/M87Kvry6+9KuLY1Gs/ZDHd/yMZ+RSajSK1wf3Xh/cS8bx8Af3XoeaLznU/MjO9+cFv5VLidGR9+vrj3+11x9rL59QuYmWmaOThoEKR/LGcwNHcY+8n+qZn5Z8kflonQujG8YSMSyl4VzyQCxVdiIVjWQv6aflqL/nsDWXSjokRMFraXyHjBT7rgT3Sn2KL5xSfSyzf33Sh1LrEP7khtUiD5dFIuxRRAP9jXXc5EZaGo9kaihAV+1fX4hNo5/6hdjDihT+niuoohb4PqLXZ6M1HXBXFqgi2R/TK7TWFMWlVSuVOo0QKyjm0yx5v75l+9wOgPd5MVbF0mindKncvjqMsgGu+0sKqRheX+R9yIu8cyk21WYXaZXJ5h+UW67nzvp39qJtdZiWGw8vhoFscP8Sb+dSrcJdU7GER41PGdb/fn5nWX3hHVRUjhaK8dRvN9cXO0e/tWMcQIJ+bM/Mo72+Kf36pnTaheyfjBUZ8cRo+OYa7CKNdeg6KsV7CCi90WvQk3GXO2mbQQ2aREDHwMYHZ2Nk4gQthJur3+HJZ2Cn1k5GWWIHbm1jBK/ytEheNtETcb8n1AD27WSbX8cNn4rrGHk1JVe71HYLv3tQy3xsm5qNnjhLiXEvfRWGs8wLS1G3pyqcVTelL3f+qcG5Exa5kyot50ZyeXubK40+HwqLUaenrh+IgP2cjZEDoJ69BXQ41kn7VmTN6TK/xw9jw2Lcqawcmw9rqWqp3cK8azYP4k1tpKTcDKZ0Y5kLeE9IKOAsA6cuRw/sTAx+hU6s42AZK72QkoOelje+tpPgQPdsy+q/yJvZ4hS7D7yjiFFhQ3yV2pb6rszzYmml1FhMkQotnmrKcHv1RBjw8KBCfcQRxHUlfBhaXmEpH44UA0iIu5v8LdzztbCdFbaOhylQsFETJzc0zqvQdX3GTpMr/haTqwn3EAqoxNGMwtQXDQGiBSolxn0mP8t791bA5xJaK43Ajgd1FDRqKrSER/iBncagjqCjAAUV0o6W6YYrsBNNVup6nsBEjZz/ik/DXE3OhV6Vna2vzTJJa6EYO3/F22/BB9yYrMxl8aYxdMN/DXdk/XN5QSE4YKAjenVH2ekqq+Wd1GlUU+pM2P3pV2BMRzNW2lrVdzjkOw7kvchvnUq8ANAXcYD+nTUU5gX4KKjc3Gih8pksTF4ig6tIRzuPEbcxHXiEechHDM/4Uz5UifO8go36eN+8xLtPSMlGJ4+LRqpBSH6KuZeHvj4CiqA/jkdAWYViSFl4lldFyRrCrRzsejG0Sjzhu6eJ8ePBykE819OpGNXbmRjOFwp1TGz4TiuFDrUPwJN5/MB3Y6twVG04aGgcdy/d0H1/9Pfjf7qPbRPhszztS2D5JfeJ3wueWulPG/i9rpykx2p2FH7pkh9FqGZHwc4nQM6O5Npk/J8RiOkIXt9uBuF19o0tvNoYqfjIyqGANVpd4VAwNTUD1EOjwEYePSUffW0yVq5UuoFYbp4cxQ+J4PL2Fh/rpIIMjGyai6VcmzxLro1iQQZGxvnWtZAGP8I++uaxdMXtqHtKBvrpHm0/LEf11x0P/yf3x92p7VZmoyy5MbEveJE9bRdmp+RMQDurYdWQ/XI7EnyQvMQuvF4PDzN7ogeR0ykGhPSul+tZYvW4MsSl/3qGlfPrGeOMyIx/8GTWvqeQQLV2HINOP45mfHNLExPiMoE0ZNX+k75XH2bfVGhjxUZAl1t1rTQLfCek+TcntE88nI6jLVXsf/1/RvNWGA==" \ No newline at end of file +window.navigationData = "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" \ No newline at end of file diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/assets/search.js b/theoplayer/static/theoplayer/v10/api-reference/web/assets/search.js index ed47d96c5225..9f5f0d44f161 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/assets/search.js +++ b/theoplayer/static/theoplayer/v10/api-reference/web/assets/search.js @@ -1 +1 @@ -window.searchData = "eJy8vVt35DiS5/ldkq8921PVXdN9+k0hKaq0KYWiJEXm9O5DHMoJudBBJz1BUgrVnP3ue0i/4WJmMAPg/aQ44TD8f7gQVwPwf34x/fvwy3/8v//nlx+6a375j3//p1+6eqN++Y9fro3pzWU9qnVvPn75p18m0/7yH7+obtoM/+z89n+9jpv2l3/6ZdXWw6CGX/7jl1/+v386xPen/3WM8OIqGku1hLEi+qdftrVR3RjwgAqXF5d/u46LHIKl69x/+Xzz128PF083918Yel7wHN2n6y9P378+3D9dX7LFQ5tkgs/fbm8fLx+urxnKTthkxduby+svj4xSPQVM1rq7+HLz+frxKS5mhUxXu766uWBI7YMl63y5fvr9/uHXuNIpYLLW4/23h0tGYR3DpSt9+/R083TL0TqFTFZ7+tv1/e3Nbww1K2Sy2m8PcZ0ljEzBb9v7RoE6faP4bfr3T7f3l79eP3y/up7bl2u4kT9EWcEGVDpmSkz7+uHhHs4rW/AQKkll6Sy+h60oRztqm0G0+4L4FF74NGW7I2NJgwap2n4uXl4/PN18vrm8eOLlAy+Gc9DdfPnt4vYm8mmw4yhG6JROMiMSy3ko724eH2++/DWT8hRLKcq0+le6zt18uXm6ubi9+X/yihSNphzn0/XDl4vbxGwLzEtx/Xr9n9+v//fXm4dYNxa1LUmUWudd21JE+3F2YtH51qWpUqt8aF+K7Mv90/fHb1+/3j9EB0cM61JU99+evn57+v5w/fj0cBMftjFjSKI7zRM5dQoInaQqqMZF6uwxEk7zEgbO0txX6u9X93cXN/DMPZAObIoQfL6+ePr2AE+jUISTUREGYo6KIrDmqyjBYbXg++X9wyOnxsEGedq397wJE2yQp/314oH3qSEWaerzwsn3i0+MhtcPmqP329fbi/+8fmClFrbIUL+6vry/4uU0FD5DmV29wtAZqoLOFTZI0t4vlHGS6wfN0nu6ubu+/wYvTwaKp8BJml9vLudG9/vNl++HfzKSS1glUexXLVijuiBsjqKgYiEWaer7tUp2TwEb5GlzP2XYIE+b3VMgFknq85rt93nR9vvFl4vb/3y6uWTlPWWWyXH5t4svX65vl0r1+f7bl0gVpA0zWa6/XH2///z96vrunkvhmmTqf/vy65f731mTA9woieG3h+9fby+ePt8/3H3/9oXZHOBGyQwP14/XX57Yq66YiUD/z6e9gstX029Uq4bha1t/KHPU3kf3z34Acu/gL3/68zHmVd8No5lWY8+MtHIt4PQEvFay/uef//WoXj9zVXchM9Wagau2hMxUmxrdc/X2YQsoPpl69YOdTsciV33st239wZY+Bs/TfZ5eXpRRDVPXCp6nu6q7t5qb0cfAuZrDyFZcgmbqtXrL1dsFzdSbzGzx1fRrU2+u6lE96Y3iEmDGRZjkIEXUm8nUo+47prQVPE9XtWozW/BkT6EzVbuG/SEfwmYqzj0vV3EftoDi/fN/qRU7dx2LPPVXNXC/6H3QPL22HlW34nYKp9CZqn3PTeU+aJ7eRo1Gr7idwSl0pqpuWy3oEuzwmcrTyP5OD2HzFDs1vvfmB1PzFDpPdVtPAzuhx8CZmm398VyvfjzUI7fD8Uzy9flpPgTO1OyHkTurqY6BMzWNavuandBj6GzVQXWjpE/3TPL0jaqbj8eRX7ccg1ztuX3n5vgpdJ7qoNSP+rnlptcKnq+ru7VAdhc6U7WfzIqd1kPgTE2z4gouIfPURvVzFE1yHYNC2o/jB7tGBUaZDK+q569knELnq97qN3aaT8HzdCfNbS92ITPVtu1Hxx1kHAPnab7pRvV/U3r9yh3HuRYF1EWfk2tRQP133YyvEvGDQa72oJ91q0fu5MQxyNTu24m9nHAMnKnJHV+9JY2t/vw///W0Xl03zfWb6sZbPYyqY4/sALNsjqdD68tnsE3y9Bs1jKbnVrBT6DzVZSIimbTkK/LXfVPXfF09o2ab3/X4+m1Q5mIlG06DtnlERm36N5VS6WHLPJpBjY+igaAVPlN5ZK+87IPKWzVrY+xuakf9m1bvyL6Y93uRbTEoTtaumA8r3UgBhaP7KExVdBsFVI3uojBVqcV1OJ8Za+tMbXRpHRSOrqwzVeElblCSXuHm6hHLzbAqY7WZqd3WH/3ElD2GzVLc1Lq7mDc156A8Yd8kW/+3eYwq07dN8vTBhVlYl1yXZeohC6SgYGR9lKtILY/CupzVUYE6O7302ihTkViwA1UZ63VMZXThDNSNrpsJVKFlM1SUWjVjak6aJ7eEy1J60+o9nGiDYoegeXrwRBMWpOeZuKJs6gePYrgzPyYFNvGCu/bIvIupqX7q8fPUtsPKKMUcVQQ2WQTgfgbc21J7GUw1eJqJN/3ZeuwxceJ4OGGKCcuLZphMHs4EE+kQ+PNLNssfkxrElR0yy+IAJ5twR0HNNYm21JpqIjPMghNL6XwyMo0EfCudJtfzqByH5n/o4X/o7lUZvRsacpWA3Qi3cR9KKYE+le502PekzFRD1sYDTWBFPEcZWQKIzvzTNdEFgOi8P10T8aF0PoTQczJHD3CWcdU875gMLch30tHyPSYztPpuNH0byclToJT2hOmbCSzWUB6ZGWkmlo44K0bpyujCUXS9KF0T88d0BpOAF2aGIrhQRa9PZaiBfpjBulRJNWRRjLMWlq4M+l/akoHXZboW5nvpLruFHpcZipDfpTvv6EulDvO5dNa4AE/LDEXU39LRBL0sM1TBJT16JS9dDfOztPUg78p0RWQJMbJymKFHLSCy1g3ztGNpDVcNM/Rgv0pHL/SmzNBDfCq92XGw+pCliPtTerKwF2UZ7Tv7Ir+Y/j5wyiiMWA5mrAKnpxXz3XRFaY/NxOXm6CpzeqqwxebYGnOGYr/SdUsLHoIk5SK87e/GH+z0Z6QH8P10xDyPz3Qlwu/TFkS8PQvowj6foHbo6Zmhj/h7OsKAl2eeIujr6UsGHp7pmsAWDHPnJRYv3Wb5XqMZKYB9Rx2x0GM0R69TP+mh6DFISs5RfqnuPhXsjZqeMsonNVAu+q0T/qiBcOiFmqOL+qK6uqAHaoYuvD0Y2RXM0KPHom8Z41DZJiR77zGLAfc99fRhj9N0bWz701mgAnY90xXhzUB6DzBDLbY2nrcunrARKNv/S6fhbANKdv/SSXAfU3f0DHmWZqhCW37kTp9M6y/W3eafHi777kWv/eVe3Y3KvNQrNfyzH4bcBwS2W277/se8xvC77pr+na1QIdZwPx8kBN2xULX5tMT8+6vqHtU46m79VJu1Gv8+1U73FCXkRZYHvKl/7hRuVbe2+uwoXGiYBzKMZr7qX5A9lkWe9Ljk6C41fHnPSozgfSd3aqybeqwRgMPPgq9DL/nDia86hUWTceRDU/C4Lw/OFw+G5adtQ2cWHntlWaJJhROCVZ6PLZbHBMbeKhnByfoG1G/42Vk3n4yqfxDRVKcgCHODR/74MYxqQ8d+DCONftXq1Y+nV9NPa7j1ao5bxXY4sUy/2dad7ruBFLFDiSWMqkf9pm6o8qycUGKJaRj7eRcZ/nIOEnYoqUSwswsIRA8C4NG/urNpIPJX+lQnHrUm8504GktE2Y1qHc8PN5hYZHhssYb+IHAMIo0cWCwH4md4TFMSu+XUbw83tIYdTCoy/NDb+5eXQZF1xwkllUB7gobT5qPRTp1+U2ao24vmpiFbnyCkVOrdWbYBFN7JY8NOxG4PRfQvy0+SvgrJg1M85N2DB5bEFtJSYTWTpFi0ebDUeG0EKbepf16RrbMl54ZNlXtQ89Ec3a0lupBREsCoN4r65i1ZJyhXDKjiyyoBobb8Xmhg5kXIGKJZiFjvjTb0vloj2RjlSOPNpy8dNKQJ0kDZ3XSaKrr5Z37JsdqRY5SCtmShzPrAT6qCj5ySZX1nJ1X+t+aJgmU2KjOMerR3hCHxU7BSXU0QJ6fbcXhR2ad6/bU29UbNgYUIvq3oK+Hgzatljem334wWobl22blEzzMQBrFHqQAImz4gKIJNUwGEd1yYAxI5NSwQH8bauM7EHH3bqnh+RDqVkCYySKeEveZpWRjU3ZoaEjhhJA0TO76KOKQWQMoHBYCgdGDAQiDKEUCQDhAwBLdEm8t69boswA/UOC8Ixi9XPKPhSKV5HaYAXREfkEEnArI3wOoZXxgtZ0xYVtQUiFvaV2pYGb3FuxgrAL+EozM+P1bmvM+mRZdZtm29Upd9N6J1N1APjDIAdss3yHgmUD6FzpCMjUwDVdbYFBb2GovFF4FqJk4BijQQXnTipsHixTLTccOg1Ufy7i+eHN4UBGrCRgAU98pvPsxKFd/x9yKl58YmLrwTrDwzPWlpXkal3+xrXEjpN+r2FkTKLTWiwAoNsbgjq8QBVXodSCz+9JKnSwJfTJGto9C7h6dFBXAHkU4AtaQR31W01m6wncUM+chuoyUO7zhmSEd2IS1peCcyQzqyZiZcLqOk6NWDk1DCggElS+1enkSBHcx0SWxZ4iQnWokgpaiNSEsP2IxMF41tUJ50Ew70xKQjG5e2Nrx5mS4e29A8aSObmunSsVG1cKmXlEI7LkuEXrKhoufsrZ6EiP3V9Mwk9lxPyuG+q0jQ7ZoPnlzEYMkJUmKAG0YoHd+41OLqAgAIxzsYgJu5SCUaJDtHy2UL5J75cOgGvaDYNzBExUjuygkmFmlqZKdgONQEakcAjXZ2ULdPHkJRn8KIox9Wr6qZWtXss5fOISh0jiRbjSvEO9wBiSUf7iAAjFrPsZlHZd6UedSNuomtjA2HnpS2FOcFdRwABkg/DkBgHIqUVe4p6ZyHAXTkP4jnByMRc1orNxxLxm1a447FXhjBNLNt+3fV3OmNevrYYouUQOwVYIkmjeVQvET4GM1TDOWRl8sslHXfr1t1s0HmYxCDbZIn7l+EEJWOvS/FFR5e+/fLfurGpn/nV7PKN8uD8I8sR+Vjr9Rwhd+2tW6cqxii0raJWNz7xpd29a7GWqrDz5IFpGe11lg5OvFVp7BoMo58uNz86Yk0bYNc4dVr3a2xsgOVjxa50qrDPlZQdxc8R/SwbctVtcJnyDZom+QLNnRjxJJ6JroAQO851u7HRfnFmF2C7o1lETHy5ViW3Is2w/jHVJtRo+MsX9a3yZDXm/kCmwEfu/jajkGG8NwrKm6hHgNnCJLHs0LJ+Jkslqhutr3GVjRC0VPwDFFiUO0LxobXDLFN3dVrZUTlGRhlAIyv2jTCD8i3SZbfzbskLaJvkSw9befFKma7bwXOFuSn1beQSLtDsHkCQSwNHn/O30t1o/L3U+l59IlSvBbpyQrXIaPCu9vnviqzmu8qw8ZiHgRghJVgFABfBPVEhQugkLA3er/btTW3S1tDVCIgoMgte28ui7xyDNEPBEiDuIqhCMLKJoDBSx2FEZY/DeM1Iu61Fm4tXH7jl7d9PxoWEfks7hFH/sFYCpFtpkDCyZDrxz/9+d9/VR87J4X4QhYRnp9x06AujWpUNzsqw0sJMZ0qiANJP5VAJE/W9aaO50QQqpyzJRw1z+MyhCdSubsjhZdWIKygadxu54tzkwQq15hIN5ScONBvyqBzHy7XKY4yeKslkBzpaFcMo1PLFUdPWFMUw3Hty2A16k2v1M2VHMiyLIlyV3fTS70aJ4P0/QwoL46ieH2j4FNoHK69cUmge7jRZ9DcE019Ikry9x9GUBIs7YtzbMvgcHorlAfrs8gRnRCw7de36i2lhluWZfJqWu6EW827LSnNk2+eDBX09LtRIK+nB8IKevoBc7+ioq4OZkSKoSRg/VYjT121MyoEsDuXEjurQ/NAcRTFe9IjslzGATtYl0WiWr0oUbTZEwBxmj0UKLnZEwAOysxt/ZcaOddKArrGZXJsGI2qN2kl6Ngm4zjNnjZf7atEbZTdTwLXt3oYsf08K67qFI5Z5HtGNEOxhRxbdJB5DgeScgcsWz3dCYsG4Xo/2SxZHlA0znIYnFMURuDMHJPs4S0cV1FwJSogaH8wXd1+jHo1xHotIFy5tQ8sct7qB5QEJLXzw37UzafW74LRz2z1WG+2re7WD9jX60ddQWZICm1sDOKt1q3z3AYtbgVn1iMWhDL1Wn2quwb3JAdYAqtySM8yluezQKz6Rq3g6W9AcAxbTh45dRNIS87eMGTb+hmZnwXKh6DlxDtshBRod/5wKFd6WPWGqX0IWk584ha25KEMRFg+iAi//eSRBAOJO5wIqLLGFAiY3Q391F2/uXq4i0/NwZCCrkkNf/rzvwtjro5WzBTDyUEPs6ra/FBw/0tAWXbnwHqptdliUwcCy7I7B1Zs5ESQscZOqTCRG8F4WClXg4mA54JZDlpKIW3Ds4AZ9aKMUc1xk1Kcj3AU54D9Y1LmI73AQ/NzQI79DyX+RA5GJT6OaVD3evtyZTYXa8zVhEAJzc+RS+963ivo4NEJQWfZFcJy+sN/TEaxukMoYJHeEI1Y3BmCaUnpC3EkeVcogSJ7QhxK3hFKoGL9IM7F6gYTUSKNIgsqpWWU4NJ9II6Y0AWKsJg9IAGY0wFKUDn9H46Z3P1JEPHeDweLdH4SeU7fh4Mkd30SRLLnw9nkHV8Eyu73PtWD+l//+m3U4CrJ6Veyh/PeiVshh+W82KpjSLj4LTRESnVcqWNIiZSXTbgL5+lXwUDgGVwI8KKqdsFwatqRc2X6Ybg3Gjl754u5wVNFm3oAVzp9tX24VJlX2IPTV3klnDRZIlf1qB6wM4SAmh0+VVavu96o682zahp1eskRPYntY0Tsk7HoEVBAwRj2xEXnq5G6VfwRLV8dsUvGWKk30O060N0HTBbSb8RlQoGaHTpZsn+/3eUWS9IOnSo5qHrTqmF4fNfj6vWReOvOl0ctU1HmO5l2l2dw5J3QqZJxR3Rflul2zpLeHVto7lSja3anVmGGGSBfluvy5q3hZ+QmVQAiMBIAOF16P3VNbT4u/wUUPv4q8NbgxFQtoRDmE1KE+d9IpX8TMHNiqpZQEeZ/izD/rW5fRuQufD8Mn/9VGmtlWdApOgLT6brpXnpKff6dnx7qHsYgxvi7cQ4kItnjnU0g2Ee6GljOybbl0gHVPKr1RnUj3Ph5YQSj6s3sw3r/cohh2QkTS1WxaJDU+0ljQv42P/2eD+lHI4a0i2m+Fh78qJYf+AXSqfG9N2DbfoqpOoWCoXc0hLfaBOabpXAMlCAw3+Ufi/8Qhhe9eNfaUkreriYhlrtr1RPyzIEl7wRMSC1zQ9xSzNkJD1D8Kk5dr+MEEBzPnP0i8Wtnwlgr14LI1MhZdestB0x5/zM/Nc8fIzzn9GOrDiFx/gMbJbWkE/QfgQWP4ZNlV3zFVbYY1b8HctHunSEI++IEUsRrrgyRVq9UN6DV3VE6hU2W25IL4YHiFl75looe7yIQVFHAKBlgUKu+ayQfiG+RLo3OEkNNel7IESP7c1cs3quHYkmdryOb1QVHgLb1xPyQDiGT077rWFlax6CZYvK8zu39I1iofz1U1ww+80Gk4M45NujwgvE7663p1/MNWZKIK8somrbYPT2MsQ/IwB0B4RhIVt+yeqZ9KP4ml1Ed/IgLEml1MIgm7QDMSNkQq7hzEH7laVW3hn3UoSirY3Dxt7iQl2mPTzgl2mQKTCNvroAwWvLwChNA3oCeeAo1oj4eXjGZLZwdVLDI0zTYe3xU3NXJjvEVWmlAMHaZmkTimKbCINlPe4mAAaXra7KIq6NRNKUWe8pZGoIBPlSTjKF+bvVubnaFHLYiWALjNCC3/Lt5RwS9Ycz+XbA5sHvlAHvBNoi0cg2wZFmoqAsBlqm+ouj+MI40/XxOCIA8oiOVxa7cCgVFl5Qh0kDV2b/XFatBdrDSFSmIW1KfHP60ahXqp9QuDgirkoU4/LrGgYhUuVA+peYhIF4FfKuRzmr+hT8qX9XdSrXLPsjnucG8rNsW21m24q4IOzSXZ2TMA87U7zcb5KZLW9cOmCJk1B+TGkZ5ginDFJBR/VzS8Wfw7hlb2QnJlXIqCzbrkUx1CPfyY0QV5Ezucg7ot0Vc3HASgG5tYAu8mn6jVrHcqJxwLJmE6ViBOViBeU+ZyQ4xwxnGqBNaEEjQR0ZLFDqGwSte7jUqqBMWIj/EvK8ocT9z6TljykRx/4FR61H+zMw3wZMVnZEN49JVXy5REeOqMJzAXQQdQiCxSoc0QCKopT8ZS3iDTKo4PpbBtIWDGRLFKXdlRv0yX8+pHtSw7bHFxzCYYE+2h4/SYJFWewNmYoEUYN5Xan6HAh67YSwnm+I4+2GNCOdkg9RCvjyxcYWpAxtYhfJiF/Ps+p0AtDcrDjVzSGh24UtgOJ/oa911qr0y+2uZye8UCcv/WKmzjGTs8HFGJ8lYQtL892kajje/FIg8GEjjwGcDc2Co41k0C3hCS4gCVNA73c73PA8j7qQNhxRMhPaXfsL+BHjklW1IptlPBDaQ0Uatxt58Q1oIAsU1LQGz/BFS7G1KyA/T83yL2LMyT9iZSookNC8B9a6ezQgegKFYjlaJCO5XQU6Qjr+K5weM6MQ3LFqwmPjxjnJy1cbngKywzI0hoM+N+ar0W2NxIaNWan4qHLsz1NfzwqfKEm5LnmDMaykuhc5+fCXRrZmgsHyFxmMg12lk8v/Vw0dLfcl9uFSZVtWIp5KncwiYKsRdbQoqLL3mJIPAnZLCyiS495MjDF/9GeoKbv+EZcGGPb6+BgcVDHi2W/iCdCrm6mAVK1DWUpcdWtQDhOH5WyN9939Hv1Qk/upoy0i+nyAU5zb+ReM8t8yvXAL0GP/ocKBH2jkwESj2MVI8Pf62IhcHrLTX8THDEkSwhklf+wvFWzWMy+l9ZmoQdIncIwGK2xZSaSJT8SViIFyBJWIsVuESMZSI9PGmz8IdecbF0SViVFu2REyjIOVObXkEofhlzsloZ9uDnc2Z/r+IPOb+y8zwyE7MMeDd/l3dyEXjpIFgqNE+T5sLM2J+ulGVyo0hVjZQ6ii0+GSMBmNOziRYWZl1jnxa4szJKDuCgmCrfrPth9jcBMWyzAtCNXpYfZk2z8lYTgQFwdRWD9EOHqU6WZdHysouP47yeOhDPXw6+rWeJDg9OxDB+2xxrKNxQaB+uTKrbi+0iY+2ULIwloKIRrWqHhTqrRzHc2Moj/afqk79ENwYCqINqh5SxwjV0bg4UFar4UVRFM5oNeS0GW4MJdH6bp3RjVvmJaHG+VqRVKSDcUmg6XnMKb2TeUGoHKIQhzejkODNF+tlfZBuDCVzLjrjxZmoB9G4MPQkDPeQhoPyJ16vSq9fmdOIU9TV0Yyb6l0KsG8JfqSdJKDebBfK42ekKIDICakoglPi+xvCr9TKfCxV41f4lnEwIL+0kQsu0EjJqy5AZkT4rW4nuALj2gebNHkoe5En5gks4nV73rrG3PE89M/TMHbYWfO4VBVGw2yl6YRjE+aTd1gqsBvFOWEbPTsbrOZ7Dm+WKx9fNNK7MLCxyM6ZAMovlIEsdhFNgvyhPpIJ97b0ZyzD2d+Lc7H6Y9KDnkN+e7hN5cMiO2d+bufnyOe97xE/2cZAD6M5JzTjYn0OdOoN+2nQ8etjOczElbLlkd/mo2b5nUYYTWFot4vV8M5MqyV7MV2Dnns9RFSdAmFNiqb2XAx+tPYoYQdjicjdjI5a6QfBCASua86RIusgmAfiVQty4876XXL8C9008+OrYqeTbEAsDf2gmst6GWR+1sgE2w8kSM3uYXS0B4MirhwjLGk+N9ab1t16wiaYsLxlkimOTrxhYXqyTYg6Jdpv5pkZ5wkrJGgpr3Eido7bOJIODAV9T4vmkL2oJYSi3tQiscSvagnByLMoFJj4ZS0hWOxkCsXGOpiSjBMZGzLBUoaGMmT6KA2FKX9lS4rGe2eLhsx4aUuIy5kSUKjJcwEZ5n7T6yuy/kUROqZFPhj08S+Sg37+S4jAeACMhEl9AkyISZ4yo/jEz4DFwbzxw6bv5iewsBp/+FlwTnl5VosTXXUMitaFIx3Kv6073XcX2Pdw+Fkwzmke2x4f5jgRVlZgNA1HQtQva0RP7AZ6x7DJcqtWr37sb+hhaXoG6cK7kf7fnu7g+UGg64RPliU2hnzF2GZQXMyo3aGibw83LEU3fLIsvvHjC0Y2e0Ap94vr6p+8+QYQUPAVEkN8LGL5AB9KS9LwHkVKGNwLoObOYaWwtgqFssyweiCAoOcXKETC7EIAFZ1boFy8mUUaSmyAyYFKGmQKcCNzChQxZUYhweLOJ3DArNmEAJU1l0Ax02cSAkRi6I6CxQbuAnnWsB0FSR+0CxDpITvKljBgp6G8znceEX01/bg7wIWfywJDSg7Jj2rdG6wNwOKuLDt28qEkoVjYOwkkk/9kQkEgzMOc4iH9ykXyhrrEhkCw7EpgEHcgERCxdzwSEPB5VAwjMqsSoez3GuU1w7EsgTIhF6sQDBN1oUpMPN5Y4ecd8eAFjj1GIheefiRSJj6bFyOLHNJLRLl//i+1SiqHyrUvhhU6r9ypYcA282KQVGxnRMa2PuW45H6oHFXaQnv3NYqbaQaMrK0OgBIabBoqodW2oVKb7rTjyzEc2SlmFhjZtt9Ep9toeP51Furn7DU/ft4vHOwjRVc/aMWKiI1Zfnai0QsdnBsK8Zsqo7hITGdDFQwsY6zSsSYLdv9kUmaeBrGcBTEvL8No8iCZ3/Hner5fjzcDDM34X/XzpFvxJ2yrVIcY5NlySCMzdySVbR9WsG+G3e9LxRxe8ksm/ZCABA9ukgLy3c4B2ajxtedVCofjaFcGgzt9chhEE6gYQNznl2bBvX2FWJHvQtDCFbz5moxa/Gmk33pNcyR8HOk3XtMo0XuvpSiCeUX0DuwCIOw5Bev+6ywgfttB3X0tRXA+06HWF03s2hs/kOAMXmTMD8bM214LyNEvYdvWK7XPGQFFYMicKXHBhh96e//yMigJlGOUmTM7twL4y0TUjxaZ0qPeKHHaHaP8wnC+g917YrtrhmMPcyBhBTsndgxiico3R8oCS5J0XZRkkS2KCpHQpQ0SSbauEUdy68kw9pu5F3iaD+djBz2CUPy68a6e30ak3oGxVkcLrB4EyKy03S/fC9w6gCH5aVz+SxZvtbdhpfGAjh4BeVZwx0voH4zKABBnUEiG2EEUEQb+eeEI9JGUmHxY3X5Xz789PR1NcBwvoOhMihoG/axbPcJTBDT+yrfltilQylC8+QD25YT0wxSbZXgGsJUcaXU2mJferBTRZoA4R6MzACHO9TiMPhdI96numsO9G0vQKz1s63H1+kR+3zBlNLYzJIHuDkDOoDcoBhPpHECasG8oiBPrKhAioKcoBrXBdsBwoI2/61UMJvJkLo6EPJpbDAy76Acn8q/5KYZC9/QgC6OjZ4pP4rZyKthY+ofVL5GreYiO9mCUlhfy0/IkSuKpdQnk7ni8PKNsuwJ5xT3WHwM6U45ZQ9mrenid37Se78mPHnpAAwtcmNSgjVouhhhWNXxGn5apgCjgIsPThg1I1l1v1MVbrdt6N3D+XXdN/54ASURVCLZTqhmOmfD4ql+wd58iqGhEhUAHtd6obnxQbT0P+38b5xs70lCJqArBToN6VPWmVcPwVRndN4/velyBh48irHhM6ajulzuqh3nRB2nt7N8F63tzCFZ01SEolhwLjz4yx5QTLmazAJaW8mIcjX6eRnjSCJCEVul50JDtrS9thU6XVF2D3ZkcKp4CZwned1+QzStQ8hg8SxS7QAiUDK4Ryq1c8Ngx1BaMGDmy23Z+f7C5EtWr0Cg944fVqP7lL5cbZvLt4LmiN8zkWqFzJe8nZq22g2eIzjde8b9eO3imKP9jgm/lyq3XI7bIGgIcgpYTRyaCobRk/ocIi2ddIUXyZIuDxJzchFQ5cxoMzB4QLcd+P9XDPDcY605PG85JboaZaMV+vgsKu5adq1W58SBfLiO94uPnfELZYfQc2Gl8RR8N5vNasRTPT+r0PJtQfJY+B3gZwuKP1/Kh3YiK5yx1+p4NKT6LnwNstOqa9iM7Z72IiudsxL+JzYl5PJ0pf9nXDaQkIOFcekZSyKsI2PjyiwlykHsz1i18JoVPfIqkeK1m3qPAZ824VSEjGYw7FthJSL1xIQOfcQECGz/1OoQM/Lf5uu7MZvEUx9lxqbsc2Lzimx1kwM5AXW9UN2dOxFsRCpd/WBqNVeYQCCYCda7H7ujCYSKXdUnksS1UXFzkhyhBQW/ywlnoK70i4m61G3Yrtrrvbvu6Wd63JiofFrpEFSTjllZENFkYlmWBdOUxQD8GrHCkaHhVpYGEFZaBhdWc+5eXVndUowWHLVtrgpjT64yToCI1BoCT1xcOFqe2hDDJdQVBcmoKZ8HpDLcGstdonLSVWN3gL2WkSJPTf/5cP0U6Nj9Ovl2v/Ew3cVqbAkXPWQUT1CRx5uQuaSaXAsSZponnZCkgnAmXeHaVAkLORfgTD6a01/Q+9U39wWyCwbCFmmI8bvGyOZaotKaaAJOvPgvRIk05gSZfvhWixZt6go7Z5KcCRVsXHlrK+o8QeqPM/IgP1vgQnJZlmfyL9VIES8JyqhSO3YtRmDnrkkJgXi9HwCavQApBh/nEEzpDIRFt0zJ1EL2Dlgahr6GVQvDGBQRO8uqrHNSklNvRrkx+RYYvBIh8/TSO5gxv9j/H1kzDYAVWHpBIhYsOQApSnCJRmKjzGh8AXVnAxGWLCiSIXerXm+2oVYMWt/27+BA/5tEVRFq5BnDuOqjCChYqimoWR5o+axUCIEespLJYRQoFRTUIkXarzrBGXMP3PwkqDO6obccl9tE+MGIuvJthfXMVVT0Gw4qJFsH9hF0VoYtwRBZ2KHQUBa6EEbFh9ao26uYKebfFUXXDJmUp6S/qioldRSPSqJeoIytzEI1IIr6hjqDELTQi91a38a+6OoTilp/Y6dRRS/Y3jYAwXU0dlhwvUwDHblG7lfnYjlR37IQo1yGH0fK6ZBdY2ikDqrJumSWvOz17qNdcBCt8TqoP0WA3DVDSwX0Ccnl0XADIykYGmLxbkxuyFjfla3CTUHub5Jrb5NTamCxedk1OuQGyXplte42W2PKbYP26eYTP+DtRVYdgaAntkLBK0YAzOFdiFyhRwL8zkCEHmKSJN7W+GAY1/govt7uybuA0wVc1bFmldgqYKNQOd1u1fhp4am7oZEmuWI7MRretnl8QZYl5odMkt0b3Brm/yZWzQqZJvaN+Zq7QO+1bBshADdHsOkP3In6w/JUoLFJxEx+kAJ8dRlvdAMYyonOYAUB0NrC4tNchQNxSH5X5VDdf1Pjemx93fYMvQmJhS5Q/EbO0EiAJEhcEhSQsjSiSUyTki0MlHxjKek8o4/kg2WtB2Y8DpbwFlP7KSdajJtE3TPB6UahKELXBAU3KGiJXqMiDDDjcAIesG7hByEyRL5AAkdMLJUHKLPrMBRKIJbZQwsTxs1w1c2woxe5nfv1rVbeGXcb96KpjUOYnZNHmlrONkb4YFgfSo9qwIPYBiwlLKprNkbUaB2P5Fe5xNKreYFsdTgjB/Ji8EwaItarj98F4uAmbLYCueM+FBUHtigAQ4s0RHsQcCtkAgiCOwXOyH1nNB/Qka/osaXrfBCBI2D5hgeC7KACEcDOFBYDtqQDyoq0VTDyt1fdbgKyGP4olaYI9suxWGISzG+KfeuRODuGgBUakRMTCGQuSGukolgKSjfajQG5hbM1861zLc4Ymgpfwh45FL3WJplKX4BUdxRM7RicAUr7RUUCxe3QCYMRDOsrIcZLOw6L9UyWACY6qCeiki3IUV+6lnILIc1SOw2b4KidgM9yVo8ipHssJuAwX3ShuqpduAi7lIRvlFDvJ8gCdzu8fjWHd+wUGLNLhoRGLuzowLSmdHI4k794kUGTHhkPJuzQJVKwzw7lY3VgiSqTFYkGltFgSXLrTwhETuisRFrOjIgBzuigJKqdzwjGTuyUJIqdDwhGTuyIJItkJ4Wzy7icCZXc880vrcz91rEHRHoi2EHRFU6P7h/55GsZOwbd3M6SqMBpeJkUSjnVXpyfUU4HdKP6bYL893Bbg3cUCdyBpiPMVG7pbHta6WV5EftHw+hCHFIvsnHlMvEDMQYaeIS4P2e4eq79Y/THpQc8hM+oDFtk5E7CdryWbVwBH9CwMBz2M5pzQjE6TA53ae6ZBxx835zATT5yXR37TjSrQkYTRFIZ2ul2j1O+vSrXRt6DhkCKXWWXelPkGP31NRF+5pkizDycEg5mdSak7/kkcz7gYEHyCN4pCHOCVQawm9XV2Z4OrLoFhG5YBma9Fxo410CSWZQmUyGyXYuFMd2Uw3W4HQ15PbMMSIFvTv2j4+SkK42RWAiL+vjvFkvjIuwxx0KN63DnKywvNNy6RZ8TL7yQK8Px7uVyi34SnuBIeho+igd0j4h9j/y7pCr91mk6rtSu+DxspfcodgZe9J48EOFMZsk7WTW07rIxSHfGeeBCIn4ld/abXS+P6DTyVC0ddeWZI8gJ2OI1/VT0k/VfVCzz0arBYDnFUu99hzlkfixbur07REp2SG62T4LZ/rtvLGvZQPP0qOPn2avqNWvFirJzQCPwJkUwDR/cYhu/bqrrmcXcZDjveyrEhU3WCxjwcOz1PdfQ/wOYKlnds8uQXjypx+j0rOYJdun2/btXVBdgmHH/k18+hq7fPiDuXG11lBUWScGQje+cnU3fDS2828AqUrwrY8OWd0tv7Qs4ecZ97s3NawvzpPArCNBFmPz67aJ7qNb144aGghokgwzExn3tzeUonp2xwUwEMVLujq+NwSMkYhZ/v0Gq4NPdZKyz1ViPHRUmWg1URBOo5JZIi+oKSEMR6HBc7hU/yhPYlsFRXP7fqS9+txESuaQmYyOSdguFM3mUw+zn4Zd+Ic8Y1LQHTb3RzsVqpYZjdIR+mFp4TUlBwFCXgds3mxbyBosePu77TY29gR3YKEI8mERJsiW/1m+K3xkHo87TIsAzZKlNzZiKx6S01xhi21oXRiFsHonCxSwgScFgdCsYDdiqF80vS0WCc4s6GjcftcBAyrNMpm4fcjgiBxDqjspDcDgqBxDqpspDSjguBjXVeZaFTOjQEnNOpZcODHd383TaPy2yTBLfCCTq3Z3qu60da7QyEabaTQB8fpO/EwbHo+3GKQZp+GO6NXmspnmNYHqypB/CwMU60tzgDigGP+hIkhn/kVwLyCrsv4CCvAk8FIcjxHWgxkW1ZHk2vu96o682zahrVPKmf49N8LHK2FGZeJKYzoDO79pA0p1NngLX1qLrVB39uEhAiMZwBdaXewAulCLa9yRlg9BuxXUYQ2XZnwOrfb3flIcSy7cpjDaretGoYHt/1uHp9HE09qrUQEY3jDLjwxWUEmzlPLRuGWgtJdhaReRNDet7f3TlUyQAcu/I5gp0DJoBYM0mGdNzZEIdIdDEU4t3VXb1WzZ1qdJ0wBq+wKM4C+6WeXZ9nX8TozhkEGpgXgQTnNL/1Db9/9AOfZ+kOVMlfuQtSmr5whxAmrtuxwVjrZAhb+jIZG0+ySoZQihfJuHD7Wenum4isO8BsYQyF0LjLdzBW1uodF5E7wocRs4b5XETu0h2MmLVyx0WULtzBqEXW7bjIKct2MHaxVTsu+nKIIAn1ZJn+hYd97c2mvgAdYK2fJf3pJ6NqYmRxiq86hZVk9Y4XP8qwHLBg6h8DlwPY6s/zUGD+ankQrgFVsqTws14mZyzNU9hkuVWrVz+eXk0/rYllRUvTMyiW4at+s607zIs1xLCDF4TYORCRowuHwg6fXghG1bujjDxVO3i5tJMnQkII+BhIJkRDn5AKKNzwyQVAPecWaqat05EAr+jF6IH8a3g3eqY4fJVdICy4xo4jyhny2erJgzwaY3hsuc3tKWwx+c28VICc1wv0rcDJNZ1+ZS6QRB6Zy0y1UTuXWuS1L4DCDl8MY/iht7FlaIvCCV4MYtQjfMor0D+ETC770dQvL3r1Q3eslRJbGrEsi/I4Gt2t04GO9ulY3I5fdDkiQ3jq9JsyQ91eNDcNr0wCk2Iw77qBL7QOGA4hy0mbertVhp8LnkFyyR/jIa7nwcWhG3nSAC6PYzsRgmsmgQAnkswVWz+kYHrZtv37o1LzB/y5N/sZL7VfA2pVRDyRTGDN8TmTMYCKPS/jXelRd+upphwKYArLrgTGpK9btVHI2XUKxLEsgjKoi+bbIdb5NAy51YdQIZEkAtrf0d/UsL3YgkT7n/hfih5mN7JYVNUxGIx/IMKGoXWnXxR8UM+RsQJyhcQ3VzuCyVdWR0DWPStbj8GSUsu8ENtRzLkJG8AJa+US9V29JUgOQfi1dN23dHY6UVbH4GS2Hklp9xujVv2bMh+DUuBSHUgA20px/Ozdbd5Ee08kKH0E1pOK+Ip6QbLdRKH4RB6iPnOOcygIk+4XykWjXUJhqARvUCYO5ggKcoh8QLkAsPsnrC/w/GTKz29IsvX3gfHvO93LFNYT+Knw5UnfUoxD7lbKBJJ6lIKARZxJucD0kiPMl7DsyMTheo+CXFmOo1xAzGcUJhK5i3IRSE9RmEPuJMqFIf1DYRi5aygThu8VCoJlOoRyIWFfUJhI4AbKlUemhbC+P/0rAED7gYIYCS6gXBhkcRPGoLY0mYJxn09QOtHdkw/F8/TE2DKcPPmIcf9ODC/RtRNHcyYe7XCIOd5tIWH5U5FGtfXH4/S8bHx8Narta3CnklSqkFiQmo0lEEPUwzzv0N2kx4+LVq+7eTEpARKLJxnTKbanp69/w28vtn5mT0Fvrv7lYhzr1atqvurVOBnwGwpDCUof8URA4qwa6kZKADfNAwFVZzgi8CHgHXlMW+P1mS+50RuF+b1gwpZNrvx297OUwDVLgPDq9Kd6UIsbFwJx/F2wgIuVpRtXpBRPYCj7Zb9Bl+etnyXtb+xTcOLkfgNHTmmGuWp0fsVEqE2VQCq6k8IQHNVPsF8IxPYBJUJQRTArXbdUVfZC8avF3FHVqxG5Vx6JuXKs6MRZ6Hk102eQVNA4BF1PfW1GdY1Lzn/uXx5V28IzCkzcs8vF2Le6d3SXAZKEptkwRsMDeBRhb5ArbNRK6TfVXJAtrq/uWOUiDEuJ3vZr8JJUDMGxykV4q1vdfOtGDfqwYQiOVQKC3+LBdwfvfpG1bMjw3YoKfNDaJ096uNoWkT5YTYvibVXCW9G0FPlGtK0ofxuaFkbfhLZFZW9B04LIG9C2nOTt50BMvHNuKydvnNMYzC1tmyRnRzuEcT/8v86x6dV1t6q3wzQvijf3z/+lVtg3jIYvMi+lY4/OUPHEJA+DYkS8AZEYbH6C4As+9IxQWdblkNBvNQJDj9vEGJFpdgSGM+HmIHlf0U331rdvqvmq+m2r5o8UwQsD8r8b1Y1GwzuDeMzVyQpNMEAvrQOYOl34pLCXxV/73QNajx/dfMN6p4dlwY6aoFEm/Gyfb6yG77/nSFRHczQXyJRJCyIORBdJCsx2b5OMZEWQC+bXGqPf6pFckbKDFOnEggij/ZZDKS7xQC5Swgyx/r1Thn5kEFQO7aQYXvkdS/sfqrn9MHo1POHLQHBg8eyF6F0IBdZRRjxFyQMUCok5OpEh0d0QhcPoimQoZNNMkcQbZRkI+nFSEPRnKgOIrMZSGJy12SiM99k+KbMZ7l++DRjQKUCBfQAvskjGWmxpmenLcTIwLkosb/uCsQVuUCwoIUJO0mgSpcKr6FS1JjPlEH08O6iq+q3Tf0zqs24jj+oiQQtkFBptJONAclQ8NW2VZnXnEhje6AInEowyIlhBXfjR9e9YT7v/tcgY0Y4rOjw8YMkrliUiW0cLJYOsGo4DcbtPWB75iQxZWLYld1n5gtwhEy/58gJjc8aahgy8SPcngOT0jFmoRP8gwIx1IFJE/1Mx7a3usIX1/a8l+hErplj92CNh6/LwfQq+xkTcpACK+BkzKHOlXnS381vHJN1QRdsFIGp2C+DBi0sL0o6UGk+S+igg0Wj1R2Xx8ozU+SDgmUrVqa7ygo18JpyylXyUbGHi+0SUY58qJe2V8n/2w7ZGHQb2vxZozuyYIjl3QJJ/EI5I7EMIZZysubuIPlDvhxFkE330BoyY9UBYgI0N2nl3I8Igkne4uEDxp7VhlsRHtblYxOvVMA/0bnWKMP2EMqyd8DY1geN8DbvF0P5z3bazl/Wyew2CQQFFcyy4KUKjrRrJZUxwOtAqWQ/I94njHI2Q4pcAYCdUCHnRRTwxGL8GmJXajvP1tw/qjwm5HgEKxy//574Bz2yhsVZ7C36Cg0Rg2wdtPyi4N0NhjjZ44XPlX/HzCbj+yah8fiy3raGbKSiSbXYOqPG1FxbS0aY8jlHDtu8G3KMBhfIsy6MN07Oc6mRUHohq3GAacdvGRcEG4CiJP/4uBhI9IUgwpR0TjOB5zm6NNpgzGVG1j1ZJzaKHMH8nze8avpEt9oEdDPNB3ms94m6+KIZtlgaB98m7FoTBswtYvFe2og27ZSKJe+7cftiWl3XENAC/J7YJoK44GcGwx1s2wsmqAMIw1uMkzYSjUTEAdGUxBvFErgZIQHi9hU1ALtdEpDNaP7cuiJs/GkXS/tkg4gYwxPBbwGHUc5+Hgux/57d3jMdzgojJ93KC5B2QsWkwcY48VAYv4JZKIgt3gRi1dMeQoU9DBGrwmQipKDnUdPTIax4QKaw+kmskTqAy6yNhlPK1EZedWLzkfnQWjGcWz+PktRFAXD53QCCc0jaNGvurh7vo5Q9wSEGLtFr1UzfCDyIQkVe2IZLjcCIwEDX86c//LqY4WDHzX4a03bZ6tQRJyB/PuEQerVpVmx/wk2YUi2V3jnzae7TK88g2LJI/ZpMAsTcqAfBSa7Nta3EBWXbnKKDYphBBxtoaSoWJjIR4WAkvCcqAf6gPea06GJXIsblmLO9DSCFsw3PkzNaoF2WMan5VH8R17iQiGMU5YP+YlPlIr3Gh+TkgBzUMSd2NbViizo169QPZISQojlYlEKZB3evty5XZXKyxAS/BEpqfo8DedaPedAePGAk6y64Qlj1+/FV93D9yho9gQMHoER204RFLx2xwWhJGSASSeIAkg1pe8MK8fCks2xD+pEQg1PCEwABHJ8kQkcEIwcEZi6Si0B0DDyqhdxDhkuMAAhEeBqRj8Hp9Ciij0xehMvp8AjO1yxchMno5AjG1kxMhUn0cwQZ2cRKIoEf7vG+IjtWG17/RZoLebmp0/9A/T8PYqQGvTQy9KoxLUHCRfMC6IWXmgy0rZKWPje7G89+JjdyElkLuX492Lvh4188CZw4E0iAbPYy6W+2etaJOW7F5sRjPnt/EliobXurrlIHb6pXqBnWx+mPSu2sLcqs4FuPZk7JVZlguHRrRRy/ZiQjjOjs+d6TAwc8aN6Thx/172PSJ7j4Z8Msz7YX61TCuc+AHIxPhiOS/ayRythFI+ZHHWUYcxTvrEp30OTvnM3fKZTvj4p3wOTvfM3e65+lsz9bJnqdzPVunepbO9Fyd6Hk6z7N1mtLOkt9P/jd0kUm9o5cFRTtCcR+YDiPpWTI6lXRAuv8QdR3pEJJeIqODSAfk9QVJ3UA6FK/FT2rs06FY7XpKk56OxGu9kxpuEZTdRt8yn8uDwvHb55ferNT8oDh+FhUVqEJjON1gUrATX/VPvZk2KTi+aTGYw9tDD8iHHUXyIigAprvkXPJMi8Fk5BIYQT7YWJu1GlMyybNMQgE+5t1bamDv7obgf8Crycw43GbCjr9CbMnUHpJA4xDvRhIg0NORcgTVzQcLQNcdSPsUPEd003d67I3u1reRh+wgBtRaiORWuY9+Gi9f56dwUVf1IFC+qzocpcxVPWTHhoVLQAHG0QDLWaYw5p6OyIrc0ykIp4R3w1nisL4bIv9AIBCf7IC+hxxxkHn8Md9vwwUJrJAiZiEQkx5IW7pOxoPAT79DDMJz7zwE5DAcpC85NM0Uj84UQI60RR8UCfzk8LO4XpCCHx15/paVtOSDsCBDcqVPPgwLYsSOwTJl8QOwoCpw9LVA2ulDsARIcPy1AEzs26eOwKbJu59ap2pzgTR/u98kRz4/GVXDAzI7suoUkJuYPSYqvJvyc5SPIctIr1q9+vH0avppDR4nduW90KUQ5nP6l/Vy99R8ry/ygbkggA32aUfk+8227nTfcWTtsIVSb1S9W5JlyNthC8kvO6FXyEaqJ2+HLSNPHXJ2xaMHnGNS6ueouoFXzk7YNLlXpdevSAttSx3DlclQ+Ai3Kym4NzoqR3uIe7qIU3gWwPDYYpNMV/wYsIzwcqcVs7VywqZVpyUKdKITiNGTG1pq8T9HNyhcMSdsmYw1and94reHG46+HbgMwPBDb4n1QEffCVtGHl01cIRliwURyanTb8oMdXvR3DSM+hyEL4Pxrhv4ThNX/RAsWdQdQWKzCMlaSKu6NYZ+mHIew2BfJX7PlEbHhsdH2fwxIRW1nfy+blQzd+n48p8bRLzqjF30AcVbuTZIcjxm6dojpCtbeeQBRNpRCANpThPE0VYEkpU1JihAWLHu1Fg38crlBCtcwcK4BZXM5U+qaIB+QmVjgXAqHIDDrnQsCLriAfIJlQ8DsSvgXd3pFzWM18b0Bq1/Yaj8zQ0kTlmxA/hoqY/m43K+4EUC41jBhc5H2C0vXfaNKD8cqzIId2oYkGdOaIqTYS4IVv8xfVH1JzGc2q/qYTLzpuUXNb735sf1MOpNPfbgvjIeWrAyXXcNOoCLCFS2MTMn8ARi30k/dc2T0Vusv4hB+hEUBHVGe8sqj9rZwX4AMdIgBqRSs9CcWtXoeql7MNXhV0EXXk/wDokXWXUIiKXkCIau8iGNk69DNkdRmWHvusUTc0ILJIMymdcWUMH5R0GJ7C56Qjwn3QgrJzCRgIUP60ZVO88mwW0tT84KmiiGr8p5UsCynEgI7QZcGfKuwagI0d46KmHTGpMJatidavsu6kCEBBVswQyDGm+upHFXJzsijUAayFVxZRJIHNMiME2/qXX3pcZ6LQLGMS0Cs1FjTbUNGMnJrgjG7MOhTFKeOKZFYIbpeX475TmpvnjGqUDBB/tU67Y3j8vqKAplBxJ8pM94/x/EWO1CcwdLPjm6YzosPufgYiUGYtkQ2cyR3/d7X00/qhXZGIYYkG3h3FmZfhjujV5rEZhjVRipqQe8pwpZ9sFLQxhwGRVjMPxtdjbCK+yjhCC8CnyTJAhX9ageZtdBGYttVhhKr7veqOvNs2qa3aOET6Ze/ZhfHpFkWCSa0tD07ifGyLgbi43QMk+AICyIeeF8alfqbSWh2ocvjaHfiOfUMBbbqDRQ/044wWNAtlFhoEHVm1YNw+O7Hlevj6OpR7WWwKERlAY1kvq0C10aYai1hGEXvDDE/NrfozJv2DoRiOIYlQai5r0Aimj1kwsR9wlGcBLdgiVguwMZzWIiHZ1XmH15zC+Loxl1RgVHDGzz8cLpjSGx5l8FE5rlHVP9rFs9Eq3dMdLKN5AkcAFHQeac+/tU80FcA2o0QQkT56F8ydhZqLgY7KPm6xCPjMQllv9iiOzDpcq09bMCXbJ8nUPAdKFuPWE7W4HWMWyq3B9LhdLU0PukZwdOFdydpRRUfN8gVXjiVcZJWhudHZ26aZbNutvl9D7VV1tfdmiTKm/Upn9TYgLYTAIBNtpLhHf1lkY4hJI04nNTuKuMH6vlYFykaB2NCrGPpfeYHGwt5pWeZ4cgRwtprxJD2adt6uq3WrdzKy7BAq1zc2f3GacXGmKfizVtUecOBORoUaDQ4O8G81R0Q5TwWQRijHkvephF2sGTONkW8rI5xb0SQiEdLXly4ub4pB5rktPywqluO88q+zV4kC0Ixq94ox6xlgeOtTpYYLkeMqOpM3qFDGqWnwT+LtPLizKqeVTrjerGaKQVYICmZ6FE9x6Mmbajan6bb5T5PF+8ExdHjNIAdu6Tnw4+O3uvEaxILQjcMAmkMf12K8sH0CRJfOzHuv30Maph55MYlQYM0oUlaQYMuMLOx6Pb+ZU0pBM6/Eh+QPLOwIk2ox84siMwja7XXY+4IrkQVlAkG2Ni3A7A1c1q+yEkqGzJwbkfiN9Yzk6WcEUF46wO4SMZHBs7HcIdeojLiS5gK5zYYUoUcXUyiiTRRkfXbhrUpREFOBkJaxADCJlSoyyC84gSjI2UY0NN8gXC5Pu2uDz8zm2p3JgX/VEnSJTJssrPlxFds8X1jWgFWQCDLfygKP4SUDGQzqj13KAbZBCBE7mW+QU0yTOFXBijpdNHAwFG/sCAgSjttgPKIj04Agp1e8T2khsk3/ULiE/m+OUxY/JbjZyBhgkOwSP1M+rs1anVeL/MLOlRjOfn5ZrlQjA8zhCOVH8zJlrE2wyESvE14+GgnmYQh8zPjAmAeJmB+hIfM5485mEGyYv8y9jytHcZwpHgW8YDEnuWQYBl/MqYwBGvMpAv4WoNJg7bwwziyvMvYwKi3mUgkcy3jIlAe5aBHAl+ZUwY2qsMhEnwKePBCDzKILBcfzImJOJNBhJ5vmQpcpjnGKgn8htjAszLKzez8Fvd3vFbwdAuLx9Go+rNxWo1H0OG779CMHy7PIzjCYyn/ofit22hXRZGxJUPIkhx5GPCYG58IAZ5iI0nyHDZg6RTHfbYUEx3PYQtx1mPjchw1UPwUh31UDR4Gjq3GvgNDGEw/nQU3aVHIhXewQCkIHmB2ydhLnHHpeOfqqcs87klQZzy7uv4DfNBIH5Zx4bFYMy8wxYBOXbqsDZjpwx6vBtGcK3kCE4mT+2of9Pq/etyipHcroGDCtZ6muZNq3dp3NXJDkkrkgb0ioBu/6K9DONkVxJjxK9K5dCMwN2pGVCHSzEJJzMKKjAvAqU6bDucYjlYlUFA76ggEfZWRRBeprYdVkap1MIBIigCtnvdIBHKMy4DtLhDYG950ji2aUGYzX6RPRHIMi8GtewOJvEcLIugbNELWyiMLX17ixAhpTco2RXMceluncSwsyuDYfq1QV4iozlOhkVA5kWZxPbEMS0DM99mNw+uk5HCCAqBzbt/SSMqx7QIzKDUj4RO+mhWDCLlOzrZlcFYZrGJtcUzLgI0L+sQHugUjmNaBGaudYl545gWg9n2u2c5M6CCKMrA9e20Sa1HnnERoPdajynf18kuFcOesu7vloMo9j/xp6SKusXQjq2yQ/JWOg6ciHTftboDy9XRPQaDsy4UEXvBOHLJji9xkP0jR8ty/0ptOZmOWZVD2r0GI2aCzIpAMX2CHKIcNyAWTkLJEYZFweTlR1kWQRvUSF6O6tB4gZMBwvaRw1D6WlbJZaxAgvKvXJVetMqEoLL3su9G07ct+aECoct2UpgA0m9R6bYSlFfDUSa00suxgIIhlrC9IPwi6F9eIr21O+I5hacTFxlwRccIniprrMAbXlkNI6uGg+FFh3dEvQwuxxg0AJkCJ7fUyCFGS/dFubgJnTgBzOrZSyEXymRen58CbX84fUc9H2j9LNkyQ18Q9OMTPyJo86Ly+DuCgL7wKUEOQDti71KG+sewSJHG5WKPFwaa6PuFUmHyzcBQVv5sIAticez+29MdeB0vQGGHT087+WBhqCp/s5ADQT5bGELIXy5kQFCPFwYI4PuFmQD4beaBvPCZQYY4fFQoEBacmuKI0k4goXqCXzQHA391MEQQPjzIkKcf+gkIEh7pY0GQ7/QBFPKn+hgY9Gt9AUXCg30MCMwHK5AX+V4xhOMv9wUIiY/3MWDwdQafQfbWCyxtj+Xu35Rp649l+DeMenYGhTiAYJKx3VO9Xi4QVyPyAjoWfxXa8lIOpStxLISyscZEAhCqV0QhxL2jAAjuqFAUQYclgdjUa4WcXcRRTkbZxXLY8xIBWEbZAIP+B9hGouJ7g3xh6jg+ri4+jS9AwvoLlIZ0saeFgXbya7wuHIIIVpr7cezBqScUZXUMTqbpSIp5RqkXsN8HJfeBswQNNuIGFQ35iBBTcuzBxVFQcBdWKgdUkUf6a51/5lcNfJ7iRxd7d8mmk45CAi16kwOWsrPq6+zVhh5sOP3Kz6jIi6ZelKyHTC1I4SEKX010diIui7WBvqxoyAzKOmWmv0YPKfhh+OVHdbJgrPEeNgBGp2NjrbuvRg2qG5eQd32j7rvdGZ1L1CsFxmLGlof8pqk7t2Ewx0Ys79SExXklXhnCYII5A3xdBhZncGWGkyyAF52qgNMTXLbBfUElsm3bv9/pn6q5xO/EwiEA6zJIu2Nun4/+9HIsIIZ8tK5uP0bkOkocx7LKRsBu80PV9wbZwq+6UVdqa9RqCfZ7bTrdrWU5gceRjxe5wwJnwu6xSATRw+7KCeyuZhTEM8wGafWzqc3Hbb8SN5RVaFsAZ6U6+BwCgXGwKSWPTOdjBNSEXgRB3TlBQID3TiRCbKZRNRfT2GOHMlAO3zIbZavMoIfxt8WRVoTiW+ajDH+RASzhs2X3g7b9ce6HeuQM/zAmRmQlgE38YhkKMTTPhhpfVX+r32S5ZRllA0zb9qMDfQhQ+aNJing4KKZ8slJPExPHeFNO75Y6tJtxVpeJsBvMbo/Xr6FnU0EUzLoo0jAt7xklQ53ss7B2qxmx4zggEWiaA9OoYTQ9u7qegmeJ6o3qBvJsCygemGVBRM+UZxwlZx7f3mxHDR9PA89tH4NniXYr87EdBbKWQZ4wcl5efkw+83S8/FB8iRPeiQe7S53nzjjGXeD0dtqhbZ7wpu70i5rvBxaUt29UAgA/zEgRRM4xZp5Xlx9TzzudLj6Unn0WPeUIev7J86QD5yXOmSceLy93qjzrMDkXY2styUtRQNs8HGxTHwYgd/RzD64nnFfPPqaecjqdK7q8EiRquj2bAvJdP77Mh7GEBJZZFkTCTKDgFIA+hp94+r7MUfLkE+TZB8dTzouzjonvAmGP3J1+5a844A/cebHFHrez0JDzL2s17gJ9+vh2c8WRDCwk0l624S4Ihx/LeSA4MfIcEI6EUv8DV0vmfhATRb0PXFGZ8wEg6peV7tZkcR1+L1piTqTsQjuiJpSbqyguupg0VXqutLgAAWm/DPtpvFLEMP/wO78MN/VPvZlA57kgwuoUGC+7IyImqDuB4DGwSNDPtod5LPyr+tgdO2Mt+xMmAieMqdH9Q/88DWNHTFpiWlUYD79WUWnHvmtlRv2iV8RXFkV24zgvLnkii0cLn9IqANfoYdTdancObb4s+kXDp6NZnFhsZ83fV1U3yLEDFvTJ/qyY+z3ui9Ufk955tn17AI8nsqCx2M6ahP12sOpG9IgVCz6M56zYf0zKfNDnU1jYYTxnxY5f/M6iTrwIPhH6bX5NtUCXEsZTGtvvhB93yz9/YXW/YGCBN2w9DMSJJFqhcq3x7gBOEbFceodc3x3jOZmmwzjFYS3HgTzW7+LpAJpIP9LKNUCSZqMic2DO3WWhevIFZhwk5u1cIVXOFV08sOU6Dn4huQbphTRM221vxoGv7FnIpJHaTvqXAOH4tR9fL8WijW1wQtjotsgp7KZvqPU7lAaNIwkPK4C5MHduXPhiBB6cXxzoEkEkcuGKAZEyRlFxvgUQEogkXkpMQHSFIwYlW/Bggbm1aLeVR9QbK0C5VawgVt4ylkMrrqSBprBaMsTxcg7EhSULi9tl+fepxg7f7H8SLLK81brF3NTt2Co7JFxqBy5USpl6rT5RNxt6ioFBkjB5l6KjGL9CMSI1v7kNnwxxdI7BkkTgg/GOAPG6cyTytn5WoHu8E/8hVJLE8iemsA+UJDCsehNXOIRKkkBe3HYEqDe2w+jFg3L3W0kdj0dAmENxhyVnFA7ghC0f2onZv+ePdoLYZP2IA4su/sSackv9FJisU0n9Vqgm6rYQaazskDmEF4Rfgvh2PxRlFdnr90nJ9GA739bPZDqcr00jlwD6kVXavwAQ4Cd2n+djIZF5hBck/2uCIpR9UD41sVZ0OPvCBvGM4IxlAmDfGCgs+sxwAKd0j/eGxcoYClhs7I/HzpoDwKmQVjqcQVb1JDD0NW8EEnLhWzIIWhFxBFl1jMC4lXK+TY86Ye6G4FfDnesYOOgGoqxOwbEcdkAzBmiQevI4jYfFHK5BZDmjNhwOrQHUOAAOya8RZmePr+MRApVvzKklkaGCGxh/jhgKJ+h4iV0hNGb4Bjc8pfSrxsvFZzL9g0m+eKvh05e49t4iX3qQF2k1hO9Kp8qPeoQXcHD1g0mSuFu352bjsl696m79VA8/iNEGFLLAwBKPV9rJg0nBMr0ekOqG4+xtsEwXyaN9OyEv69wjOGEteDL1Klb+pzClSt6LMaXMLXAsuw3yRjvMcAhOlTRDlCzjQFNeuiBCWK7zm2GRYj0GKVWqboQphXqiTspeDyAhd6MA2KOSIAD5jCQu6JbmNuK74IYQ+mo+1pttq7s1OvEOI68gQyyJW3i3mr/WDwHEl/x5wi+z45Uk5bZBjjB+SSOkGrmnkScJr31DcsQKOE8K/0ZDMfKyVZ6cqOokVhv8i4wu1yCBS7S5VNTS1hdLE76p/6b7aZA2T9DGPhwRp4RYCzuZgEEEhcB4X0nuYk8cyq3ai+sTjLX8xK+2z30D7pHYEVX7QFiW7mjkXtqOBuSNLZDZqEbXT2hhWUJ2yESp8bVH2mlHZx8sScTsn3piJckLnCQ4TM8srVO4JBn8e7I0It0NKTDBV9A58U/EfXOx6KPO2a4S7oRNiwLf+02nqW9+/rnYd3+MjPXtL2TJ3/9Ji9kGUHKcduAkyG4LaMlIe2DrcdoESozZLpwkJW0DJRxvH06azDaCkou0EyctTltBCdHtxUmH0WaQMtx2w1IUtR2eONB+3Kl6mAy2beEE4e+rb2rzY2/8iN3oA0VeAYZk+o70JMiurmNn7ggQx7AYyDV8UUSU45q4KSIBI6VkXEsxilP9Dq9WYv3X6fcSHZgXW6wHs+BSujBfLd6HxQXn63Empt4xbK4c9kwlJkk+VcmRRVteX49uekEht/5x7lQNQ/Hr4v78+ad69aN/eRHEXgWWWCqDJOAoc2CN7dqjGCerbITd4fiU3PAtE1Dskn9cLjtCV32sn4u55vhxshxybE7h8lKgJ1pQYghjA7FAWLTkAQv7ZUddDWL/XrT05FeDOKgJ5ZdxNQhHmirBjKtBEGm3DJfLr67n82REQXqB8tdc4SilOeuzSw/YIRT06Tq2LOHfjAjHnJzZ0vtbxidJeVaOUSbA/lK1R+oZOwQDMM2FWUZDl8iROQzDNioCcKeGAXERIhlOdpkY6D4+Ik9v5MtksZUJSppcoeDLC5VlLSwO4Taz5k2ZR92oi+amG+YbbvouOuCNW/EbYk0/Qs2UQt+mdjMlmlhOLh2FZk8s07ctvC4SNRJs5DefjKp/gONynkxlRcHJHCiNKFwe1xmQRHUKRZNXKRrRWWN5VmvdXYBLPEy8UwyF0VZG1aPKYrOiOBPcUpsLEB7iKYypuiYrAw/2pbHwAScPKzIATcR6qce6vc5kcyIpDLhzw88qUSuKM8HlfhJ+POfBbNuLrA7Di6Yw5PBDb7OK+RhBYbDd6cgsNCuKM8Hl1kA/njNhfiVu3BeSfo1dxi+CjQ85/1Z3jWy8ubfgb8sRj/UwJKKP90QShjYegyLO6HDA3ChKwmWjnQ1M2pq5VElNGYBkV+tNbcbH2ds1PsmEgwpmTcOgRvgCcSru6mTHnGsjaULXkeeLWZVJIHNMzwLX9Jtad19qZGGMgnNMzwIXm9ZRdKzJnAxnftEIuY+VRDnZnSWXtsst90lF6JieBW6YnoeV0c9J1d8zLgXotE/9Stft42ttkCcbnACCVa5RbeDxRhBfdQiLVFKHEMvm1/6dnYDqFDpDEtmSB+SoPXlMyunW5seqmVr7oBlic+YI8lEuhtW+G+TakSCQoBaukJYTjLLaB2ekZ2HFTgBjd1chqvQtVmzZwawEorvQmZIj4gaDaI6UFwwl6laZedx48Wzi4ykwJL/ybI16UcbM70w3ur9E71QjdCokDiwLwKTF8H6br4HOxHPjKIFn5mmRXo1P/e4VmkfkrS8KD4kjES+sRZGTTkGgArvtYJTC3faAHWsR8DkajBG5DIAtjG70wbKyjT4CAihhXiOROuFCFvaQOOm9H4AXk+3q9mPU1OcOiVtW2QjPbb/6sb+Y4eblosHXsjEcLIZstP370l+P70uLsCDrbKTGIAMbBGIXPluWercW1Y4+WysBmMa55xt77FlTnMKzzEaZ47lohouXURnUDQajAYzzgfr5lVwZxsEkW3wYjao3qCcIBuCYZUPMw8Hl6gdZO+aY5UPojdot7MkgbLNsiDeZ+FuqaNg/Xql5gWFLN5NWoEJ9ox9j0DPGRwA2eXo/GYKAvWQRHGGfGaDFe8wimIL+M0Cke88ieGRfGgD5PWkRhHi/GnCAvWoZGF4fGxKhPWwRLH5/G5CRvW0ZuEjfGyKFPW8REOLSSIQkdm8kX5oxBAjV4QFAkbzgDAcCIGQwUAaIMTQIgeCBQREgapgQgLyVAQiHDLf1qLpV/JAYHpo/iHjpzUrNhyfuX14GRSzSoDJVGAX14YCJw9Z5VafnwClUlm0pnP3xuPSc8iMoDPY1ciE2E+8r54rsBMjdcbqM3PMiKAyWnXtgNKUgx9qs1ZieeZ59BpbTXm378X9fNLE5ThBKMMnZgjcHI1FWu+BI6kJYbIBer17VpwkdwiDirlk2xH6kX6/VN2QjFOPwLbNRFicREcLBIle6UW8aWWFHpI8WudLw7XeYLHEDnkAy4o6CaXM8UfgQ24umQZ0ZMQTLKBdg3w9dNFfU4AcBgYxzgRhP92I41Gu9aTBGbdt6WYHCLtjHWAJL5uCVjUZNthCm6GyLLT7PC4j+EdF3rErnxzTIOpB9+ISc8Dvln9ilM8cfae9dP7q/O9UYjdgNxpdYJr33HWMzEQwpGE6sVvOhX8RTDI+8sg2R8oETkdjSEyis1l4GM6qNPEuOVqUQnrDr7WMUT+Ql91EQuyo+LePk/ctKuz1w/MoONHC+GwMdtcydAU8TeZofubUlQmbbwuWRiAOuArBg8DUAMQrmdxHhEPlfcKCcKntYoQPBDj+K2kg1DPpZo5nuxFn54ZmpPFKjGKN+U5cTUgt9BiswUtYxwRVPapUlsiyWgRMLT+YYMFEInr14IsSkJS7QzQ+23u23XZagV3rY1uPqFVvz9tWjMSSiLf8V198HSxRBnVA9Fdr5lCHTrSfkKo1A6Rg0UWyD3BviCW2om0KiIvSzaZ4U46m0qCDit+spUf66UQm0X3A1yOtBoyLIW7SeBvUaLSQhfu7Mb3qpl85E4sxHzYIaQr9nFkWAutKLprmccL9VKBy/g11NdF3xI612BpEk2cjSwSaqLBtnClCiH0yAIhtD0ShgmV9GiuVyEjzStsKXZ4IIqxWwIgOmZkZEBFXXYF4AoeApcLpgpDE6anGaI0JmoK7VCtWG6FVaHFH09qhQkL44iiMWa9aPUqyW3RVKb9yPqskvWXKQpE3+kSrnFUsMDGkUImcYkKAFlgCIiBMbZi81ObU/PGPA/hAyzjfQBEk9BAqE1YfrGYdVHU4hyw0Owmh5wwMXPKMq+urJNTGOw6kFPk5yJQBx0DpAvGoLheOXv+qQBXY02upgwqgB4fu1rvhP+FJ0QntnkS+9u/5EJn60SZJHy/anHnmf9yFg2a/biZX/cR+pc75tVzv9047BsL5sFyb9wwZgsLKfxxIxrjkMv8Rb1a3hp+bAOKtj+HiRL7DIwEojR71h0X1ouSSSjd+WD5P1EVlBi35GfrzsD8lmz/iUAv3kj4kBxPmcAqDkDwoGAutCxDMMCicYOKuXemrpGga4Bx2MIlWBsb//0ptNLdQ/2uTLR5e5A3HeijdDOr74HWgz18E5biaR9dzQyYSztMsTntfYxeJ7oyQA8LNaxqqsBUonZLkGNoyW17664KnNK6Ce1rqycKKNK4CT1rZiOHAdwA63uSEEZV6Pat0besv3FGdlhZemc0FHMaYhkt82wy5wUYDYJpitz9oJI+Xw55UgwcgDSzzJCfYnhvQmwoEYFcPrK6PBKvjyBhZpamuR/voGShJef1wS5f75v9RKlN+Va8cp+MzGM+dNAhoEroaclRv5sk3dNNE+01m7OBrEsjiybrJa1i4FwkcDaRbHQCYlZ7FsMvNhWQSTFYFlkise/+5dZfIqFr7sTz0Kk3y0yJRe/DLmzkhe6IBpNsy8GSTLCdsmU35ussS54BhlAjDWTqMLp0XagF28soKwbeT5ALfxP/XImx1ZAQtOjvxYmXMjmzp5pBNoJ5Y0Aybetwcwib07DAOW/cPRYYy7bwtaFBx84vEnlg2cxDxvOwJS4oInQovvMxNUzO1mGVCsQlM8STU7hodU8bnrYjVwbtByTRwQL6+R89jTv6lQP/Vj4gAxakYIlFolECCwLgzRHauh+H7VIN+tGqi9KpFfkiWe75lEYkW30AbpBhopJ3WFstSLOEMFcFB1exw/4CNabgh+dZuvSlibfuqay76NzKFOUVehWSTrd+DYPKpZK0nKKtsgR/il70ZRum2DXOHP9Ua39Gqvp3y0yJXGrirGhMlriXmym9qsdfepH5GbDCBpzyZf/la90I11IL63yJd+mN8rkGkfTPLFn3p6vS2Q3hnkCL/rrunfRR+XayIUT+/RLIL8Ho3EknYxFlmRLiaAQ7sY1iqtE1Iwto0v1YQxQ8umeBq5CxXzMTfuNNULW3CCCsWcOJr2E5Q88wOZmHM+LkRsTA8zJA3qcSSwXuw8bFgzPDdouRkeEC9vhuexp1ZKSD+tTvKAorUBAkqrDCiQUxdeVR+9WSsIJNmweqrX9J02cOxVaInUiCAFxBygMf32qp+eW/Wp/ymAgWwL4dw+vtZInaBZjoaZILtLtC7mt+N+VfBAHQYJDDNBmlonULhWmQi606OuW/2P5fKOK4VcxYugwNbZSOQVLihK/PYWNkKnxvfe/LjEPFZgBNcqE6F/U8boRt3WH/0Ed1UwRWCYCRK/FwsBSbwWSwA2Gq3e1Ne+uWm+PdyI0ALTzFwiruhCGKAbuorkyzCo667Z9lpUWq5Vbm4sVwNdzJeH6PHjru/02Jsb2KkWwUFjyESjrzNDaBJuM2MDTYO6vnv8q4DmZJGZF9Ogbpp/kSnvDOTC4RiM+FgGyXjbzOrzs7ZmGJfuKBpxhRhRqRrQur56Vc3UqkaGgJpxIeQLI7Z8+ooIDcJdCrFZstZAYjhLH3TBHZQPTtcVmrELJ6ztS/oGbO3FCyNykNNWDWJHXoWGZOJO+Nj6c922z9jyA0hgWeRJ2+l4VmtNjBt9Bsi0HIxCDpJEURR1niQFBHWki6PQPnUJMIRbVZQmdjQVx/E/yVv9pi62GsPY/yz4EKfx9an/odDKZ8dY2aHxpBwY0Rl182U357gjZiqObmAiEU/qctxk53Q7EaCtUW1fN1+n51avlokg2tA7TLBdcr4IekAHI7cXBLDgGk/uAYTBBAvien709Hmas3DO0eXOGIlKhcUQLYyYA6Udcf/y0uou9rngYCf7bCy1n3HNaUVuL8SIAtMCMKMyz3WzX8ZA76zDiSD7fKyfesyhgsyzofSypjH2sUEPiAQYpwBBn3f0omcwoOgTX80LTB9/U3VDN2zQ66CBNZ1u1g3H6ueoTFe3j/NlqX2HrzIgUJB9AaxD4V539XNLf9vQ2z+BdRoSVEesjo6isoLx68fyRxBptTegU2cT02l7RB+OdkMIhnXPZC23oqt2QWU99h4YPTLJeNEQQkl/zpAJZvphuDeamGsFSI5JSZimHmDHSoBiH7aoPPyuI6gueNSRJ/6KLzX54q+tbLGZJX5Vj+oB9fuAKWybkjh63fVGXW+eVdOoxvERYGdSJI6iuPF9roAO2eTKh2mZb+NBVIhtUbyVeoMvp4B49oGLAui3yLZBQGFbFEXp3/dPibFRbIuSKFvTv2jEvRfgOAWn+3tadFD1plXD8Piux9Xr42jm+xLYeYFal8wX7CYViIe6Q4UnNtTkKpajtgtbMq30Y6MQRMJLo0wUzNcIgiCvDGfJTYO6NKpRHbnj4wsHViVzYBrUXd3Va9XcqUbXouFwhRkXBvxSz29KHN5zFMAFhiXB3tWzGdlf7TG0sP44c5a/Xd/PL0Yrg1854wYR7IpSd84AkcKXzjhJ8mhRYeyWGVjVv2YmRRJbEgIVyQUgVNCda06b567W7YMa+nbCR0pBMMHxHWRCA0dZPRNHxQBaTPRdJvpeQvRVoQcoMOGjSbb41qgXjbhFIuJHk2zxd90gBwIx7YNFirRTg/VmNwGDO63jr0VON7qxRU82ntCQ/RVsT9XTIXdQoyL41oUnE9mhAIW8kohd6ukGEXvGfDX92tSbedKNXvcPSFSoOZ5Uxo2a+1hTSErIoxvPkK7MLZ4HgA5RIQCZGzwK4Fa4se70tLl6uIvP9ZGwgsXT3euOX7BVYUqgco2xYkeSgwGp4U9//vcEloMdtyyEWKTvAE0WdyQQwqxaVZsfiEs6yWJZniefdg74yqRVKM+6TG691NpsMa95EseyPE9uvRituqb9SMstz7pMbsXWPEkilot/OlDEP5CLhvgLlizYudYst8fIQW3TM8H1ZqxbZBuWZjtZlinceayujFHNr+rj8WMY1SahaOFIzpN3jAfRaVjqWfSSoNOg7vX25cpsLtbouJUCDSM4D+ibMkNSY3MyLFMX33Wj3jC3I5LEsiyWR86QcB49fKoH1YgGh1GrcsNEnhRvwBhPrHzoyOUTDiLTUcnhJJc2PrBMBiSHmEw++WAzHTc27OQiswagyZjkUJSJKB+UpuPGhqdcZNZANRkzNmRlUiZt3ZeAjgwn5Pgpw4vkhNBDXSZ8wqA3HZga/nJ5owPhdDzmkJhLmjM4Tk4EZ5jMTEDygDkZnjN0ZsInD6KT4anhNBMaGlifB5YccjNp5YNvCa4zDEfv7jGHN7m5g+nZk/lZt3qEW01zemPcC4u0NoZ4PB15ZPekQT2uS0W8/Bcd9T5IQuT4O0un2CMPK9HRd+upRpwibYVjsAQR7H1jw3uy3uQ+V294T9WTHwsFwT1IZdhP1otQ/E8zdp+YF0ZwpgLbk4JiFG5K+eDYrhTZ9kjvC+OKYlthsKZoLwxHCMqVPA4XXKvP23nFb8IL7+mPXYCX+VAB65ECjmCQcegNyYcfi7gPOJFFvQeOXLkNW4nbkGMw6EXILgB9B3JMRNKKFrr5GEKCKk/0y7MDiW5EoNuzINrKMolkc+xLjHz6oTTn8+cI70pMmnDXSo4QlGvMmcULU6iXzHTd8MGTesnQeyOeqzkOI7CmuJdkuIw83d1eIrda7n4S9IzELWJWXNUKuDTMQd8z4eeqUQ8jW+YUjpljEdmfrMQdgyWlDRn12wLesD8jRRs11k091lFJK2BSqoxaoxc22DqncEkyi7seq2rYIYtk5TBfYBxP4DFYUvrwJsrWCFumjHRh01Bb0J+IyuTkIzhbO338RoNwB1Zu7c0YVoU4XiN9TTY/u1/5TTXhmO3GFvXHPqGJPaE9pYgDNCTkZNLHVjXEmZjTz/nnw724ZIfDLc6sk+E+BH0sXIoQOQMeiKccAI9joKe/fX3Z0W+GMHLuO9A1xPQtLoOd8PZlRMe7WbL02W5AP+FgdxxEfKrbBytzpJsBGtkoDrhSdoTjGOyT3D5P3jFuBhh6hjsgkR3gZkjTp7cD/YSj2wwI+tx2AJFwaDsOITg87QPlnpxmwCHHpgMS6sw0QwY7MB3o+KelhUKRo9G+XMq5aAYEtoAQyJMnouNCjOPQvmTqWWgWDPMgNMCUcwqahcY4Ag1gpZ5/BpHscfG3m2hv4QXhj49fWmSCCMVYHULDldDnxCSnth1WRqnufoteAwnLA5ZZKPgkCtSPzKSYotTuMygb3YcWCvMz3LbIkp4GZS5WstJ2bbLk0RksKExPY3FJ95v9upxUZ3y5QMDs+S0eq2imC6cC3dhByhZHafidigylbfv3O/1TNcS7GBQYYH8uzF238fnYtKWgAnGcA7er249Rr8TFbNmdAWtVwxvdBNHe5AwwRH+K0sR6VYE81aGh+tFuTQKgG3Wltkbt7oP8vTad7tbSGoPHcoYiiy2lUJwpiyoiOD3sVkbme0aFcJ7pGeBa/Wxq83Hb49eVEnyh9VkQV6qDr7wh0Q5W50P6ZkAPxzjVzvAsYNQyDAkmXpARgW2mUTUX09hjx2cINt/2DHjb2WV6GH/r2wneuSTwfNtz4GnQhYeC0vgzxDLp4S9S6cXiDLlg1Fjr7jA7f6hHdd/tZt2XqE8QwcmI7jyJMPGlYxo7jOAMoOP+hjUhnmV2BqgJXFYkcCZ8eVEmvG0/OnAdiRI/GJ0hJ4j5MMoTmxXT8u7c+EHNuxn05MwNw58RD6/9u+7W7EirkwGWNA8XE8bfGESEhU8MEiBiHwyYiHTGSEGZB/J8+X3oPEmm4wdMEPMASQGa65esNiZJEh8Y5cmLhRV4ojDL2HVtFZV13Lt2CY1799Isvnna5xiD5NYDl01UHyIuwN86PR/vq9uLBj4B6wSQuHTfNA9qPT/CAw/Pg2grzwRJnsNLiP9Wt7AHLKJ8CC+TdbJy8cv9+1TPR/NQf+owVL5HNRKnzKcawEcP89bYSUWM5GSC5C9bHNscxZRF/tUkhlvW6PBt+UXyocDDg1M0wZq4S7yAYJHPr47H4z+EYkrIRxZOYhKdO2kMbhdvkeS4doYwQeW4gJvT/W+CCrLVn+fD7vNjWNEYKy80VaIXaPu56jfbukN35hxBJ2yinFHLZgVD7BQyTaqh5siOVANNhiVSxIkGVwk60iASWp7OZOgcwiXKzH66A69SOGHT5F6MUr+/KtXSt0a4urBRGgCxb+JoxrZKIjIbvVFPaJ9mC1kh06TIoxSuFnyWQiKGryc4QpElhFAksfM5to953Q+OIuqADjT5XdAFPhrd/fxpfiKZGI36oSQjF0GMVU1sZ4ao4gEwLCocAHMx8DEojCEcgxIYYAkbVZMjgyVAoRGpHRtjYHqgy+iOLT12n0yKMjpmS5PbO5OSww+9JbbRQlXHIEeY0+Tbuux235dNbped+pTZOJNQwhba4irRTAdo2JfMbLDdoJKvm9dehO33wY5RLwq05BBDWnPOA4q26RBQWsOOAqF14rpreDXiELB8fXBiltWGI31OXXD102tCDIZVD1yY9FoAwOB1gFqxhwJK6sDzbPiskIOBePSVZ8qpDZE18X2MyKMxcRTqGZkUkLkrTiPZWxZA2V0AtI9WCOPbpuGg1RK7UygIxK+O+N1CcKTQHUPsTzD37iEEqcxQJuUuIgQouJOoCETKmKrMnUUkIlVZ2e1o8l1G3O8UvNVI9KHyrxlKZ/Lt07HQYnn8obe88c0xZPkBjhu1bIRzSkDOEMcjSB/jRHFYgxwPJ32UA+FAdeGy32xbRdxFBQYstWAVRspZs3KZE0sfkE4qfBZMrOwBmKSix2Cgkm/sgQcF5wQs2gaEMbObAJc+sQ4A+kl1gAUTqwMATFIdwGDgOjBvQzNqwDGYoPyHyNKbH2t1sIiV/Ik5udw95cRSj4LEy9wDSSxxCAQqb86aRspyBjs+TvOeu3RRYNUid8GiwFoFc5mCM7JOWpyIrUsEs2/WakR8/r/ad2ESbcsmVz6yBOIrcxY+4qIv2gzjH1NtRo0cL0PkfcNckI1utr2OtA8eg2WTKz++atOk5INvKAaBPq3Pc+b+fR9ptNkMQ5dqQJGYOU0pkITERhWDSGpe+VixhhbDSmpySSyohsTW4UovwWWvvpVaeCu45paz3Ja50lZwka3s+hpjaY27qpa2oHZYfxLFXFlWdLMkWKu62/cu0fbXCViq6Q0j5bS6LnNigwtIJ7W1LJhYMwvAJLWwGAxU8qRDzCBeh2BEV1lB6RIeULfaycxBGQ5Ce8nAIFeYk04nMF/QPU4V2aIbTk41MhGgKjzNwzv2SCwMXao5QGLmtAlAEhIbBgwiqXXgY8WaCAwrqZ0gsYAaEllqmn8WLlwhB7O8+KpTWLL4Fz5Mbmp0f9+1yNkeX9AKnSz53E9dU5uPq/n0PHwJYSAc2iTLN+qlntrxaz+MymD3b/j6gFEGwLAyehvxgrS17fDpsnHPS0uT6XdJCca9Lk96TJ9LUs6YnholW2L7kOlSP0dlOuwF0VDPDp4s+loPF83UjrfUzYG+NGCUA3BlpvWjHqcav8QPIAischAe1c+pbuUQgF0Oxm+6b1UHX1cKyVvhk2X1QJ4wO+ntAyYLbeqfj/M9QywxK3C6IPGESSgYe8aEI9i/afVQj9gdEYGmEz5Ztn/vlGG2GqewyXJbUR+3LdG5zRdO877JQ8hkqWGudVeSXs23SJdmONlbslwXe0pyfJ02z12t2wc19O3Eb/sQwzyQr0a96J98/WP4dNk3wedqBZYIImN7xkqXHUzmOcaYPIQeY5ytaoecXmkTM7h2KRhIVt90L/2DGrY9dl0fHLScXwAYM883IOCnplzf+/icC+CwTYvAHCZW3xvWbCxEAiIoArafcX3f9Urfp2gnFqKBURSCG8BXECI4A/4kghSA1+0BEILejwPCmXWFFOwZGAthP736jty5S4I4tkVw9PCdXMeDQQ5WRRA29c/vA2MAH2LYlmVQVHRUD1Ao3uieBTCP3L8bztgBAHGNiwAt43oxycGqCEJGm1q+LeXMGEIO9uyBiaC79feXtkYuqY6Q2MZFgJZP8HszyeuJbVkEZRm+f99yxvshjWdcDkheTEezMhBvqU2KbZmKwhg8x/apwPD8YXRkmwiPPWmjCE4cOqcRTx8sPMtaVDo5u1cETsr+VQwNqT0Rd6JDkIIeRU6UiU5FR/J8vyIXJ9e1KAYW8S5yYVIcjGIAMh8jl6eAmxGEF1TM+C3XYTBBI7abHz4yruoArkKGrKkmg3Unc989KvXj/k0ZaqkfoPEMs0GQa7IxeeqSbFI0LPOrhztmsfshBatAavjTn/9dGHN1tJJU9CA5mAtNq2rzQxFrQjCUZXcOrJdaG/TBBQLLsjsHlqbfcaXINPKkaxEYztV1USzkKrtyuTcXjFF1Iy5V2/AsYEa9KGNU86v6ePwYRrUR5yMcxTlg/5iU+Ugv8ND8HJDToO719uXKbC7W5IwAhgzNzwH5rhv1pjtijAzTWXaFsMLuKL75k7DvMw9+dPfSx+cq3t4PYEi1YLH9n63u1pEVXBfANsgVlibes8mSN2rXlAkJAjMhBFC9GK5EpzD8KsZxUfLi5fspWdB4s0P6OfjSx/Bi2TBLv+puzRxBBkEle7c3m61RQ+R+XFih8q2pZIfpwcZqh7twf9ON6n/T6l0OBsdRBK/VnarNRXNFOvogXJ5xKhBcW67nFi2yYuaGK7VSBsSaskLmJSJtrw5i4bT1PHF6DQzSTlj7QlHgco97GtihJG1D5MPzdvWjJyEcWPoMxuGWOQlAaJoLw6hq8h1hljDjznJAnXt7OQehUz/H7yPpHBYS2EYJAHT9ZjRtZ9kHgCNObeAKrf4jUMxBHRsk3t6VWe6ngIBasRvBfqoHxWj8wsCCmmGI5W0s5mpnRRYAkAJimePbw20CxsmyFEpk/xQn4eydCkAGykkGpRii7jEChMiXgTEE34YUAv0a5scm2V+DHbjs1xDEHHwNjNYASFHm1xFiQV9HWTTe1wKQhV9LUTDO1xNS+V9PUSTW1xQy8b8mBAL9mriDDiB0sXEHFnfS0ANKVvroA0XjDkAEOKy6UWgYQmOhteW3vmE3vVbYUnMxOGLOjCzEz2j6A4Dklp8BtEAMox513XI6gAAujKBMTnF7pAAoq0PigPH6o5AroztiYHF6o4ApuTNiALHam4CI3xXBCGHb8rC4p/BuGA3DStqWyEUbSOTMe0aBZCR1hxhFQmfIR6LrAoaU0POQSHjdYFaLgjd4hFHGr+5wabNKv0zBFyjzMsXNLukhfsesH7LYcTIwYtZpsgA+p+yH7PtmuTisGjBk3zpL4ED1YNdlXFEDMSsQv/QPTk6Xyoz6Ra/qUZHjF1+kQiOgq8YpPTEHn1u9Ut0gpIKtM5GM+mPSRpHto8dhmWSKHxxFkrIDNJYD4RVznmFT7p5uOElnRB6JA6KtDiac5O2xMXHWI8YgA/9BYx4K53FjCIT90DETI/roMQjBewCZhxA/NgohMM+M8hA4G3QQBHuLjofx8v59y3Ddg0h803yY2MPDEAXrEWKefPxBYgiA+TgxDyHydjCkz3lHGBWPNcbReV0QuNCKFBYzY0kKSgF26n/+kfLPQjFOloVQpE2S/HFYAUzsYXUUhfXSugBE1iJYIAnNAgmy7QedWDyWaSGY2T8idlIHxXGMSwEJWk0bRdpskhCittOikDeg8Rdt3fDsL0lwoe5z5DpdKOLqaMRPK30r7CHsb33DGbkvwQQ9hGjsfIo8Zei8S0GBkbOFIR440xDscbONIBs2kwD8LsoCEHZOJAC3W7LkRR0SLS4YsNsA0vE6CSEcrlscKaN1EoXbNVsMok6ZFOcP1S154UidBGB2Npa6pJvxpSMNL3OUfgpbeJDuRSwYo1v4ZRqd9GFxHEXU/KQOiuMY/KGoDyIcicZRJANRH0Y8DmXg8FuEtFEoiMD5OOWZtLPgf6i6axSxNU8KVAdjWR7sE1W0bthUGTUkQIsU0te2XqnXvm2oyx8wC1FreiMoJ1+jsuzZ+WEnjZxLZJG5UZSEi16fToPxblSXQjEuvqWxuHfhMsAiVZvbYUnnnrtPTBZ75VmyU46+uMKdBgcQZeS3pxJJyg/QPgkrrAWP/WSoqw93vwsar2eibbQiq3YBJfvYe1TKuWC+yYkpbwWnspIhSk8xAlHG5IIWXfXdqLrxq+lHtRqpTWJbG7DKQDD9MNwbTT486qg7BuVKvakHYoJlE+xDlpN+pe7/tZVfvXt+Cwhf1aN6qDvqXQuPwLYoh0LtmNsA0W3yiMy664263jyrplHNk/o5Ppl69WP+kphlEImhYI5w7tpxyNg37NDCbT2qbvXBPMtvEyCW5fKkXak34gZoh2UftKC4fovOMBwCO3xBjP79dpfPTAw7fDmMLXkLpw2wjd+6GZFq64/nevXjm2k59/442ohpBkzEKd1R55wijMrNaRCnGzBLhxhUvWnVMDy+63H1+jjOtwCvmdUPtS1XFeeJ+6Myb9Rk2kZywpfDmAZ1aVSjuvmABrOcApuiOHd1V69Vc6caXQuG5xVmWhTuy7JR9HX/gbLBArMsqHAa800zOz4voPj4wt18fyD1PUMCVWBMfdV+WlCgL/3eD1ac4iowLgE0z24S88c1LQCzn+5kZBEcQxoaUGG3s2M579RNGLbgqRskcuapGyAZSb73GEWC9z0fid4JwJASPPBJJLdufPn/abu3JUmOI03Q7wLcllSHHfRgfYcmu3e4Q05jATRnWiB9kaxKkrksVGLqgCZ6Zd99JUw9URG//2qZnqi9K0nzUPeKUD/ZZ6Z2+/cP/3ST3BK3xqf/+veLB9/LYF/eP9aD/nBc2bPGX+//M320vNrTpy2fvqurUsx/vXud/GpX+9k2e+ZOzkf5xP/MsZ3sfuy4ZS9+8G2DAx2vq/S5jPZlbLk6+oejy55zb97eJsti7Hb2sO2v2N37xdPQbn/v988/T9nhVRqcCw09cXfbpgd3tkuHr9ff6Gx+eiq8uv/49sPr+/98u1757zryl+xTq/9XHPNzrwwXO37ateHR3R38Jr/cf+bI7g9cnC72+YTL03JH6wsU/OeO7miXlavXkE/tT8/L9XgNiPiUMRoXB5l1zP2QLgOM+3vY9Pk7e3P3Nnnkwn1tWz5/Vx/uPrx54v/rYdNDO7tKhve37756la+m+an5wCXqzV3yHgnRvnzYMjn8i2PjR//Hm/cf/vlhoB3b49UGT/8fZI+R+3DrUSTXx5fs7O8/0Gsa2dff8fCfsKurr+v27ev7d7+54QudfGo98FPfvM9WAYJwX37aNPkPfDq4HN/5Cwfu6mHDAzs6vGgK7vPZ66U8fjhPXKkEj+jXLFLy+EHNgQxP/DHe5Y9RT9nRPS0+vt/P3O7IbuipsSp4vt/q6afKTMpXf82ILwn95fXHHvvfPVJz+4+37+5+uPnw7u7vT1llJN/6QGdFutLII9GPrjay+K+lt6l8xZHHDu7wqiPHD2+18shjh3d49ZHjh/eIij52hE8x0l91UGuoOXB4z1ii4viBL1ckeexgj69K8owDfNrKJI8e6q9YneT4QT9hhZLHDvi5q5QcP9gnrFTy2ME+d7WS4we7WrHksaM8vGrJkw7v6jZ3rt0/J4L95ubNmzNP/eH2w83rpO5+vvWR5+AfP3x8d5uNDH1kF19efzy5Gub/qXTm0o9zXNhv796fLxHPPTge5nMdZD6d6LHjemRW0fFD+eFsrM/9li4//LkO6LxCxu3bDzPVn3tcJMZnPrzb1/NT/PL6tKO7CPH5Du7+1Xl9kbd/WXWUPn58JMrnOsR3t69u73569kXj+uOf7aA+/HiO+P7DzQ/8Feixo7r+/Oc6rHTe3WPHs55+96QD2d1a/q+PN2/uPvBntYv2A29JP93cvbn5E+/124X88nLzJ95CLw87PYjbdzd/uf2nm7ev1982HMvuU5/vkP507Fj+9P/LQby6f337Kr+6XR3BL9t+vt3/+e7d+w8zRZ92CFfbL7L+sd2eI3yTdbjt93qx+fN3+sjDwNUen3L7f2R3fKzzflcHSsY+Zbdvbv7EGWu/54dNP9/O3z45kd5iCv3aXb9/df/uift+2PTz7fzjU3/sj5/51z5w/XrCvWq/s+M91/tr+LP7rp9wSE/tvd4d1a/qv04O7OpOfku59fz3Iy9+b7+5fX/3X0leb6G+vNws+3Vv/zOfCnm+2Sf5+7CLTxsd38HquvsQ/9HrbR5+ccF7iL6/0D01+A8fkwlTn4I/bHI8eD7a6lP0RwZarcKvpvR/2sGj0/dXu1hcfh7iP3bZyYPT4fefAucj7ldBk+fqh6A/PzUouQqtI/+yzdPCw7XkN9No0nGfsMmBgRXpM9g+4LHBlXjURzGcHcChoZRPPICfFlfq3QFsG+c/Id8h/ppfb+fcE35Vsunn+XWzwMd/Zfa/yZ4PP219+LiuP5v/BAcO5/7N62cfzvVnP8vhrM6F9DgOnxPrA7pO1R/u375+EubSLT8L5OaRDyMu/+88B3AXB3Ucbw8d1hJuF4d1HG0PHdZjYLs4sidh7XMP5hGfe9phPUfoDh3wGmgXB/kMnD12YE+E2dUh/hqUPXSwTwHZxYE+G2MPHeRTIHZxkM9G2EMHuQTYxdEdx9fHDuv6dvT+7k93ed/4Q+vTbztzd08I9uXDhtnV6ZcDSx8y39+lHfDXu/q06a/c2Xd/fXf7/lwF5sBeLz9zYPfYS/Svf3qfTtTFPV9v/tydxtvVkf3uPnFk1zQrn7b3h60+a5ZeBX1ytv5ywNnz6EM2JNdSvverTz3jEK6+3Ps3H3+4few1CTf6DC9INOTBV6PdsR997OcHceyB/6kH8dPc8MBh/PKB5Cde7PjqF/6G7vObQ52kXwf0L2N9Cdslh/1Nmip3725fpc+32z4uNzq6g3wA+jdPGni+CHz77pZfQH6JvG1xNPTH97e/vf3p7tXtH+7nK+X92w/v7nlVhId95R85uvOfzus6vbp58y//+sfVDq83e8JOjpvHN79WOtLdP9U3vvkMqvFNeoo+/v7/zTNf/Juenhrvy9g2+wGf9GD7dpaVyK4TZJ8XH/hVO/7x5u39u5sfbv5wz+f70Z3Dh37VAcQpfmj3Vx85uvPrBPrt+uL5S/PTE+fHc52Zp0T78mHL7H/w6diy56/7N9yXcE/bhs/e0c83vCca9xPbHdnN9a+xnITyS+uBp6iHPS4moFyH/XL/key/QyadXPPlu3f3yTXxepcPGz53R49NsYHdPWlqzRN2ej4Hj+z1avsDu71KkY+v3/3wpH5ftuFn6fZNAx/u9aX/l+d0+uaHdLzP98hBLbt884M63uN75KAe6/DNj+tJ/b3PPJRHev+edFDP6QI8crh/u/2ZLw62OLyHz3yGb2vd15wfwjO6mg8d1hN7mhcH+Gs6mo8c6lP6mfPDfHY385FD/HD/t9uj5+XDZz5Djj2lkzs/kGf3cR85xGUXd35sx3u4Hzmoy9vu/7y5O09iTzu6LtsP9I98fHc+lmwiwC7ol9cf4OlwdagHO9f2ezzUr/aUXWddavtdH+pNS3Z99Rve/umrj695f+1D2/K3u3r9nwtt3c4PRaGN/5G8wF2F/jL7WPJbPhxy+j/65rvf/OuPH7IyHlcbHHiDe3Pz8/3HD7+9fXPz8x+eGPjL3YfS/9LFMaf/rz9+991vPmbfZzQeeJh9c/cXes29jvXlw3bpkW9HlU4YmGUGn7CjT1s+c1eLRTJgV2w9jOWJ9Niu+Xhq2OuBsdSP7vBNci+AXb7Ba//hnXz1xDS53PaZu1sNAIW9PToK9Mk7e+r/D7d/5m7f3f7laf/DXzZ85o6yYdiwm+Uw7Md38vbmx+/uf3/3lk94xH1dbf3cXa4WncEd0vVlftV59yGpmAd7/rCqlvf4Tt4ltYdxL++OFBt+dLfJrBDY6ZEpIY/u8gE7nrDfi02f/rUethG8+T2XSB49mCdKye6q8HwwoYe0e8D45pELVLQ//TFjlVMXsVZLaFwd2OJWtbgGXe7pzRMuQOudxbX5q7ev/nr/7n89baf4kc+z838/vvN//1U7f//qjAZ/vHmzegy93PX1B56/4/NI9h/v33049KXvP/S5DuCJX/z+Q88/gHTuyn636zksyc4uLwX/6/2Hd7c3T+pSTzb9HJ3qq9BHu9Wz/9EzOtaXh3W4a/3gga0615cHdrh7/eCBPdLBvjy2p3SxP/9w1l2fTz2wZ3SBHjzkZU/38jCP93UfPbSn9XavD/JX9HcfPNwn9HgvD/W5fd4HD/P9uZjK/VuuK8sDvPzkZzldYuvnHMmnD36WA/lw9+pvtx++evW/P97F+/a/ffP7wweVBPksB/gEK1ge23O14OBhrrxgeXyHxeDxA7t8svj3+49/un93s+ievd7iwIvG+gZEwj7pvgMHfPk2N6xI/WX/X/3TN7s1qM699e//4aLlka70NOLVGpy7qOfWY5FfzUJOMab5m/s3u9jYfiz66999+mL/+3kTiI7tB6N//e72zf3Na/adXLYdjPrN+Qb67dWg1oegn5oOxgzNoAf6qelgTBrteJy/3Pxw89Xbmzc/f7h79f7i9/jdbzF4vuXxPf7+/i+/v/3p9g37T2D78ejn5dPuXt3+j5sfaPCL5mfEnle57Lg/tR6L/KQf4DN893+/e3v/w3In+y2O7eG/Pr67Xe5gt8Gh+P90//Ht65t3eGl9+POxWB///Ofbd7DmwxbvoulQzN/cvPrr7fkS8fE9hLxoOR7xu5v3f8ujfmo9GPn9B3ah++Xvx6Kd+2XnCmK339z+74+3F/X0t7C7DY7F/+u7+x9uzwXz//k8IvI3l6K87WC/xTP38FDvjpzmfKNj+7n/4fz51VnCNjm4j7c3f1/vATc4Gv9ime27+7fpj5Ju+Ov2t6XQtx//xH6k9dbH9vxpSe9vbz9cLeyw7Wy3wbH4H99/uP/hsWelZKtDe/rtV7/7Kookzuc58r2RLY7t4fa8rPA7Gvqi6VjMhyHXbDrdFptscmwf3/zhu/vXNz+vThi6zaG9/PPrv9x+++Hn3VP2L38/Fo2S0Rbxsu141Msx9hcBHxtcv4v193Ml2/fn1VBXX2y22bF9/dfrd8sHm/0Gh+L/y7vb2//519vbN1+9/re3dx9IgpMtDu3h/7i//8ub299+9btvv/3qd6v/Sb7hof39t9v3P84FdMn/5artWNQ373979/48hOfu7ce7Dz/PYRI/7E/ZdLtje/vuu6//2+3N69t373/39m63j+vWQ5F/99t2XV40Qj78+Visc+/D+w9351WUyZeNzcdiv3t9++F+lS5ki0N7+D/v794mHRqXTYdi/vfbn//129VB7zc4Gj+6ln+H99GLlkMRf3/36vbte/YKf9FyKOIfbn7+0+1X739++woCfmo4Fu98vmZPYdeNx+N+dx5hQv7z143PiJuFPBzt/ubDk96i8w2P7e/jmw93syzVm5ufb9/9fg7vxF2xbQ7u5cPt668+frg/yw4n2IddZRse2t95vO18Evnj/d3rh+LfsCu6zaG9fH339a58WcS+aDkW8c3N7Je7u38r53//YX8GsE2O7SPtbXxuX+PXF6sQsCOG5kOxv7l9c/Ph9nX+zLzf4Dnx/9vd61X0X5qfE/vbv97/5yL2L80HY88XwX+6f403s4uW50Scd/FXtz9+uMeH8f0Gz4n/+7u/YYJctDwn4h9uP/z1Hu+PV23PicpfyH/F+/f20TzoMyK+//H+7ftbmgSfmp4Vc5UGuy2etQeaCJ+anhWTfrmfmg7F/Pb25oc35/e523d396+//c/zNPbk+XG16bP2+aS9/ar9nIv+fHv3+vaqJ+Zfbl59uN/1Sa83Prbfv939+OPt669eZ/81bD8W/Yebdx++PReyXj04JVsd2xPra39GL3t85PI48DpGtnjGHrC3ffvrsUjwlr47Umw/Fv3cT5/f5bH5YOzzpPxVcGg/GP1MZf/69vZJj+2PbP2MPZNr3jP17tsP7+7e/uX8yvrnfcCHloMRf35z+/W7+x9v3334+ZvbV/fvdlmz3+LYHj7+eB6Qevs6Opa/u/37h/ka95uP84q/S/xHNj+0718+nb2t7jd4XvyU8skWz9sDSaKrtmNR/3p7/9Xr9/Rd8qrt+VH/9afbd+/u9l842+bYXu4+3Ly9+7jsgqXbHNrLv/3u9zdv//LxcoX7CP2p4Vi8H9/8/PZvX71/f/thd12+antu1D/c/3R3XgFor0Z8o+fu57ufHtvJwxbP3sM+06H1GZFX2UK2eMYevn53e+4SeXiapfuAbX79XtLvimx3aG+fFv1cfXPJVsf29MsacNtbVtIblG53cG/nerrL/9N+i4N7wNKd6X8o2/DY/u7vXn/97v6Hu/e32Y72Wxzbw9df/e63pNvol78fi/bN16zU2xbyqvFgXHb/3f56ONKuFtyncA9Nx2J+992EJw770Ho08i8qnUbHLY7u4feXA3t/iXr+63Mirb8J3OLoHpIe34uW50ZcHzfb6uievp2T19JdXDUfi/3xEbXeb3Ao/rnwx7+9/XD3JrkG7dqPRd+GiP9iaiuhWG98aL/bSPPV98Y2ObSPf79//+PNq9vdU+Evfz8YbQ4ef9Kb7nLb5V7bpx2+Og8L/CXwTzfv7s7roL3/h/n3pwe5GMN3GeORkXsXIf58e3New/s9CfPQ9NRQP05EY5G2lqcG+vjh7g0LM//+1CA/3b57f5nkn8JsLctAej2N91z9cDdk7eJ3/2Uvf/74dra9/4enfGx5CJ+OIF6yz92Gl32YP9y//nj+71y1PvU/9ed39z9cvdd/OvDreA8bksAXcy+uj5D9H346P4b+3+93R7/9fX2yXkxLCan9JczFvJGHSLHF+ngfjub//Y8XX9y9fX379y/+8f/5JWP+8Yv6sr0cX7z44s93t+dq8//4fez9xRev7n/Yhsq8vn/1cf7zP7bN/nh77jU+bxxb/8Ppixffn17Y6aVr/4//ePH9w4dnw/zDQ4xPf5kfLF+8+L68kP7S7OpzZfe5cvW5+sWL7+sLtZd9jKsP1t0H69UH2xcvvm8vTF4Oq1cfbLsPtqsP9i9efN/ZB/vug/3qg/LFi++FfVB2H5SrD+oXL77XF9pfDterD+rug3r1QfvixffGfg3bfdCuPuhfvPje2aH67oN+9cHxxYvvxwutL4dd/xxj98Fx/fuf06GcXoi9lHJ9sGWfOwWSZ2ZPYf/TQhLoOoPKOS9KZQdd9klUrrOonHOjtBdaXrYTfHifSOU6k8o5P0qnh71PpnKdTeWcI4XmU9knVLnOqHLOk6L0w/ukKtdZVc65Uox+eJ9Y5TqzyjlfCs2tsk+ucp1d5ZwzZdAP7xOsXGdYPedMPbEP132G1esMq+ecqYV+eJ9hFa5R8yJV6YfJZeo6w+o5Zyq9UtV9htXrDKvnnKn0alX3GVavM6yec6bSDKv7DKvXGVbPOVNphtV9htXrDKvnnKk0w+o+w+p1hp3LLnxfaYbVfYbV6wyr55ypNMPqPsPqdYa1c840mmFtn2HtOsPaOWcazbC2z7B2nWHtnDONZljbZ1iDO+G8FfJ7IbkZXmdYO+dMoxnW9hnWrjOsnXOm0Qxr+wxr1xnWzjnTaIa1fYa16wxr55xpNMPaPsPadYa1c840mmFtn2HtOsPaOWcazbC2z7B2nWH9nDOdZljfZ1i/zrB+zplOM6zvM6xfZ1g/50ynGdb3GdavM6yfc6bTDOv7DOvwvDUfuPgTF3nkus6wfs6ZTjOs7zOsX2dYP+dMpxnW9xnWrzOsn3Om0wzr+wzr1xnWzznTaYb1fYb16wzr55zpNMP6PsP6dYbJOWeEZpjsM0yuM0zOOSM0w2SfYXKdYXLOGaEZJvsMk+sMk3POCM0w2WeYXGeYnHNGaIbJPsMEnurnYz1/ricP9tcZJuecEZphss8wuc4wOeeM0AyTfYbJdYbJOWeEZpjsM0yuM0zOOSM0w2SfYXKdYed1Z75XmmG6zzC9zjA954yWF6W0l0P8+tP7FNPrFNNz0ih9XdR9iul1iuk5abSRd1TdZ5heZ5iec0b7Cykvx2jXH95nmF5nmJ5zRoW9Jug+wxTeHefLo9IPk9fH6wzTc86o0e9rn2F6nWF6zhl1+uF9hul1huk5Z3TQD+8zTK8zzM45Yyf2Umb7DLPrDLNzylhhe7Z9gtl1gtk5ZYwmmO0TzK4TzM45Y+2FnF62ep0kts8wu84wO+eM9RfdXuK7/j7B7DrB7JwyRhPM9glm1wlm55QxZa/Ptk8wgw6K2UNh9L9M+iiuE8zOKWNOf+Z9gtl1gtk5ZYwmmO0TzK4TzM8p47Sfy/cJ5tcJ5ueUcdpZ4fsE8+sE83PKOE0w3yeYXyeYn1PGG/3wPsH8OsH8nDPeWTeU7zPMrzPMJesX8n2C+XWC+TllXOhR7xPMrxPMzynjtPPM9wnm0As2u8Ho5c9JR9h1gvk5ZdzpnvcJ5tcJNmaC0ewc+wQb1wk2zikzTvTD+wQb1wk2zikzyvlO1U9y/eF9go3rBBvnlBmVpfbYJ9i4TrBxTplBs3PsE2xcJ9iYCdZpz+M+w8Z1hg1N+x7HPsPGdYaNc84MeSHtZXX4wvYZNq4zbJxzZtD0HPsMG9DXOjtbaXoO0t2K/a3npBk0P6Pt+uMXf9s+X/Ju0xPpdD1Br+tpJtpgiRZt+HnoeD3NntfTiR8A6Xs9Qefrafa+nniv8Yn0v56gA/Y0e2BPNN2jEQNAJ+wp8q7xAKQf9gQdsafZE3uiF+VoxADQGXuavbEn4QFIf+wJOmRPI+//PpEu2RNk4dbtry96eVlLuQ7AOv53Pf8zDU9UOQrt/Ic8jO7/k9M8YgCAAhAEcBr0O2AIgAoQDFB4JjMIQAkICij0mbUwDEANCA4olf8KJBFRBIIECr14F4YCqALBAqXzL5EkIspA0EAR+mZYmA4AD5TZ489fDgsBggJCUGanP39ZKsQICiBBmf3+/H2pECYo4ASl5q8PhUhBASooNX2DKMQKCmBBmf3//D2gEC4o4AVlEgB/mi9EDAqQQamRgsq/P5KCwAazXPP3JXEtIgcF6KDUSEFuW0QPCvBBmSLAH7ELAYQCglAmCvAn5UIMoQAilOkC/GG5EEYo4Ahl0gB/Xi5EEgpQQpk6wJ89C8GEAppQJhDwJ8hCPKEAKJRpBPwhshBSKGAKpUUKDv4FkhQEVyiTCgo3ykJooYAtlMkF2f2c8EIBXyh9dT8mxFDAGEovi9spYYYCzlB6cDztRC6EGgpYQ5l8UDi3FsINBbyh9L64oRNyKGAOpcvihk7YoYA7lK6LGzqhhwL2ULotbuiEHwr4Q+mRibRDvRCCKGAQpY/FDZ0wRAGHKJMWSu0vyklf1gG5TCyiAEaU6QvJDZ1wRAGPKJMYaIdvISBRQCTKRAbe51uISRRAiTKdgXf7FsISBVyiTGrgPb+FyEQBmihTG5LnGYITBXSiTHBInmeITxQAijLNgXcBF0IUBYyiTHbgvcCFKEUBpihTHnhHcCFQUUAqisYLMh+hQ6yiAFYUzTuTC+GKAl5RdPFASMiigFkUzR8ICVoUUIuiea9yIW5RAC6K5h3LhdBFAbsomvctF6IXBfiiaN69XAhgFBCMonkPcyGGUQAxiuWdzIUwRgHHKJb3MxciGQUoo1je1VwIZhTQjGJ5b3MhnlEANIrlHc6FmEYB1CiW9jkXohoFWKNY3u1cCGwUkI1iec9zIbZRADeK5Z3PhfBGAd8olvc/FyIcBYijeN4FXQhyFFCO4nkvdCHOUQA6isdzIH+fI9ZRADvK9IvkbYJwRwHvKJMweGd2IeJRgDyKL95GiHoUYI/ii7cRAh8F5KNMzCh8FF0h+FFAP4p7PiSX+EcBACnTNHjPeCEEUsBAymQN3jleiIIUYJASDsLPIAIhBSSkBIXwM4hYSAEMKaPlPeSEQwp4SBl98TpJSKSAiZRAEd7FTlSkAIuUzUX4ewyRkQI0UkakIO8RITpSgEfK8EUfPRGSAkRSxlj00RMlKcAk9XTK++grcZIKTlLDSXgffSVQUgFK6qnm7/SVSEkFKamnfIx6JVBSAUrqBiW0T6ASKKkAJXWDEtpHXwmUVICSukEJ7VSoBEoqQEndoIS+0lcCJRWgpAaU8Ff6SqCkApTUgBL+Sl+JlFSQkhpSwl/pK5GSClJSt0kS9IZUiZRUkJIaUsJf6SuRkgpSUkNKktHVREoqSEkNKeEjrCuRkgpSUkNK+CjrSqSkgpTUkBI+0roSKakgJTWkpPHrCZGSClJSQ0r4iOtKpKSClNSQEj7quhIoqTiPYsJHafTJrLKpFDiXYspH4aOvK5tOsZtPMTOx8esBnVIBmVjjkjhetPJydLimsmkVOK9i6gebr1bZvAqcWDHto/QT/TzJQpxbMe2j9ML//yQLcX5FYEmvL2S8dHMIQLIQ51gElvT2QvylVvwCSRbiPIvAkk4fbyubagFYUid+lC7sOyRYUgFL6sQP2rtRiZVUsJI67aN0fdH9pQ+cl0NSELCkTvwo3c7X846fZxN7IANbTB7zF/30UvF+QLSkgpbUFklI35Ar4ZIKXFKDS+gLViVcUoFLanCJ0B66SrikApfU4BIpNIsJl1TgkhpcklwGCJdU4JIaXCL0Gb8SLqnAJTW4RNo5jbpAGhMuqcAlNbiEX0qIllTQktrzXupKsKQCltTAEn4aEiupYCU1rCRJY2IlFaykhpUInUVZiZVUsJIaVsJH8FdiJRWspIaViL4Q3DtJQXCSGk7CR/FX4iQVnKSGk/AEIEpSQUmqRAb6i9ZfDoMMIExSgUmq1MVJRKCkApTUCR+FTyeoREoqSEmVRQ4SKakgJVVkkUKESipQSRVNMoA4SQUnqdM9Cp8QUQmUVICSGlDCT2ECJRWgpE74KMovo0RKKkhJnfJRlD8UEyqpQCVV83sxgZIKUFK15rdSAiUVoKRO+EiGjlQiJRWkpE76KGcqJD8BsZIKVlJVFucQwZIKWFI1JnTztwKiJRW0pE79oA+0xEoqWElVX1xECJZUwJKqqzsx0ZIKWlItcpBfxQmXVOCSaqvrIPGSCl5Sp38UDq6VgEkFMKm2eikhYlJBTKpFGibzpkkaAplUW92MCZpUQJNqkYYUzSpRkwpqUi0uhuOF6Esp+Cuwud+QiZbdjImZVDCTOg2kGL8UEzSpgCbVT4skImpSQU3qVJBi/KGasEkFNqm+uhsTNqnAJnUySDF+MSduUsFN6nSQ9DsgWQhwUn11MSRyUkFO6pSQYo32mBI6qUAnNejE+NWU0EkFOqlBJ+xqSuCkApxUH6tvkKQhyEkdp8U3SOikAp3UEWnIr6bETirYSR110UNB8KQCntTAk6SHguhJBT2poSdJDwXRkwp6UocseigIn1Tgkxp8wh9LiZ5U0JM6MYQ/FRE7qWAnNewk6aEgdlLBTmrYCX+sInRSgU5a0AnvYGiEThrQSZsSwjsYGpGTBnLSQk54B0MjctJATlrICe9gaIROGtBJCzrZ340aYZMGbNJOi+tgI2zSgE1asAnvnWiETRqwSQs24b0TjbBJAzZpwSbGi3QQNmnAJu20uBQ2wiYN2KSVxaWwETZpwCZtKgh/u2pETRqoSQs1MYpfjahJAzVpoSbmPABJQlCTFmpivOQIUZMGatJCTZyO5WhETRqoSQs18aS4DUlEUJMWauK8wA1RkwZq0kJNuGE2oiYN1KSFmjivkkPUpIGatLrwu0bUpIGatFAT56V2iJo0UJMWauJ0RF4jatJATVqoifOzmahJAzVpoSbOy+4QOGkAJy3gxHnpHSInDeSkhZw4PxeInDSQkxZyMniRJyInDeSkTQjh46oagZMGcNICTgY/lwicNCxS1fKJn42VqcI6VVNCCh8Y1VipKqxVFXQykoJTJA939apmHg7aX9doySrIw7CTwc8EVrYK61aFnQx+JrDSVVi7alpIGfyuwMpXYf2qwJPBzwRWwgprWAWeDH4msDJWWMdqWkg90QGqjZWyAjxpPQry0cE9jeBJAzxp00Lqid8VCJ40wJM2MaTywT2N6EkDPWlTQ+opKX9GMhH4pE0OqSdeAo34SQM/aZND6olnIvGTBn7SJodUPjinET9p4Cdtckg98UwkftLAT9okkXrimUgMpYGhtEkitfBMJIbSwFDaNJHKB+c0gigNEKVJlIfk10SCKA0QpU0TqXxwTiOI0gBR2jSRWngmEkRpgChNshENjRBKA0JpG6Hw53RCKA0IpU0VqbyeaSOM0oBRWjBK8qBPGKUBo7TJIpUXRW3EURo4SpNIQ/50QxylgaM0XfQeNuIoDRylxZST5DsgktJAUppGGvJzmVBKA0ppU0b4mN9GJKWBpLSQlOx/QBIRJKVNGKm8RmwjktJAUtqEkVpPL/p46RV/BFZYEhJx2kjlExgbwZQGmNICU3gvfCOY0gBT2rSRymdANoIpDTClTRupfPZfI5jSAFPatJHKC882gikNMKVZlMzllwOCKQ0wpU0bqbwAbSOY0gBT2rSRWvl9kWBKA0xp00YqH/zcCKY0wJRmkYk8lQmmNMCUNm2kJgVpCaY0wJQ2faQmRWkJqDQAlTZ9pCaFaQmoNACVFqCSnAsEVBqASps+UpPqtgRUGoBKmz5Skwq3BFQagErzKODMU5mASgNQadNHaqMTIRoBlQag0qaP1MZTmYBKA1Bp00dqVvGWZCKASvPIRJ7KBFQagEqbRFI774IiptLAVFqYSpZIJBPBVNokksrL5zZiKg1MpU0iqb3Sn5GYSgNTaZNIaudvK8RUGphKm0RSO52K0IipNDCVNqKcuNAOZWIqDUylhakk3XDEVBqYShuLSjWNoEoDVGlTSWqn00obYZUGrNLGolJNI6zSgFXaZJLKKwM34ioNXKWfFtfETlylg6v0U2QiLy9MYKUDrPRTZOJgmdgJrHSAlT6dpAo9nTuBlQ6w0qeVVKFvbJ3gSgdc6acobk99sRNc6YArfVpJFfrG1gmudMCVHrhCea0TW+lgK31SSZX+QuSlnhoEIFWiwVb6pJIq9GzuxFY62EqfVHJep4Z9BcRWOthKn1bCJ6h1YisdbKVvtbvo5aQTW+lgKz1shV9OOrGVDrbSS+QhL/NNbKWDrfQSeejnaere8TskeQi20kvk4eABSB6CrfRJJVVPbKJ8J7bSwVZ6WbyvdGIrHWylTyqp5wGI7L9AEhFspcfSHlrpf4HYSgdb6bG8hzZ6BMRWOthKjyU+lGF9J7TSgVZ6rPKhwu4qndBKB1rpsdKHKv8fkEQEWumx2ofSegmd0EoHWunbih/8rkJopQOt9Fj1IzkVCK10oJUeK38kpwKxlQ620mP1j+RUILbSwVZ6W92aCa50wJXeyuJUILjSAVd6q4tTgeBKB1zprS1OBYIrHXClt56fCsRWOthKb7I4FYitdLCV3nRxKhBb6WArvdniVCC20sFW+qSSqnwJBmIrHWylh63wgYid2ErHdULCVowv9sGWCsG1QsJW+DDAzpYLwfVCelo9qbMFQ3DFkJAVo8O3Ols0ZLdqyExD6zwAWzgE8jBkxYQHIHmIq4eErJiysaydLSCCK4iErJxL2LAjIHmIq4j01Z2ZLSSCK4mErJizGhCdLSYCstJDVmzQ/wKRlQ6y0kNW/ES/RCIrHWSlh6x44UdAMhFkpYeseKXfAZGVDrLSp5VUb/y/QDIRcKWL5F3SneBKB1zpgSvOzwWCKx1wpU8rqc7PBYIrHXClB67woSOd4EoHXOmBK3zoSCe40gFX+rSSyoeOdIIrHXCla2Qiv6gTXOmAKz1whQ8d6QRXOuBKn1hS+dCPTnSlg670iSV18Is60ZUOutKjphe9tRNb6WArPWyF18TpxFY62EoPW+EjPzqxlQ620ieV1MEXhCK20sFWetgKH/nRia10sJUetkK/ASIrHWSlTyihQ2o7cZUOrtLDVYbRaxFxlQ6u0sNV+LiTTlylg6t0W1QT6cRVOrhKD1fhA1c6cZUOrtJt0YfYiat0cJU+maSd+IlMXKWDq/TJJO1ER8d34iodXKVPJml85EsnrtLBVfpkknbiS7IRV+ngKn0ySeMjXzpxlQ6u0ieTND7ypRNX6eAqfTIJvxYRVemgKj2mqfDuN4IqHVClTyOhJtMJqXQglT6FpPFxO52QSgdS6R5JyG+IhFQ6kEr3SMJkkTmShEAqPUiF1gfrRFQ6iEoPUUmuRURUOohKj1kqyaWEiEoHUekxS4WXBepEVDqISp9A0k68I5yISgdR6VuNL34tIqLSQVT6BJLEMzoRlQ6i0ieQtMIvZkRUOohKn0DS+OCpTkSlg6j0sboaElHpICp9Akkr/GpIRKWDqMgEklb48oFEVARERSaQND76SoioCIiKTCBphc0VEgIqAqAi22oo9FQQAioCoCLTR1pRpglCQEUAVCRmq/BMFgIqAqAip0hEvp4hARUBUJFTJCJf05CIioCoyASSxscOCREVAVGRCSSN128XIioCoiITSBofOyREVARERaaQJKwlhFQESEWmkDQ+dkgIqQiQikwhaXzskBBSESAVmULCyxYLERUBUZGyGIooRFQEREVKXtdGCKgIgIqUxUhEIaAiACoyfaTx0VNCQEUAVGT6SPYVkjQET5G6GIgoxFMEPEVqPnNPCKcIcIrUxSxmIZ4i4CkyeYQXDxfCKQKcIlNHGh9/JoRTBDhFpo40Pv5MCKcIcIpMHWm8fKsQThHgFJk60vj4MyGcIsApMnWEF1AXoikCmiKhKXy8ihBNEdAUaad8vIoQTRHQFIk11SutoCpEUwQ0RdoCmIVoioCmSFsAsxBNEdAUifXV+Rg+IZwiwCkSa6xn3wFJROAUiakqvGKhEE4R4BSJtdb5KEIhnCLAKRLrrfNRhEI4RYBTJNZc54MAhXCKAKdIX10QCacIcIoEp/CRU0I4RYBTpK+uiARUBEBFpo80Po5RCKgIgIr0yERhr2tCQEUAVGT6SGvKptIKARUBUJHpI60Z/xJJJgKoSIAKf+MUAioCoCI9MtHp4xUBFQFQkR6ZOF5IfakF/wskE3F59ukjrfPrAVuhHZdoD1Dhxi1slXZcpj3qfXFUErZSOy7VHqDCiVrYau24XHuACvdZYSu275Zsn5nIx3IKXbUdMnH6SONjOYWt3I5Lt08faZ1fkdjq7bh8e4AKH7wlbAV3XMJ9+kjrtCtd2CruACqikYl0EqUQUBEAFdHV3ZmAigCoSIBK8nxAQEUAVGT6SOv8IY2AigCoSCyRwhOReIqAp4hGIvKHPCIqAqIiUfeL9sEJARUBUJEAleS+REBFAFREFxPrhYCKAKiIRh7yx1QCKgKgIhZ5yN/aCakIkIpE5a/kGY2gigCqSKAK74MTgioCqCJR+YuPKRaCKgKoItNImvC7AkEVAVSRaSRN+BWRoIoAqsg0kib8GY2gigCqSKCK8CsiQRUBVJFAFeEPOARVBFBFAlV4IVAhqCKAKhKoIvxyQlBFAFUkUIWPJhWCKgKoIoEq5yF0pBePoIoAqkhU/+I3BaIqAqoiHonIT0bCKgKsIr7qvSGwIgArMp0kuSQTVxFwFfFV7w1xFQFXkXAVXs9TiKsIuIpMJ8n+ByQNwVVknPL+dCGuIuAqMpmkKb8YEFcRcBWZTNJ4QVAhriLgKhKuovxiQFxFwFVkMknj9TCFuIqAq8hkksbrSQpxFQFXkXAV5RcD4ioCriLhKryaoxBXEXAVCVfhA3KFuIqAq0i4Ch/GKMRVBFxFw1X4MEYlrqLgKhquwocxKnEVBVfRcBU+jFEJrCjAik4naUYzUQmsKMCKBqzwWoJKYEUBVnQ6SeO1+JTAigKsaMAKL8KlBFYUYEUDVoxmohJYUYAVDVgxmolKYEUBVjRghZewUgIrCrCi2+op7L6mxFUUXEUnkzSn678ocRUFV9FwFV4CS4mrKLiKlkV1WCWuouAqOp2k8RpaSmBFAVY0YIUXFFQCKwqwogErtDiAElhRgBUti3J0SmBFAVY0YIUX8VICKwqwoiUviagEVhRgRaeTNKfPV0pgRQFWtEYe8osBkRUFWdEaeajsVUOJrCjIik4paeeFCVkAkodAKxq04rRGsBJaUaAVrYt+RCW0okArGrTCR3IqoRUFWtGglXFi3YBKaEWBVnRSSRuFfwckEcFWdJupwkY/KaEVBVrRoBU+pFgJrSjQigatjEr/B4RWFGhFp5Tw5XWVyIqCrOiEkjYaltZUoioKqqJtUbBdiaooqIq2xURmJaqioCraFoMQlaiKgqpoqMrgzxVEVRRURUNVBp1no0RVFFRFQ1X4UFglqqKgKjqRpPEiaEpURUFVtEcSOhk1owRVFFBFV6iiBFUUUEUDVfhYVCWoooAqGqjCO5KVoIoCqmhfzB9VgioKqKJ9MX9UCaoooIr2xfxRJaiigCq6mqWiBFUUUEX7Yv6oElRRQBWVxfxRJaiigCoqi/mjSlBFAVVU8vmjSkxFwVR0EknnQ5KVmIqCqehmKvxqQExFwVQ0JqnwWXdKTEXBVDQmqXDVUWIqCqaik0j6iT9iE1NRMBWdRNL5qGolpqJgKjqJpPNR1UpMRcFUdBJJ56OqlZiKgqnoJJJ+oiijxFQUTEW3tVToADIlpqJgKqqRiXQZDCWmomAqGiXAktcMgioKqKKxmAov+60EVRRQRQNVkvcMoioKqqIamchfmImqKKiKxjSV5KpOVEVBVTSmqSRXdaIqCqqiWwkwfm8mqqKgKmoLZ1aiKgqqorZwZiWqoqAqGlNVktsCURUFVdEoAZbcFoiqKKiKxlSV5LZAVEVBVTRKgPHbAkEVBVTRqACWXNUJqiigikYFsOSqTlBFAVU0KoAlV3WCKgqooh6XRFr+XAmqKKCKelwS6VhAJaiigCo6jaSf1/4lz2gEVRRQRSeS9PMIeRaAJCKoik4k6YU/JRJVUVAVjQpgfOCLElVRUBWN6Sp84IsSVlFgFZ1K0nmBUyWsosAqGqzCR84oYRUFVtHJJJ2P0VfiKgquomMxCEyJqyi4ik4m4bCjhFUUWEWnkhjvOCGqoqAqOiIPeecRURUFVdFQlaTfg6iKgqroWOUhURUFVdGxykOiKgqqomOVh0RVFFRFo/5X8s5IVEVBVXREHvLXZqIqCqpiE0k6nyhhRFUMVMUmknQ+UcKIqhioip3iikhfe42oioGq2ESSzidKGFEVA1WxiSSdT5QwoioGqmITSTqf52BEVQxUxSaSdD7PwYiqGKiKTSTpfJS/EVUxUBULVeEDMo2oioGqWKgK70g1oioGqmJTSXqlo4eMsIoBq1iwCr+oG2EVA1axUvN+TCOsYsAqViIT6dlohFUMWMXKYlisEVYxYBUri+5sI6xiwCpWFsNijbiKgatYWQyLNeIqBq5iZTEs1oirGLiKlcWwWCOwYgArViMT+TWRwIoBrFisrsLfNozAigGsWExZ4UsfGoEVA1ixulhsygisGMCKxeoqfO1EI7BiACsWq6vsV6sygioGqGI1rof8pkJQxQBVrMb1kN9UCKoYoIrFmvT8+cwIqhigisXSKvzWbkRVDFTFJpJ0PlnDiKoYqIpNJOl8qoQRVTFQFZtK0vlUCSOsYsAqNqWkt0bTmNCKAa1YlP/iZSmN0IoBrVhMWKGd+kZkxUBWbJuvwn9FIisGsmITSjqfKWFEVgxkxSaU9Cbsdc2IrBjIik0o6Y32oRmRFQNZsR6JSHtvjMiKgaxYj0Skb91GaMWAVmxbl55JuRFZMZAV65GHdGa9EVkxkBWbUJIlMpEVA1mxTVZ4IhNZMZAVi+kqPJEJrBjAik0n6Z0ua2IEVgxgxaaT8FmYRlzFwFVsMgkfr2GEVQxYxWJp+uRMJKxiwComeX1YI6pioCo2laR3OuzHCKsYsIrJYlq9EVYxYBWbStI7XRjGCKsYsIrJYlq9EVYxYBWbStL5TBMjrGLAKhas0vnlkLCKAatYsEqn3Q5GWMWAVSxYhU/TMMIqBqxiwSp8moURVjFgFQtW4ZMUjLCKAauYRibyhxvCKgasYsEqfIS/EVYxYBWbStKF1sEzwioGrGJTSTof4W+EVQxYxaaS0II9RlDFAFUsUIVPEDCCKgaoYtNIOp8gYARVDFDFYqrKfsiJEVAxABWLBer5DZF4ioGn2OSRzmcnGPEUA0+xySOdz04w4ikGnmIWKcjPIuIpBp5iFinIzyLiKQaeYhYpyM8i4ikGnmLb+vR03I8RUDEAFYv16fn67EZAxQBUbPpIcksjnmLgKRZL1Cd3JOIpBp5isaJKckMhnmLgKRaewuc3GPEUA0+x8BSlQ7+MeIqBp1isqMJ11IinGHiKhacoRW4jnmLgKRaewnnViKcYeIpNHulKu6GNeIqBp5gvRt0Y8RQDT7HJI107PwKSieAptlpRxYinGHiKRf0v7rNGPMXAUyxWVOE+awRUDEDFRmSi0O+AiIqBqNhYFMs2IioGomIjL5ZtBFQMQMXGYtSNEVAxABUbkYi0kJ0RUDEAFRuLYtlGQMUAVGxEIvLbCgEVA1CxWKc+6fchoGIAKr4tqEJHnDgBFQdQ8ekjyYuOE1BxABXfVqqnI06cgIoDqHiACp/r4wRUHEDFt5Xq6ZfoBFQcQMUDVJS+sDsBFQdQ8dOi38YJqDiAigeo8NlGTkDFAVT8tOhAdAIqDqDi00fS72CfiQ6g4qvV6p2AigOo+PSRzidMOQEVB1DxABV+b3UCKg6g4qXlt0YnoOIAKh5LqvA7mxNQcQAV3+ap0BuTE1BxABWPJVX4jckJqDiAim9LqtAbkxNQcQAVL57fV5yAigOoeMnnBzjxFAdP8W1FFXpfceIpDp7i24oq9LbgxFMcPMUnj3Q+c8+Jpzh4itfFU6ITT3HwFI8lVZJMJp7i4Cm+LanCM5mYioOpeKxWn2QyMRUHU/FYUiXJZGIqDqbik0g6n/7oxFQcTMW3iSr8VCCm4mAqHjNVklOBmIqDqfi2pAo9FQipOJCKB6kYfVB2QioOpOJtsbaPE1JxIBVvi7V9nJCKA6n4JJJudFSwE1NxMBVvi7HZTkzFwVQ8TIXPQXViKg6m4m11byam4mAqPomE9j45ERUHUfG+ujMTUXEQFQ9R4ZNonYiKg6j4FBJe1NGJqDiIive2+AaJqDiIik8g4ZzgBFQcQMWnj6RfIclCABWfQNL5NGInouIgKh6iwvtAnYiKg6h4j8sh7YByQioOpOI96UJ04ikOnuKSdyE64RQHTvHJI935AzLxFAdP8Sj9xbvPnHiKg6d4eArvPnPiKQ6e4pNHePeZE05x4BSPyl98Aq4TTnHgFBfN+9+ccIoDp3isU8/735xwigOneHAKn0nuhFMcOMUlrw7rRFMcNMVXy9Q70RQHTfHQFD4T3YmmOGiKh6bwedxONMVBU1wXk+mdaIqDpnhoilNLcKIpDprisZIK/xEIpjhgim9zVJIfgeQhcIrros6NE05x4BQPTnH+UEE4xYFTfApJ52sCOSEVB1LxmKPCRzk4MRUHU/EwFTdWPs2JqTiYioepOB0m4cRUHEzFw1T4VHQnpuJgKh6mwhcVcmIqDqbiYSp8USEnpuJgKj6JpPNFhZyYioOp+CSSPvjZTEzFwVR8GknnU6GdoIoDqvg0ks5XBXKCKg6o4r66JBJUcUAVD1RJTiaCKg6o4r6YyuwEVRxQxWOSCp/N7QRVHFDFfdWDSFDFAVXcV8+HBFUcUMUDVQZ/xCao4oAqHrW/sv8CyURAFZ9Gwmd4ODEVB1PxKP1Fx5A6IRUHUvGxekshpOJAKj6FpPPlnZyQigOpeCypknyFhFQcSMXH6tZMSMWBVHzEFZFfUompOJiKrxapd2IqDqbiq0XqnZiKg6n4JBLhs7mdmIqDqXiU/qLLiTghFQdS8bFQZiek4kAqY1tRhS4nMgipDCCVcVoU5RyEVAaQyphCInw2+CCkMoBUxhQS4bPBByGVAaQyTosRN4OQygBSGVH5a/+yOAinDOCUMXVE+Fz0QThlAKeMxfr0g2jKAE0ZoSn8ZXEQTRmgKWPiSPKyOIimDNCUMXGEvywOgikDMGWUxfpSg2DKAEwZsT59ksQEUwZgyiiRg/TJZhBMGYApoyxuyoNgygBMGWVxUx4EUwZgyiiRh/TZahBMGYApIzCF9+MPgikDMGUEpvB+/EEwZQCmjA1TaD/+IJoyQFNGrKfC+/EH0ZQBmjI2TaH9+INoygBNGdv69LQbfhBNGaApoy5GOgyiKQM0ZdR8pMMgmDIAU0ZdjHQYBFMGYMqoiz7sQTBlAKaMGndl+oQ8CKYMwJRRF1UdBsGUAZgy6qKqwyCYMgBTxoYpPJMJpgzAlNEW06QG0ZQBmjK29el5JhNNGaApoy1WDxhEUwZoytg0hWcy0ZQBmjK2BeppJhNMGYApY7U+/SCYMgBTxmp9+kEwZQCmjGkjwuuTDIIpAzBlROkvXkVwEE4ZwCkjSn/xKoKDcMoAThlTR4SXhRiEUwZwyug1L0M4iKcM8JSxLahC520O4ikDPGX0xWz6QUBlAKiMWFCFVxEcBFQGgMroeXmRQTxlgKeMKP3FZ98O4ikDPGXEeiq8iuAgnjLAU8YkEjnRl71BTGWAqYxpJMKXvxwEVQagyphGIoW/ZxBUGYAqYxqJ8OIeg6DKAFQZ00iEr145CKoMQJUhUXGJvS0OgioDUGXIYsDNIKgyAFXGNBLhpTkGQZUBqDKmkUih3WeDoMoAVBni+ezdQVBlAKqMiSTCqzoMoioDVGWEqvDZu4OoygBVGRNJyOzdQURlgKgMjSTkdwQiKgNEZWgkIe04GkRUBojKiLJf7PBJBoKmjKkjUujAu0E4ZQCnjKkjwgtSDMIpAzhlTB0RXpBiEE4ZwClj6ojwghSDcMoAThlTR4QXpBiEUwZwypg6IrwgxSCcMoBThi0W9BmEUwZwypg6InzVxUE4ZQCnjKkjwqs5DMIpAzhlTB0RXkdgEE4ZwClj6ojwafCDcMoAThkWmcjvaIRTBnDKmDoifBL6IJwygFPG1BHhk9AH4ZQBnDKmjgifhD4IpwzglDF1RPiSg4NwygBOGVNHhE/hHoRTBnDKmDoijWci4ZQBnDJiIRWl1RwG4ZQBnDKmjkhTNuxsEE4ZwCnDJZ/kMginDOCUMXVEznVF2BGQTAROGR6Z6DwAyUTglOGLyrCDeMoATxkemcivSARUBoDKmD4indZ+GwRUBoDKmD4indZ+GwRUBoDKmD4inZ9MBFQGgMoYq0wkoDIAVMZYZSIBlQGgMqaPCJ+CPAioDACVsU1S4alMQGUAqIwAlSSVCagMAJUxfJHKRFQGiMoYi9lSg4jKAFEpp9Mpz+Wt9TrE5R8fYpQ8nbfWXYyCMWqe0VvrLkbFGPM+zeeUb627GA1jnLPs3I2ze2nZ2nYROkaQfPjH1rqLIRhjvkKfB/LskWdr3cVQjDFfo60nMfbpefnHhxgzQc/vcHtw21p3MRxjzO5Fk+Q49kl6+cctxjSUaspeY7ZWjFEwS2MR+zOjs+Mg8HL5x4cYi+qxW+suBmZpTGUx5/lB+OXyjw8xZm+jjeT/wvK0YJ5OUql+Sr5TlqcF8zTmtDjFyK11FwPzNCTGa/J9sDwtmKfTVnhNka1xFwLTdOqKdNr5uLXuYmCaxvwWb/wrJSRz+ceHGItZf1vrLgamaV3Ur9tadzEwTYNmPLl8EJu5/ONDjJmmnpz6xGcu//gQI27z9N1pa93FwDSNGS/8YWVr3cXANA2n4c8rW+suBqZpzHvhTxxb6y4G5mkd+UPH1rqLgXna4vmTvk5urRijYZ62kj+7bK27GJinbXk5JW5z+ceHGG31AEPo5vKPDzH66gGG6M3lHx9iyOoBhgjO5R8fYsx3I17PZWvdxcA8nSojvKTL1rqLgXka02L6iT4FEcm5/ONDiHgypctFbq27GJimU2dEkq+UeM7lHx9ixOU0OW0J6Vz+8SHGYvWCrXUXA9M05sn05ImOwM7lHx9izMvpOU3p/4Wlacc0jeky59Wt2e9CeOfyjw8xNO3Z3xp3ITBLJ9kkS8purbsYmKVTbejcq61tFwGTtI98iv7WuouBSbqYPrM1YgjBHJUFf2+tuxiYozGJpg/+uxLwufzjQ4x5KRVaVmxr3cXAHJV8OtfWuAuBKSqLlTa21l0MTNGYUMPLnm6tuxiYo1NzktUZt9ZdDMzRCTrCy0ttrbsYmKWBQLzC1Na6i4FZqoshvFsrxlBM042CKv8+iAdd/vEhxqIkxda6i4FpGijEa1ZtrbsYmKaTeoSXrdpadzEwT4OHeOWqrXUXA/M0hIgXr9padzEwTwOJeP2qrXUXA/NUfXWbJFB0+ceHGCOtTLk17kJgmgYW8SpQWyvGMEzTyT/C15neWncxME2DjPhS01vrLgamaagRX216a93FwDSdDkRnIm1tuwiYpLYYdr617mJgkgYeKZ3euLXuYmCS2mKC4ta6i4FJGoTEV8/eWncxMElDkdL/C8tSwywNSOKLcG+tGMMxS8OSeH2irXUXA7M0OImX59ladzEwSycQJf2dBJQu//gQoa/6O4kpXf7xIYas+jsJK13+8SGGrvo7iSxd/vEhhq36OwkuXf7xIcZ8LKULA22NuxCYpL7sMiXCdPnHLcZYdpkSZLr840OMZZcpcabLPz7EWL7jE2q6/ONDjGWXKdGmyz8+xFh2mRJwuvzjQ4xllykxp8s/PsRYdpkSdrr840OMZZcpkafLPz7EWHWZEnu6/ONDiGWXKeGnyz9GjHJadZkW5k8F/amsCqVtrbsYBWOsukwL86eC/lROqy7TwvypoD+V06rLtDCBKihQZXKSKH8gLEygCgpUiYk+vOzZ1rqLoRhjXk152bCtdRfDMMa85/OCTVvrLoZjjJmnvNzQ1rqLgXk6OUnO9XpIX1RhAlVQoEqsS5N0ehQmUAUFqpS8Av7WuAuBaRrTf4yur7O17mJgmk5NEl55Z2vdxcA0nZokvHbN1rqLgWladPV1sCxFfyolspQ/RRXmTwX9qcRSNekvy7IUAaqUsfqvsCRFfyoTk5I3sML4qSA/lWlJktwmC+OngvxUpiUJrwizte5iYJJOSxJej2Rr3cXAJJ2WlP4qjJ8K8lOJ1WuSX4XpU0F9KpOShBcm2Vp3MTBJQ594bZKtdRcDk3RSkvDqIlvrLgYmaeiT81ewwvSpoD6V0CdeoWNrxRioTyX0yZNrB9OngvpUWqRpcuIzfSqoTyUWtuGzcbfWXQxM09b5hNytZfd5TNG2SlEGTwXhqbRFBfOtdRcDU7QtiphvrbsYmKItr2O+Ne5CYIa2xSTzrXUXAzO0L6qZb60YA+GpxFQiXoNla93FwAydipQ+dDB4KghPJSYUZRdBBk8F4alMRRJeDmZr3cXALO2rLGXuVNCdStfVgwuDp4LwVKYiCS9Ms7XuYmCWTkeSwZ2kMHoqSE+lr+72TJ4KylOJSUa8ws3WijGQnkrMMxq0DOXWuouBWSqrR1ImTwXlqYQ8nd9GCdcUJk8F5alIJGlyW2H0VJCeisjqhGP0VJCeiqweSZk8FZSnEhOPBu/4LUyeCspTCXniNVe21l0MTNLJSBk4FyZPBeWpTEZKrz9MngrKU9GyOuGYPBWUpxJzkbJMZ/JUUJ5KFHhLfloGTwXhqWhfPKIzdyroTiXciZei2Vp3MTBJdZWkjJ0KslOZhpT+T1iOojqVmJ2UvWwwdSqoTmUakvKqNlvrLgbm6GIVna0RQ6A6FVu+NzF1KqhOZRKS8uIyW+suBqaorVKUoVNBdCrTkJSXqNladzEwR2PCUnYFY+xUkJ3KNCTltWa21l0MTNKYtpRd0Bk7FWSnYr76SlmSojoViyRNXr2YOhVUp+LLCylTp4LqVLws/isMnQqiU5mClJ32zJwKmlPxtjpXmDoVVKfikaTJiyhTp4LqVHz1SMrQqSA6lSlIyRLDW+suBuboFCTlFUC21l0MzFFfdkAxdSqoTsVXj6QMnQqiU4mJTdkvy9CpIDqVKUjKy0hsrbsYmKRTkNKvg6FTQXQqY3UlZeZU0JzKBKQ0O5g5FTSnMgFJT8lzHDOnguZUxupuz8ipIDmVmOuU/rIsSZGcygQk5WUVttZdDEzS1YynrXUXA7K0nhbT77ZWiFHRnGqYE5/av7XuYhSMUfPJ+VvrLkbFGI1PcN9adp9v+Pl5HeWVKrbWXYyOMSQvB7a17mIIxpg3e17wYmvdxVCMsSg+vLXuYhjGmDla+MNPZd5U0ZvqxKPWJPldSY5W9KY68UgLnay8tWIM9KYa3sRryWytuxiYo1OPtPAHqMrAqSI41alHvfJ+m8rAqSI41RJ5Sle/3lp3MTBPpx5p4YPcKgOniuBUy2I9qa11FwPzdPJRdluoTJwqilON8nOJV1cmThXFqU4/Ul6eY2vdxcA8rZGntGLS1oox0JzqBCTldTa21l0MzNMJSMpLbWytuxiYp7WtzltmThXNqda+Om+ZOVU0pzoFKT1vGTpVRKda48HU+DnH0KkiOtVY52dY8n2wPEV0qlOQWnPas1cZOlVEp1rH6nxh6FQRnWpb5ilDp4roVNsyTxk6VUSn2iJP6eLhW+suBuZpW8y931p3MTBPpyLxyROVsVNFdqordqqMnSqyU12yU2XsVJGdalve9Bk7VWSnOhFJeZWcrXUXA5M03Cl7CGLuVNGd6kSkNDmYO1V0p9pXg6Eqc6eK7lR7JCnveanMnSq6Uw136rQA2da6i4FJGhOeeGnLrXUXA9N0KpLy+kNb6y4G5mlUtOMVMrfWXQzM06lIyqsQba27GJinPfKU9xRUBk8V4an2RdnZrXUXA/NUFpVnt1aMgfJUZVF8dmvdxcA8lchT3stYGT1VpKcqi8qfW+suBuapLIp/bq27GJinktf/3Bp3ITBNRfM15bbWXQxMU4k05d0NldFTRXqq05GSUqRb6y4GpmnQE69GurXuYmCaalxOeX9DZfRUkZ7qdKT0EsToqSI91elI6eWD0VNFeqobPdE5l5XRU0V6qtpXZz6zp4r2VHVRlHFr3cXANFVdnfkMnyriU1VbnbVMnyrqU1VfnbVMnyrqU9WxOGsZPlXEpxrrDWVnC9OnivpUrazOFqZPFfWphj7xCm9b6y4GZum0pKSC79a6i4FpOi0pKeK7te5iYJoGP/E6vlvrLgamqS1mOVemTxX1qZrl1YC31l0MzFLz1csg46eK/FRt5DWBt9ZdDEzT4CdeFnhrxRjIT9XL4mxh/FSRn6qvxulX5k8V/alOTErqA2+tuxiYpeFPvJzh1rqLgVk6NSk9WxhAVQSoGgCVnS0MoCoCVI0FipJMZ/5U0Z9q+FOW6cyfKvpT9bHKdAZQFQGqjtMq0xlAVQSoOjUpzXQGUBUBqo66yHTmTxX9qcakpyzTGUBVBKgaAJVlOgOoigBVA6B43c2tdRcDs3ToKtOZQFUUqDpslelMoCoKVB3LNGUCVVGg6limKROoigLVTqs0bUygGgpUO63StDGBaihQ7bRI08YAqiFAtdMqTRtDqIYI1U6rNG0MoRoiVDvJYo5gYwjVEKFaIBSvELu17mIoxpgvUI1PMG4MoRoiVAuEarTw+Na6i+EYY3buN01ikDRtiFAtEIovhbm1YgxEqDZFSRt/FGsMoRoiVAuEavxFrjGEaohQbYqSdv542xhCNUSoFgjV+U2/MYRqiFAtEOrcL0Ze0htDqIYI1aYoKS99urXuYmCeTlHSpFhmYwjVEKHaFKWsz7MxhGqIUC2mPSUo1xhCNUSoVlfVTRpDqIYI1QKhOu+fawyhGiJUm6KUAVJjCNUQoVqNPOV9fI0hVEOEajHxKblFNYZQDRGqTVHK0LYxhGqIUK2uRkc1hlANEarVxWogW+suBubpFCVNagg2hlANEarVFeo3hlANEapNUUp/F4ZQDRGqtbKAvcYQqiFCtVguKYG9xhCqIUK11haw1xhCNUSo1lbjoxpjqIYM1VpcT3mHZWMO1dChWjgUr3fXGEM1ZKgWDJXUu2uMoRoyVNvK7vE6c40xVEOGatOUNCkh2BhDNWSoFtOfklp1jTFUQ4ZqwVBJnbnGGKohQ7Wt7h59L21MoRoqVJukxJmzMYNqaFBtgpIKrwLWmEE1NKi2zX3ideYaM6iGBtX6YgxfYwTVkKBat0XnbWME1ZCgWvdFnbnGCKohQbXpSSrJYxQjqIYE1WLyU1KrrjGCakhQbXpSUquuMYFqKFAt5j4lteoaE6iGAtWkLWrVNSZQDQWqxWJL2RMQE6iGAtW2unu8vltjBNWQoNpWd4/Xd2uMoBoSVAuCEt7h0BhBNSSoNj2JL1W8Ne5CYJZOTkoWG95adzEwS0OgkvJ/jQlUQ4Fqk5Os0a79xgCqIUC1repe8pzOAKohQLXJSdnJwgCqIUA1XSYpA6iGANWmJmlSDLExgGoIUG1qUvqNshxFf2oTk/JvlOUo+lObmJR+oyxHkZ/axKT8G2U5iv7ULHI0efFh/tTQn5qV1dfB/KmhP7XwJ0k6LJg/NfSnNjFJJemwYP7U0J9aTH+SpMOC+VNDf2pRdS/7XZg/NfSnFtOfkrKOjQFUQ4BqU5OqJE+UDKAaAlSbmqTnmoz0+2B5igDVYv5TUpOxMYBqCFBtapImNRkbA6iGANUmJ/XCR/43JlANBapNTuqFV6VuTKAaClSbnNRL450eTKAaClQLgUrqSzYmUA0FqoVAJdP0GhOohgLVJiepJldkJlANBaptApU8IDOCakhQLZZ1ys45RlANCarFFKjs8YURVEOCaiPyNLmeMoJqSFAt1nfiq3durbsYmKcTlFST6ykzqIYG1SYoqSb5wQyqoUG1EXmaXE+ZQTU0qBYGpXzkbWMG1dCg2gQlteQ6xgyqoUG1CUqaVDRrzKAaGlSLWVC04mZjAtVQoNrkJE1qojUmUA0Fqk9Oyqp2diZQHQWqn8qiamdnAtVRoHoIVFK1szOC6khQfVv3iVft7IygOhJUj7p7ScnNzgiqI0H1jaB4yc3OCKojQfVt5SdecrMzgupIUP20es/vjKA6ElSfnpRxWmcE1ZGg+rbyE58z2BlBdSSoHis/JSU3OyOojgTVY+WnpORmZwTVkaD69KSs5GZnBNWRoPr0pKTkZmcC1VGgetTdS0pudiZQHQWqbws/8ZKbnQlUR4Hqy2lQnQlUR4HqZdWz35lAdRSoHtOgkpKbnQlUR4Hqk5OykpudCVRHgeoxDSopMdmZQHUUqD45qTc+xa0zgeooUD2mQRl/GOtMoDoKVN8EigtlZwLVUaD65KSkt7IzgOoIUD0AqjWe6gygOgJUrzFwv/M7AwOojgDV66LOSWf+1NGfeviTcc/vzJ86+lOvcdPnLtiZP3X0pz4xKSmv1hk/deSnPi0pK6/WGT915Kceyz4l5dU646eO/NSnJWlSPLQzfurIT31akiaVPzvjp4781Fu8QQnPUsZPHfmpt3gy5W/6nflTR3/qE5M0qbnZmT919Kce06CcG1Zn/tTRn3r4U1LssjN/6uhPfWJS0nnbGT915Kfel2nK+KkjP/WJSVkHcGf+1NGfeiz7lKU6E6iOAtVDoJLan50JVEeB6l0Wa9l0JlAdBapPT/LktsAEqqNA9R4zSvngqM4EqqNA9ZgElZQx7UygOgpUD4FKyph2JlAdBapPTtKkjGlnAtVRoPr0JE3KmHZGUB0JqsckqKSMaWcE1ZGg+vQk591RnQlUR4HqIVDZGccEqqNA9clJmtTM7EygOgpUD4HKzjgmUB0FqodAJfUuOxOojgLVpyfp4HM5OyOojgTVpyfpSC6mjKA6ElSfnpRVqO2MoDoSVNeSVKjtzJ86+lPXRYXIzvipIz/1iUmaFLvszJ86+lMPf0qmG3fmTx39qYc/jeTqw/ypoz/1KL6XVMrtDKA6AlSfmpQ9yjF/6uhPXSNDk4sgA6iOANWj+l5SdLMzgOoIUD2q72VXDgZQHQGqB0BlZz0DqI4A1QOgRnIxZgDVEaC65cvpdMZPHfmpBz8ldTs746eO/NQtkjS5jjJ+6shPfVpS2kHI+KkjP/Xgp6yDkPFTR37q5qsOQsZPHfmpx6JPWQch46eO/NT9tOogZPzUkZ96zH/KOggZP3Xkpx4ToLIOQsZPHfmpe1t1EDJ+6shP3fuqg5DxU0d+6tuyT0kHIeOnjvzUY9mnrIOQ8VNHfupuqw5Cxk8d+am7rzoIGT915Kc+LSnrIGT61FGfelTgyzoImT511Kc+KcmSkqqd6VNHfeqTkiypZdqZPnXUpz6ihETytsD0qaM+9Vj2KevsZPrUUZ/6WGl+Z/rUUZ96LPuUdXYyfeqoT31b9im5FDJ96qhPffiqs5P5U0d/6hOTLCkQ25k/dfQnmZiUjRgR5k+C/iQTk7JHbGH+JOhPEjX4kt9WmD8J+pNMTLKkUK0wfxL0Jzn1xSVZmD8J+pNMTLKkyqwwfxL0J5mYZEldVWH+JOhPMjHJkoKmwvxJ0J9kYpKduDwL8ydBf5JT5CmXZ2H+JOhPMjHJTlyehfmToD/JxCRT2vcijJ8E+UmmJRmf3y9MnwT1SaYlWVLpURg/CfKTTEuypEqjMH4S5CeZlmSFj9wVxk+C/CTTkiypsiaMnwT5SaYlWeF3F2H8JMhPEhOgToPebYXxkyA/yTYBinfNCeMnQX6SmADlvFC/MH4S5CeZltTO45poDJamyE8yLckKhw5h/CTIT1IjT/mEMGH8JMhPUiNP+aucMH8S9CepkafJ1YP5k6A/ycSkwSdBCOMnQX6SGmmaXICYPwn6k0xMssqHvgjzJ0F/kolJVpNTn/mToD/J1CRL6qwJAyhBgJKpSVaTU58BlCBAydQkq8mpzwBKEKBkahKfBiGMnwT5SaIEX01OFsZPgvwk05Ks8kFewvhJkJ8kZj8l/S/C+EmQn2RakiWVuITx08UfH2JEliYnHOMnQX6SqMKX9AMJ4ydBfpIeWZqcccyfBP1JegzaT8445k+C/iQTk6wlj7fMnwT9SWL+U1K8QZg/CfqTbFX4+CBiYf4k6E8SVfiSQcTC/EnQn6THsP3kMZsBlCBASbfVOccAShCgZGpS/ruwPEWAkqlJ1pJHdQZQggAlU5OsJY/qDKAEAUqkrK4fDKAEAUok8jR53GcAJQhQMjkpvX4wgRIUKJG+un4wgRIUKBFZnftMoAQFSkRX5z4TKEGBkslJ1pIHGCZQggIl4vmsVmEAJQhQImMxq1UYQAkClARAnZJTjgGUIECJlsXMWGEIJYhQsiEU74wWplCCCiWTlPopOV2YQgkqlIRCJTNjhSmUoELJVoaPjpAQhlCCCCUxCYrOjBVGUIIEJboatC/MoAQNSnSxto4wghIkKNHVihDCCEqQoGRbACp5nGMEJUhQYovZpMIESlCgxFazSYUJlKBAia1mkwozKEGDEltN1BNmUIIGJbaaTSrMoAQNSmw1m1SYQQkalFhcSbmnCTMoQYOSWAEqKbgtzKAEDUpsrC5hzKAEDUomKCXnLBMoQYGS1QJQwgBKEKDE43bPcVEYQAkClMQKUMl6j8IAShCgxKOCeXKbZQAlCFASK0AlIwKEAZQgQImvhkILAyhBgJKpSZYUFhIGUIIAJVOTrCeP+gygBAFKJidZUlhImEAJCpSMSNLk0ZYJlKBASQhUUoxHmEAJCpSEQCWFdIQJlKBAybYGVHKLYwIlKFAyOSm9iDGBEhQomZxkSQEbYQIlKFAyFrOehQGUIEDJWM16FgZQggAlYzVNTxhACQKUBEAlNV+EAZQgQGksApVcgpQBlCJA6SnSlF8KlQGUIkBpANSJL7CjDKAUAUoDoIR37SsDKEWA0lgIio5cUcZPivykp6jEQ6+lyvRJUZ809En4q7UyfVLUJw19SiqDKNMnRX3S0CdpyY9CklRRn3TTJ/ospwyfFPFJA5+E91MqwydFfNKyGnOiTJ8U9UlDn4S/winjJ0V+0uCnZHq/Mn5S5CeN+nv8R2H4pIhPGviUFAhQhk+K+KRlNeJEGT4p4pMGPokn/xeWpIhPWiJJeV+FMnxSxCedkmRJv5wyfFLEJ52SZJqctAyfFPFJaxApH1yuDJ8U8UmnJBX+wqHMnhTtSScklRO3OGX2pGhPGvaUzMtXZk+K9qRhT4l+K7MnRXvSqgv9VoZPivikU5J6GoOlKeKTBj4l9QGU4ZMiPmngUzKnXhk+KeKTthhm6vy3ZfikiE8a+KT8mVIZPinikwY+JSMKlOGTIj7ptCRT/jyojJ8U+UmDn5Q/RCnjJ0V+0uAnPrJBmT4p6pNOSkpGNijDJ0V80sCnZESBMnxSxCcNfEpGFCjDJ0V80ilJ2YgCZfikiE8a+KTJIyXDJ0V80sAnSx4HGT4p4pNG7b1kZIMyfFLEJ90mPyVXU4ZPivikU5KykQ3K8EkRnzQmPyUjG5ThkyI+aeBTMrJBGT4p4pMGPiUjG5ThkyI+aeBTUoFCGT4p4pMGPiX1I5ThkyI+aeBTMjpCGT4p4pNG/T3eEa7MnhTtScOeknnXyuxJ0Z407CmZM63MnhTtScOeklEayuxJ0Z50s6fkWYzZk6I9adhTMjpCmT0p2pOGPSWjI5TZk6I9qUSaJjdshk+K+KRbAT6KHMrsSdGedEKSJZOmldmToj1p1N9LZhorsydFe1Kted+LMnpSpCeNBaCSvhdl9KRIT7oswKeMnhTpSSckWTJpWpk9KdqTrgrwKcMnRXzSZQE+ZfikiE+qq64oZfqkqE+qcS1N7tdMnxT1SSclWTJ3W5k+KeqTTksyT+4LjJ8U+UmnJVkyd1sZPynyky5XgFLGT4r8pMsVoJTxkyI/qS2EVJk+KeqTmi4WC1GmT4r6pLECVFLxW5k+KeqTxgpQyWIhyvRJUZ90WwGKLxaiTJ8U9UljBhRfLEQZPynyk8YEqGQWhDJ/UvQnnZiULRaizJ8U/UknJlkypV6ZPyn6k4Y/JfPQlfmToj/pxCRL5qEr8ydFf9KJSSN5QGb8pMhPGvyUTGVXxk+K/KRRfi8ZRaiMnxT5SX01ek8ZPynykwY/JVPqlfGTIj9p8FMypV4ZPynykwY/JXPZlfGTIj/paIt3Y6ZPivqkk5IsmcquTJ8U9UlDn0Zyb2H6pKhPOnR1v2b8pMhPGvxUk/cnxk+K/KRLflLGT4r8pMFPybR8ZfykyE92OuWPQMb0yVCf7LQqumtMnwz1yZbTn4zpk6E+WejTaPQ9zpg+GeqTRfk94VcxY/5k6E8W5feEv+YbAyhDgLIov5eMdTUGUIYAZacousuraRgDKEOAstNiXJQxfzL0J4vqe0ntK2MAZQhQFtX3hC8CYwygDAHKAqCEn7XGAMoQoGxqUlLtwJg/GfqTlba4PxnzJ0N/sslJ2f3JmEAZCpSFQCUFJIwJlKFAWVldTI0JlKFAWQhUdtYygTIUKCuri6kxgTIUKAuBSqpQGBMoQ4GyqL6XFK4yJlCGAmUhUEklC2MCZShQVlcVo4wRlCFBWUx/SqpQGCMoQ4KyqL6X5QcjKEOCsulJzrHVmEAZCpTV1cgoYwJlKFAW05+SchjGBMpQoCwEKrnXMoAyBCirY/mNsixFgLKovscHiBrzJ0N/sqi+l32jzJ8M/cnCn5LiIMb8ydCfbGJS0UEJ3Jg/GfqTtVXBKGP+ZOhPNjUpvSAzgDIEKJuc5Em1A2MCZShQNjnJT5zAjQmUoUDZ5CRPZtUbEyhDgbIQKPqGbsyfDP3JJib5iXcgG/MnQ3+yiUl+4h3IxvzJ0J9s8ydaTcMYPxnyk/W2qHlnjJ8M+cmmJXkyHd4YPxnyk8XqT9m1g/GTIT9ZrP6UFHM3xk+G/GSx/FN28WD8ZMhP1iNJk7sk4ydDfrK+vJYyfjLkJ5uWlJXQMsZPhvxksryYMn8y9CebmOSn5G7N/MnQn0xWPfvG/MnQn2y5/pMxfzL0J4v1n4wPejPmT4b+ZBIXU86CxvzJ0J9sYlLt3NKM+ZOhP9nEpPQ9jvmToT/Z1CRPBmoYAyhDgDI9LQYQGwMoQ4AyXYzZN+ZPhv5kunzNZwBlCFC2ARQfx2wMoAwByqYmeVKDwhhAGQKU6fJyygDKEKBscpIndSyMCZShQJnaKtWZQBkKlC0FyphAGQqUTU7KFgQ1JlCGAmWTk7LFTY0JlKFA2eSkjDqMCZShQFmU4Ct8MLQxgTIUKJuclC1ca0ygDAXKoghf4aXYjQmUoUBZFOFLRnsYIyhDgjJbvkExgjIkKNsIii+yaoygDAnKoghf4jbGCMqQoGx6kpfk+ZYRlCFBmS/zlBmUoUGZL/OUGZShQZkv85QZlKFBmS/zlBmUoUGZL/OUGZShQZkv85QZlKFB2XIOlDGEMkQo82WeMoQyRCjzZZ4yhDJEKPPIU26DxhDKEKFsipKXpJOPIZQhQtkUJS/JqwdDKEOEsilKXpLHdYZQhghlk5Q8qaVjTKEMFcpG3PeTXhymUIYKZZOU0nOfKZShQtkkpfTcZwplqFAWVfiSxbONKZShQtkkpWzxbGMKZahQNsbqfGEKZahQHgqVDLt3xlCODOWnyFPen+SMoRwZyqcpeeXPhc4YypGhfJqSJwWKnDGUI0P5NCVPChQ5YyhHhvKowsd7G50plKNC+WnVv+9MoRwVyk+rt31nCuWoUD5NySu/FDpjKEeG8pgGlX0dJEsdFcrLqlakM4VyVCgvq5d9ZwrlqFBeIkv5Vd0ZQzkylJfVy74zhnJkKI8qfHxYgDOFclQo3xSK648zhXJUKJ+klC3Y6kyhHBXKJyl55Tc5ZwrlqFA+SSlb9NWZQjkqlE9SyhZ9daZQjgrlddUn5UyhHBXKJyl55TdsZwrlqFBeVy/7zhTKUaG8xsWU3/SdKZSjQnldlTR1plCOCuWhUJU/ODhjKEeG8hrrlvB+HGcM5chQPk0pmdvqTKEcFcqrL78OlqbIUD5NyVtyn2QM5chQPlHJW3KfZA7l6FA+UcmTsmLOHMrRoXyikiflvJw5lKNDeVsMkHLGUI4M5dOUPKnE5YyhHBnKpyl545NDnDGUI0P5NKWaTFJxxlCODOXBUEklLmcM5chQHgzVkqspYyhHhvKpSjWZkOUMohwhyqcq1WSJZGcQ5QhRHhCV1H5xBlGOEOU90jR5vGUS5ShRHhOhkqmHziTKUaI8JKonpz6TKEeJ8pCo9DtleYoS5bEKVJYfTKIcJconK3lS7sSZRDlKlE9WypZIdiZRjhLlsQxUomrOJMpRojyWgUqWSHYmUY4S5SFR2a2BSZSjRHksA5Uss+xMohwlyicrZcssO5MoR4ly6Ytllp1JlKNE+WQlT0rZOJMoR4nykKiklI0ziXKUKJfIU97N50yiHCXKxRev6c4kylGiPCSq865CZxLlKFE+Wck7n6vrTKIcJcqnK3lShsYZRTlSlE9X8qR2izOKcqQon66UDW10RlGOFOXTlZK1NpxJlKNE+WQlSZYvcSZRjhLlIVFJCRlnEuUoUR4SlZR/cSZRjhLlk5VckksykyhHifLJSi7JacskylGifLKSS3LaMolylCi31cBoZxLlKFFui/EnziDKEaI8KvFl72EMohwhyqcquSRPpwyiHCHKbVGXx5lDOTqUmy7q4ThzKEeHcossTR6SmUM5OpRPVMoWpXLmUI4O5cvFoJw5lKND+USl0pIHOuZQjg7lE5WyEjDOHMrRoXyikmddMMyhHB3KJyp5dhgsS5GhPNaC6smzGGMoR4byaUqDjzd1plCOCuXbUlB8rR9nCuWoUO7RbUonlzlDKEeEco9LaXKXZAjliFA+RSk7Z5lBORqUx0So7JxlBuVoUB4GlZ2zzKAcDconKKXnLDMoR4PyCUrpOcsMytGgPOrwZecsMyhHg/KYCZWds8ygHA3KJyil5ywzKEeD8glK2TnLCMqRoDwmQiVDeJ0RlCNB+fSk9LxnBOVIUGN6UnLeDyZQAwVqTE7KzvvBBGqgQI1tIhQ97wcDqIEANQKghD/ZDgZQAwFqbFX4+PDbwQBqIECNyUku/JFyMIEaKFBjcpI2PoR3MIEaKFBjcpImvWKDCdRAgRqTk7Txk2UwgRooUGN6kiY9FoMR1ECCGtOTtPG368EIaiBBjelJrvwxfTCCGkhQIwhK+WP6YAQ1kKDG9CRX/pg+GEENJKgxQcmTImeDGdRAgxolZpjwZ9vBDGqgQY0JSp4UBhvMoAYa1CiWj68cjKAGEtQoq779wQhqIEGN6Ume1BYbjKAGEtSYnuRJXbDBCGogQY3pSck0/8EEaqBAjRAo5ZUTBhOogQI16mqKyWACNVCgxjYPSnfrVg+mTwP1aWxzoJIrOtOngfo0Qp+Sgl6D6dNAfRrTkjwp6DUYPw3kpzEtyZPCUYPx00B+GtOSWnK/H4yfBvLTiDJ82anC+GkgP43gp6SA1WD8NJCfRvBTUjlqMH4ayE9jYpInlaMG86eB/jTaaq7eYP400J/GxCS15E7L/GmgP42ow5eMCBjMnwb602irMSeD+dNAfxrhT0nlqMH8aaA/jYlJvfFhkYP500B/GhOTevbkwfxpoD+NiUk9e/Jg/jTQn8bEpJ49eTB/GuhPI/wpucMxfhrIT2NaUm+cBgbjp4H8NKYl9ZY8ZDN+GshPo+ui63cwfhrIT2NaUhvOagMNpk8D9WlMSurJ4gOD6dNAfRqTkpL5oIPh00B8GlOSkk7swexpoD2N5SyowexpoD0NWUzPH4yeBtLTkNX0/MHoaSA9DVlNzx+MngbS0wh6SirGDUZPA+lpBD0lS7QPRk8D6WnIqr7ZYPQ0kJ6GrGaXDEZPA+lpBD0l5d4Go6eB9DRiBSjhy6sPRk8D6WlMR2qj7R/lGDsNZKexrf7EL4FMnQaq04gJUMliIYOp00B1GlGBLxkjNhg7DWSnMQ0pO9uYOg1UpzEJKT3bmDoNVKcRFfiys42p00B1GqFOSfW8wdRpoDoNXU0nHUydBqrTsNXQvcHUaaA6DVteSJk6DVSnMQ3Jk0qAg7HTQHYa1lZXH8ZOA9lp2PKhlLHT+P9Ye7flxpVcXfdd+rpjBvOcOd9gP8OKHRUqi3ZxlSy5JblqVM9Y776DeQATIJINj7XvPMxREE2BmUh8wA+KnVJR4Bs+D85PKXdKGSLFgaph4rhTotwpFe40UDVMHHdKlDulDJHiQC8ucdwpUe6UMkQaiZQkjjslyp1ShkhxoDmXOO6UKHdKUR35B8edEuVOKeoj/+C4U6LcKcUjPJo48JQoeEqZIsWBfl7iwFOi4ClFN5aZTRx4ShQ8pUyRRroviQNPiYKnFIubDgIPjjwlSp5SIU/Dr5ZzU0qeUjxcTjn0lCh6Smk6+mo59JQoekoFPQ10/BKHnhJFT6m0Pw10/BKHnhJFT6mgp1WlmqmZSxx6ShQ9pWSPDj4cekoUPaXkjg4+HHpKFD2lzJFGxwWOPCVKnlIlT4Mdm0NPiaKnlDlSHGgSJg49JYqeUkpHrs6hp0TQk56mg76SehXb6H/ZbBzs+vXqzoaiNrKb8vqK9erOhqY2cjfpqte/d9N6dWfDUBvZTVe9/n3apF7d2bDURj7jr2XMrI29m/a/bDb8uMOuXt3Z8NTGQTdpvbqzEaiN4qds5FCv7mxEauNgOa1Xdzaon5YxUGyVe71ITSjqpqoomnILUL24M0G9VB20ldSrOxvUSwt6SmwcVa/ubFAvzRzJWlZrqV7d2aBemjmSSW7wPDgvVdRLC3rihfzq1Z0N6qWl/YkXv6tXdzaol5YxUCPv4JxUUSct6InXvqtXdzaok5YpUHwbeb1KbWjqpRkkWcv2DdSrOxvUTXVZTNm4oV7d2aBumkHSIFSvV3c2qJtmmBR54bp6dWeDumnhT7xUW726s0HdVB8ko+rVnQ3qpvogGVWv7mxQN9UHyah6dWeD+mmGSYmXaqtXdzaon5rDTZ/hT/0vmw01zNzWizsT1E0zSxpkHOrVnQ3qpubgBFWv7mxQN80sKU2D2IPBT/0vmw135GIMfup/2WwctDzXqzsb1E2P8FO9urNB3TSzpMSr8NWrOxvUTc14cEm9uDNBvdRO4wRdvUptWOqlGSUNTqX16s4GddMiw8cn+erVnQ3qppklpcBvDAx96n/ZTBQvHcQNDH3qf9ls5LQpr0pYr+5sUC+1RWt/sF8z9Kn/ZbMRso3BZsvgp/6XzUbx0sEmx+Cn/pfNRllMBxsUw5/6X1YbhT9Ngw2KAVD9L5uNspgOFnUGQPW/bDYygOL1vOrVnQ3qphknJV6fqF7d2aB+6g40TevVnQ3qp+5A07Re3dmgfppxUuI1bOrVnQ3qpy4cxcgMgep/2WxkP+V1cOrVnQ3qp+7wBMUQqP6X1YY/yO/Xq9SGp37qD0/6DIXqf9lsFD8drB8Mhup/2Wwc5Pfr1Z0N6qf+IL9fr+5sUD/1B/n9enVng/qpL346WAsZDtX/stnIu75XnJZOvbqzQf3UFz8drKcMh+p/2WwUnD9YTxkO1f+y2ghFInqwnjIcqv9ls5EPUZEtGKlXdzaon2aolHg9nnp1Z4P6aWl/4gu96tWdDeqnGSo5k/hsEsOh+l82G3nf53WB6tWdDeqnRYePL2isV3c2qJ9mqJR4baF6dWeD+mk4KNqvV3c2qJ9mqJR4UZ96dWeD+mmGSs4OsnwMh+p/2WwovjizXtn9e+qjsfjoYG9hGFT/y2Yj7/m8/Ey9urNBfTQDpcT2YtSLOxPURUvvE6/6Uq/ubFAXLWOgeMWWenVng7poaX4ahS8Mg+p/2WzEo/CFYVD9L5uN3KLHd0HUqzsb1EUzUEq8cky9Sm0k6qIZKCU9WI4ZBtX/stnIbspLttSrOxvUTTNQSrxkS726s0HdNAOlxEu21Ks7G9RPM1BKvGRLvbqzQf20MCheb6Ve3dmgfpqJUjKD15aBUP0vm41cwedZheh6dWeD+mkmSonXW6lXdzaIn6rp6KSvOAilKIRSmSglw7/7ioNQikIoNR2d9BUHoRSFUGoqfsq/c4qDUIpCKDUVP+XfOcVBKEUhlMpEKfFaKfXqzoajNrKf8hol9erOhqc2sp/yOhb16s5GoDZyaMrrWNSrOxuR2sh+avl3TnEQSlEIpTJSSpZ/5xRHoRSlUCozpWT590VxGEpRDKXKKCheg6Je3dmgfpqZUuI1KOrVnQ3qp5kpJV64oV7d2aB+qtx4vFa9urNB/VQVpj/wdQ5DKYqhlCqdely+UnEQSlEIpdRBY369urNBvTQjJb1KRTIHW8VRKEUplMpISQfL2+AolKIUSmWkNGg2rld3NqiXZqSkgxvcB+ellEKpjJR08GywrzgKpSiFUhkp6UGyQHEUSlEKpTJSGh3kFEehFKVQKiMlHSLvHxyFUpRCqYyUNC+3Uq/ubFA/zUhJx2nwTDk/pRRKZaSkI1vOXK/ubFA/zUjJKbZjp16lNiiFUqa0PWv+mXIYSlEMpTJT4iuC6sWdCeqmpvTmsxOf69WdDeqmGSkNOrjr1Z0N6qbmKB+lOAqlKIVSRYSP1w+vV3c2qJtmpKTjYAniKJSiFEqZ4qaD5YOjUIpSKFUolB25GOemFEMpW/pLBkEQh6EUxVCqNEENKpMUh6EUxVCqNEENKpMUh6EUxVAqQ6VRZZLiOJSiHEoVDsUrHNWrOxvUTwuH4hWO6tWdDeqnhUPxskD16s4G9dMyDoofTVOv7mxQPy0cahTAcBxKUQ6l6jgodq5MvbqzQf209kENAkuOQynKoZRTY2qrOAylKIZSBUPxyi/16s4GddPMlDSv01av7mxQN3XFTQfxLYehFMVQKjOlwCrD14s7E9RLM1Lipb/rxZ0J6qRHbVD16s4GddKjNqh6dWeDOmkmSonX1KhXdzaok5Y2KM8qvNar1AaFUCoTJe3i+kyj3dngvJRCKJWJ0ijzoTgIpSiEUlWBLw3ug/NSCqFUJkrWs2qk9erOBvXSTJS0n3gf4yCUohBKZaJkPVvhXa/ubFA/LRBqFCNzEEpRCKUyUdIryGKfKeenFEKpTJT0+t2yz4PzUwqhVCh+6vjnwUEoRSGUCkVEwvB/CwehFIVQKhMlXoiiXtyZoG6agZL2fnAbnJtSBqVCcVNWoahe3dmgbhqKm/JFmopjUIoyKJWBUuLlY+rVnQ3qphkoDZcgjkEpyqBUmQU1WoI4BqUog1IZKA2XII5BKcqgVAZKwyWIY1CKMiiVodJwCeI4lKIcSkV9tARxHEpRDqXKLKjREsRxKEU5lIoHcvv16s4G9dPojpYgDkQpCqJUUeEbLUEciFIURKkYjpYgDkQpCqJUmQU1WoI4EKUoiFIxHSxBHIdSlEOpDJWGSxDHoRTlUCqpoyWI41CKciiV9NESxHEoRTmUylBpVEajOA6lKIdStReK1eaoV3c2qJsmN2zmrhd3JqiXZqY0aMmqV3c2qJeWSVB8S1a9urNBvbRMgmK1KOrFnQnqpIVCsf3g9eLOBHFSfQihNAehNIVQunRCDQCS5iCUphBKZ6KUeHmzenVnQ1MbBxN26tWdDUNtHLTp16s7G5baOMpHaQ5CaQqhdIFQvFRbvbqz4amNozo+zUEoTSGULjJ8g4YIzUEoTSGULhCKl4yrV3c2qJ9mojQ4o2uOQWnKoHQZBDVydY5BacqgdAZKo8pqzTEoTRmULoOgRq8Lx6A0ZVC6MCheQa9e3dmgbqqK7i7P9TTHoDRlUDoDpaGLcQxKUwalM1JKvPxdvbqzQd00I6XEy9/Vqzsb1E3VUbmp5iiUphRKH02CqlepDUqhtD4qN9UchdKUQmldllM+D6Q5CqUphdIZKQ3EW+rVnQ3qpxkpMeIt9cru31Mf1cVH+eyL5giUpgRKZ5w0iBk0B6A0BVC6tEHxCsL16s4GddFMkxIv5Vev7mxQF800aSBEU6/ubFAXzTQp8XKA9Sq1QQGUzjRp6OYcgNIUQGkzlo6qF3cmqIeaA+moenVng3qoOZCOqld3NqiXZpqUeFXCenVng3ppaYMaJOU1B6A0BVC6tEENEuqaA1CaAihd2qB4dcR6dWeDuqlJw6oCzeEnTfGTLhp8g6oCzeEnTfGTzixpVFWgOfykKX7SVh9UFWgOP2mKn7Q9kDCvV3c2qJdae1BVoDn8pCl+0pkljaoKNIefNMVPuojwDaoKNIefNMVP2h5lTDWHnzTFTzqzpFFVgebwk6b4Sdt0UFWgOfykKX7SmSWNqgo0h580xU/aqYOqAs3xJ035k84waVQRoDn+pCl/0qUNiq8I0Bx+0hQ/6cySRhUBmsNPmuInnWHSqCJAc/xJU/6kM00ahlAcgNIUQOlMk0YVAZoDUJoCKO3iQUWA5gCUpgBKu3RQEaA5AKUpgNK+7PmD4wIHoDQFUDrTpMRLzdarOxvUTTNNcorVEq1XdzaomxYxvtFGyQEoTQGU9nace9Ecf9KUP+mixcfLRdarOxvUTUsTVGBVYuvVnQ3qpv5wz+f4k6b8SZcmKF7qsV7d2aBu6g/2fI4+aUqfdEZJ/OSTepGaoPBJhzJZh1cI0Rx80hQ+6YySguOlKDRHnzSlTzqjpMEElnp1Z4P6aEZJYeKXUg4+aQqfdGmAGr2yHHzSFD7pcBiXcvBJU/ikM0kKjm/A1hx80hQ+6QKfRtELB580hU86k6TAD7WpV3c2qJfGMlyHVYeuV6kNCp90Jkl8Tl9z6ElT9KRjcdLBysGhJ03Rk84caRi7cOhJU/SkM0cajMWpV3c2qJfGMlpnsClw6ElT9KRLDxQvJ1qv7mxQL80cKXhW2ble3dmgXpo5UvCDBYhDT5qiJ51BUvB8AY7m2JOm7EkXHT7N5ys49KQpetKpZPX5DkzNoSdN0ZNOZZbeNLgPzk0petIFPY02OA49aYqedGmB4tVV69WdDeqmGSQNRoLWqzsb1E2TP+ji1Bx70pQ96XTUqqc59qQpe9JFh48fK1qv7mxQN80oaZg44eiTpvTJZJQ0GE1arxIbhtInU1qgeKXYenVnQ1Eb+uB5GI4+GUqfTBkCNfGvvuHok6H0yWSUNH4ejJ8aSp9MaYHiVW/r1Z0NR23k5ZRXva1XdzY8tZHT+rxibb26sxGojRyY8iqv9erORqQ2jtL6hqNPhtInU3T4+BEZ9Sq1QfGTUUdpfcPhJ0Pxk1FH66nh8JOh+MlkljQIsw1HnwylT6bQJ16xtl7d2aBumlHSaBkzHH0ylD6ZjJJGS5Dh6JOh9MkU+sSrzdarOxvUTTNKco4vMDccfTKUPplCnyyfrTQcfTKUPpmMktI6HZCJHAxHnwylTyajpMDWvRiOPRnKnkwGSRzzMRx3MpQ7mQyRUuQDD8NxJ0O5k8kgybvBi8KxJ0PZkynsiRerrVd3NqiH6qPTk+Hgk6HwyWSS5MJgc+Lgk6HwyRQNvgE4Mhx8MhQ+GX1Urm84+GQofDLmqNzEcPDJUPhkzFG5ieHgk6HwyVT4NAgaOPpkKH0yhT5xCQ/DoSdD0ZM5GgBVr+5sUCc97H0yHHoyFD2ZzJHSQO3WcOjJUPRkMkca7SoceTKUPJmMkQYrD8edDOVOpjQ+cSsPR50MpU6maO85XlDIcNTJUOpkMkIavmkcdTKUOpmivTd6SzjqZCh1MvaoysRw1MlQ6mRK09NAtNdw1MlQ6mRsqdib2PeEg06GQidjjxQiDQedDIVOxh4pRBoOOhkKnUzpeRro/hoOOhkKnUzpeRo9Ds5LKXMy7kjH1HDMyVDmZI5mP9WrOxvUS+vsp0FwzjEnQ5mTKcOfEp+RMxx0MhQ6mSK9l/hcmOGgk6HQybiy1w8iWg46GQqdTCZIWvEl5YaDToZCJ5MJUhpoGBsOOhkKnUwmSINSOcMxJ0OZkynKe6MFiGNOhjIn46eDUjnDMSdDmZPxh1s9x5wMZU6mKO8N5JgNx5wMZU6mND1NfGrQcMzJUOZkMkHSiu/AMBx0MhQ6mToAik9zGg46GQqdTJkANViBOOZkKHMy/qg3z3DMyVDmZPxRb57hmJOhzMmUAVDTQBbacNjJUOxkygQo9mlw0MlQ6GTK+KfR0+Cgk6HQyYQjiX3DQSdDoZMpsnvTQNHZcNTJUOpkyvyngXdw1MlQ6mTK+Kfh8+CclFInE44AvuGok6HUyYSSKB0oOhsOOxmKnUzBToaHNYbDToZiJxMOM1AcdjIUO5l4MFinXqU2KHYyRXdvGogpG448GUqeTBkAxboHh50MxU4mHlXpGw47GYqdTOl4Gj4Nzk0pdjKxJKCmQTjHcSdDuZPJEEklnmwajjsZyp1M1d4baEsbDjwZCp5M6XkaZZ858GQoeDKl52nixfcMB54MBU+mND1Ng2CMI0+GkieTMZJWg92WI0+GkifTyNMgouPQk6HoyaTxCZ/jToZyJ5MOT/gcdzKUO5l0eMLnuJOh3MkU7jQNZMMNB54MBU8mU6RRXMlxJ0O5k8kQaRhXctzJUO5kUjqKKznuZCh3sqXraRBXWo47Wcqd7FRXUz6wtBx4shQ82QKeDH/+sRx4shQ82anu+3xUaDnyZCl5sqXviftqLYedLMVOdjra9S2HnSzFTnY62vUth50sxU52KqvpQFXectzJUu5ky/wnzZckWI47WcqdbOFOg+Iuy3EnS7mTVaWdhFd0thx3spQ72cKd4sDFOO5kKXeylTsNZPYtB54sBU9WDVdTy2EnS7GTVUerqeWwk6XYyaqj1dRy2MlS7GQLdpoGAwMsx50s5U42QyS3lmgwgaXluJOl3MmqspwO1P4tB54sBU+2gKdpINVvOfJkKXmype9pGujbWw49WYqebCZJZtUXYFZ2y8EnS+GTzTSJTyJbDj9Zip9sZklcEtly6MlS9GQzRxpM5bIcebKUPNmiuzcpvsjMcujJUvRkdfVSfs+3HHuylD1ZXVfTwSbHwSdL4ZPV1U0HGxRHnyylT7bQp2mgTG85/GQpfrIVPw0k4S3HnyzlT7bwp2mg5245AGUpgLJlCtSgo8xyAMpSAGVr+9NA0N1yEMpSCGULhJoGauqWo1CWUihbKNQ0kFO3HIayFEPZ0gE16YHXcxzKUg5lSwvUNFBDtxyJspREWXNESy3HoixlUdZUfx28ORyQshRI2ToMaqBDbjkiZSmRsoVITQMhcsshKUuRlK1IaqBEbjkmZSmTsoVJTQMpcstBKUuhlLXFYQda5JajUpZSKVuo1DQQI7ccl7KUS9nSDDXIDVmOS1nKpWzhUtNA0dxyYMpSMGVtWWAHcuSWI1OWkilbyNQ00BK3HJuylE3ZwqamgRC45eCUpXDKunEJiuXQlKVoymbONNqDOTJlKZmyrvrq4NXj0JSlaMrWqVADPXLLsSlL2ZQtY6GmgSC55eCUpXDKlo6oaaBIbjk6ZSmdskWTbxpIklsOT1mKp2wR5ZsGmuSWA1SWAipbAdVAlNxyhMpSQmX9dLjhcIjKUkRlC6KaBtLmlmNUljIq68vqOtA2txykshRS2dIYNQ3EzS1HqSylVNZXjx24PYepLMVUtgyImgbS5JbjVJZyKls41TSQoLUcqbKUVNlDUmU5UmUpqbIZO9nRSY0jVZaSKltI1ejYyYEqS0GVLaBqGmjQWg5WWQqrbDjQOrUcq7KUVdlwVJ1iOVZlKauymTuNkniWQ1WWoiobjjr3LceqLGVVNlRPHaxoHKyyFFbZUD11sKJxtMpSWmUrrXKDFY2jVZbSKlumRA16NixHqyylVbbQqmkgqWs5XGUprrJVoo+XCrQcrrIUV9moDmT+LEerLKVV9lCiz3LAylJgZePRODPLAStLgZXN9Gkkr2c5YGUpsLJVoo+X17Mcr7KUV9kq0cdL41mOV1nKq2xmTwNpPMvRKktpla0Kfbw0nuVolaW0ylaFvkGQx9EqS2mVTXVJHey7HK6yFFfZ0ig1DUSXLcerLOVVtvKqgc6w5XiVpbzKpqqHMth3OWZlKbOyhVlNAyk2y0ErS6GVTbW6f7BXcdTKUmplK7UapcE4amUptbKZQdlBD6zlsJWl2Mo2bDXYJThuZSm3sqnWVA12CQ5cWQquXJPr43cJx5ErR8mVq+RqoLjlOHLlKLlyU40C+FfHcejKUXTlDhX7HEeuHCVXbjrItzqOXTnKrtyhYJ/j2JWj7MoVdjUNJLccB68chVduOqiidhy6chRduan6Kr+QOI5dOcquXAZRw2fKeKqj6MplDjXqwHAcunIUXbmq2DfQzHIcu3KUXbnKrgaCV45jV46yK6cOHZXDV47iK5dZ1Ogc4Th85Si+cof4ynH4ylF85Sq+GshVOQ5fOYqvXMFXA1Ejx+ErR/GVq/gq8BWzjsNXjuIrp9LBIArH0StH6ZWr9CrwKsyOo1eO0it3KNvnOHrlKL1yuvrqYHnnAJajAMvpI70px0EsRyGW0/bwq+EwlqMYy5UGqtFXw1EsRymWqxRr+NVwzkopltNHxf+Og1iOQixXIdZA8MVxEMtRiOX0USWg4xiWowzLZR41XEY4hOUownLm0Fc5guUowXKm+uogAOAQlqMIy5mDZlTHASxHAZYz9sjdOX7lKL9ylV8NFHAcx68c5Veu8qvRO8PxK0f5lcssavjOcPjKUXzlTDx8Zzh+1f2yGTnKWDkOXzmKr1zFVwNZDsfhK0fxlSv4iq9Idhy8chReuQKvRq8dx64cZVeusKvR8+DQlaPoylV0NdChcBy6chRduYKu+KfB+SnFVu6wncpx2MpRbOUO26kcR60cpVauUquBcoPjqJWj1MoVEb8Bg3MctHIUWrnDhirHMStHmZU7bKhyHLVylFo5V1bUgXSD47iVo9zKVW410G5wHLdylFu5yq0G4g2O41aOcitXudVAvcFx3MpRbuUqtxpoDTiOWznKrVzlVoMmf8dxK0e5lavcKg72CI5bOcqtXGZQI6UAx2ErR7GVK9hqoBTgOGrlKLVyRcxvoBTgOGjlKLRyflxq5Thi5Sixcpk+Dc+IHLByFFi5CqwiX6vpOGDlKLByBVgN2vQdx6sc5VUus6dRm77jcJWjuModivk5Dlc5iqtcaayaBroFjuNVjvIqV9T8BnEZh6scxVWu4qpBj73jcJWjuMqFcSmA42iVo7TKZfQ0UpNwHK1ylFa5cCQ56Tha5Sitchk9uVVelektdxytcpRWudpZ5XeliY4DVY6CKnfYVeU4TuUop3Lh0EU5TOUopnKhuuhgo+M4laOcylVOlfh2FcdxKkc5lYvVSQcbHQeqHAVVLlOn4aLOgSpHQZUrbVWjRZ0DVY6CKhfN0aLOgSpHQZUrgn78C8dhKkcxlYvu6IXjMJWjmMpl5jTcGDhM5SimcrWtarQxcKDKUVDlMnUavvkcqHIUVLlMnYYbAweqHAVVroCq0VvHcSpHOZWrnGrQsO84TuUop3KZOY02Bo5SOUqpXCZOAxfjEJWjiMpVOb+Bi3GEylFC5TJtGq7HHKByFFC5Aqi49ZhjU46yKZcOT1Ecm3KUTbnKpgbSBY5jU46yKVfZ1EB3wHFsylE25QubYp6G57CUp1jKVyw16NT3HJbyFEv5iqUGLfKew1KeYilfsJQa9JV7jkt5yqX8NBp94jko5SmU8gVKDYqQPQelPIVSvkApNWgJ9xyU8hRK+dJRpQZ91J7DUp5iKV+x1GC39hyW8hRL+dJSpQYNzJ4DU56CKV96qtSg79dzZMpTMuUzZeLVrj2HpTzFUr5gKTXo+vUclvIUS/k6SmrQ5eo5LuUpl/KlrUoNmkM9B6Y8BVNeuYNhG54DU56CKa/8wbANz3EpT7mUz5BpNCjDc1zKUy7l1ZHUtOewlKdYylc5P3bokOeolKdUymfCNJq14Tko5SmU8gVKDWqXPAelPIVSXuuDWRueY1KeMimfAdNo1obnmJSnTMpnvjTSq/YckvIUSXntDmZteA5JeYqkvK6L6mCf4pCUp0jK67qoDvYpjkl5yqR8GSk1gAWeQ1KeIilfkJQa9Mt6jkl5yqS8mQ7Gj3iOSXnKpLxRB3M/PMekPGVSPvOl0cwOzyEpT5GUN+ZgZofnmJSnTMobezCzw3NMylMm5QuTUoOeW88xKU+ZlC9MSg1aVT3HpDxlUr70VKlBm6nnoJSnUMoXKKUGbaaeg1KeQilvqrMONk2OSnlKpXyhUkoNNk2OSnlKpfwRlfIclfKUSvlDKuU5KuUplfKHVMpzVMpTKuULlVKDRlHPUSlPqZQvw6USzz49B6Y8BVM+U6aRwrrnwJSnYMpnyjRS8vYcmPIUTHkbD1S4PcelPOVS3lZPHWwSHJjyFEx5Vz11sElwZMpTMuVd1VAbLPAcmvIUTfmKpvj1nQNTnoIp76og5WA948CUp2DKu1rzP1jPODDlKZjyBUypQd+s58CUp2DKu0Nn5biUp1zKFy6lBr23nuNSnnIp7460/D2HpTzFUj4zpqHHc1jKUyzlfdVUGazNHJfylEt5P873e45KeUqlfIZMcSBi5Dku5SmX8r5I+fOqTp7jUp5yKV9GTEU+hek5LOUplvJ1xhQvIeI5LOUplvK+aqQPdjuOS3nKpbyvjjrYIjgw5SmY8oeKf57jUp5yKe/r0InBssqRKU/JlA/VUwfLKkemPCVTPoMmPXr/OTblKZvyGTTp0avLsSlP2ZSvqn98N5bn2JSnbMofdlJ5jk15yqZ8hk16tIRwfMpTPuULn1KWnXnlOT7lKZ/yhU+pQbe75wCVp4DKZ9hkJn7quef4lKd8yhc+pQYd857jU57yKX/YR+U5POUpnvKHfVSew1Oe4il/2EflOTzlKZ7yh31UnsNTnuIpf9hH5TlA5Smg8od9VJ4DVJ4CKn/YR+U5QOUpoPJHfVSew1Oe4il/2EflOTzlKZ7yh31UnsNTnuIpX/CUGgg7eI5PecqnfB04NRB28Byf8pRP+dJHpQbCDp4jVJ4SKp+OeL/nGJWnjMqXNio1EHbwHKTyFFL50kalBsIOnqNUnlIqXyiVGgg7eA5VeYqqfKrL6mDj5ViVp6zKF1alBpoKnmNVnrIqX+dODTQVPMeqPGVVYTriqYHjVYHyqlB4lRroMgSOVwXKq0JmT3ol3cy5OXC4KlBcFTJ60o5Xlg4crQqUVoWMn7TTLA4NHLEKlFiFjJ+043MAgSNWgRKrUInVQKcicMQqUGIVMn2KE0/+AwesAgVWYToi/4HjVYHyqjAdQIDA0apAaVVQJQCwbHV74GBVoLAqqBIA8GFm4HBVoLgqqOKnnv9uOVoVKK0KmTyltAJNOzlqgnNTyqpClQAcvLccqgoUVYXDyVOBQ1WBoqpwOHkqcKgqUFQVMndSgR8SGzhUFSiqCqWFSg0UWQLHqgJlVUGVYj9+4GTgYFWgsCqUFqrR68LBqkBhVdDqyNc5WBUorAq6TPLjnynHqgJlVaGwqkEqM3CsKlBWFfRRtV/gWFWgrCoUFcCRr3OsKlBWFSqrGojtBI5VBcqqQmVVA7GdwLGqQFlV0OVINViTOVYVKKsKlVUNtHYCx6oCZVXBHFX7B45VBcqqwmH/VOBYVaCsKpT+qdHrz7GqQFlVKAqAaqAbFDhYFSisCodjqAIHqwKFVaHCqoH2UOBgVaCwKlRYNdAeChysChRWBXNUUxU4VhUoqwqVVQ30iwLHqgJlVSFzp9HRPXCoKlBUFex0cHQPHKkKlFSFzJ1GR/fAoapAUVUoqGpwdA8cqgoUVYXMnUZH98ChqkBRVbD24OgeOFIVKKkKhVQNju6BI1WBkqpQlP/4o3vgQFWgoCrYcHB0DxyoChRUBRsPju6BA1WBgqpQZf8GOybHqQLlVKFyKsdPHwgcpwqUU4XKqQbyVoHjVIFyqlA4lRroOQWOVAVKqkIlVQM9p8CRqkBJVaikaqDnFDhSFSipCpVUDbSYAkeqAiVVobRQjb8dzl0pqgoVVQ2UcgKHqgJFVcHVdXWwS3CsKlBWFdxRD3XgWFWgrCr4o2kqgUNVgaKqUIX/HP/icLAqUFgViu6fYfPdgWNVgbKq4KuzDjZNDlYFCqtCaaJSA+GgwNGqQGlV8O6AZgSOVgVKq0KlVQPxocDRqkBpVai0aiA+FDhaFSitCoVWqYHmT+BwVaC4KvijOWqBo1WB0qrQaBVvg4NVgcKqUEZUqYH2UOBoVaC0KhTdPzXQHgocrgoUV4WCq9RAeyhwvCpQXhUqrxpoDwUOWAUKrEJpplIDwZ7AEatAiVWoxGqgthM4ZBUosgoVWQ1kbgKHrAJFVqFK/w1kbgLHrAJlVqEyq4E0TOCYVaDMKpSeqvVkwxrhoFWg0CqUWVUqDDyWo1aBUqsQD2SAAwetAoVWIROoEQkMHLQKFFqFMq1KDVRdAketAqVWoYyrUgP9kcBhq0CxVSjYanQm4bBVoNgqFGw1OpNw3CpQbhUqtxqcSThuFSi3CjEdnUk4bhUotwplWtXoTMJhq0CxVcgIymu+SCNw1CpQahWSPjrXcNAqUGgVkjk613DQKlBoFZI9ONdwyCpQZBVSOV45PqbhiFWgxCokf3Q24oBVoMAqpHB0NuJ4VaC8KlReNZC4CRyvCpRXhcyeghncB+emlFbF6ShlFTlaFSmtitNRyipysCpSWBVLc5UayOREjlZFSqtiba4aiMJEDldFiqtiGVelBkoqkeNVkfKqWDqs1ECAJHLAKlJgFSuwGoh2RA5YRQqsYm2xGoh2RI5YRUqsYsZP1vG9DZEjVpESq5j5E9e0FjlcFSmuiqW5iidekaNVkdKqWET/1EB7JHK4KlJcFWt31UB7JHK8KlJeFTN9GiXxIwesIgVWsTZXDfRLIkesIiVWUVVH5dehyCGrSJFVzPwpWH6qYuSQVaTIKqrqp4MFgGNWkTKrqI6mq0QOWUWKrKIqPdV8P1HkkFWkyCoWZBUUyyMjh6wiRVYx86cB0owcsYqUWEVdXXWwHnLMKlJmFfVRFWDkmFWkzCrqoyrAyDGrSJlVLMxKDcRHIgetIoVWsUCrwSLCIatIkVWsyGogPhI5ZBUpsoq6qqkPlnaOWUXKrGJlVmmwtHPMKlJmFQuzUgOZishBq0ihVSzQSg36/yNHrSKlVrFQKzVoN48ctooUW8WCrQZkM3LUKlJqFQu1UoOW9chhq0ixVTTu4DwUOWoVKbWKxh+chyIHrSKFVtGEg/NQ5KBVpNAqFmg1OA9FjllFyqxiYVaD81DkmFWkzCoWZjU4y0SOWUXKrGJlVvxZJnLMKlJmFa0en2Uih6wiRVYx8yc70FGMHLKKFFnF2l01UDWIHLOKlFlFW5fVwR7BQatIoVW0R6eqyFGrSKlVtEenqshRq0ipVSy6f3qgrhA5bBUptor26PQfOWwVKbaKBVvpgTpC5LBVpNgqFmylB+oIkcNWkWKrWLCVHggbRA5bRYqtYsFWeiBsEDlsFSm2igVb6YEsQeSwVaTYKhZspQeyBJHDVpFiq1iwlR7IEkQOW0WKrWLBVnrQqx05bBUptoquOuzg7eOwVaTYKhZspQd91pHjVpFyq1i4lR70BEcOXEUKrmIBV3rQExw5chUpuYqFXOlBT3Dk2FWk7CoWdqUHPcGRY1eRsqtY2JUe9ARHjl1Fyq5iEQDUg57gyMGrSOFVLPBKDxppIwevIoVXscArPWgcjRy8ihRexQKv9KBxNHLwKlJ4FQu80oPG0cjRq0jpVSz0Sg+6PiOHryLFV7HgKz3o+owcvooUX8WCr/Sg6zNy+CpSfBULvtKDjs3I4atI8VUs+EoPOiUjh68ixVex4Cs96OuLHL6KFF/Fgq/0oK8vcvgqUnwVC77Sg568yOGrSPFVLPhKD3ryIoevIsVXseArPej9ihy+ihRfxYKv9KBvK3L4KlJ8FQu+0oOGmMjhq0jxVSyagHrQEBM5gBUpwIpFFHDQyxo5gBUpwIoFYOlBU03kAFakACsWgKUHDTGRA1iRAqwYi8MOGmIiR7AiJVixKAPqQUNM5BBWpAgrFmVAPWiIiRzDipRhxVgdduD1HMSKFGLF0nylBw0xkaNYkVKsWJqv9KCZJXIYK1KMFUvzlR40b0SOY0XKsWJpvtKDkvbIgaxIQVYs3Vd6UPccOZQVKcqKpftKD+qeI8eyImVZsXRf6UHNcuRgVqQwK5buKz2o840czYqUZsVCs/SgRjdyNCtSmhVL95Ue1OhGjmdFyrNS4Vl6UF+bOKCVKNBKBWjpwXzQxBGtRIlWKkRLD4oOE0e0EiVaKdMpr/gSysQBrUSBVipASw8KFxMHtBIFWqkALT0oXEwc0EoUaKUCtPSgcDFxQCtRoJUK0NKDwsXEAa1EgVYqLVh6UHOYOKKVKNFKpQdLD2oOE4e1EsVaSVWH5b0+cWArUbCVCtjSfAtV4rhWolwrFa6lB4V6ieNaiXKtVFQD9aDILnFgK1GwlQrY0oMiu8SBrUTBVipgSw+K7BIHthIFW6n0YulBcVviyFaiZCsVsqUHxW2JI1uJkq1UyJYeFLclDm0lirZSUQ7Ug+K2xLGtRNlWKmxLD4rbEge3EoVbSVeHHXg9h7cSxVup4C09KG5LHN5KFG+lgrf0oLgtcXwrUb6VMqzyii/YTRzfSpRvpcK39KBALnF8K1G+lTKtGqnlJQ5wJQq4UgFcelBklzjAlSjgSgVw6UGRXeIAV6KAKxXApQfVbYkDXIkCrlQAF68vlTi8lSjeSgVv6UGBXOLwVqJ4KxW85RMrQpg4upUo3UqmOuvgBebwVqJ4KxW8pQelNonDW4nirWSqtw5eYI5vJcq3UunK0oNSm8QBrkQBVyqAy/JDyxIHuBIFXKkALj0o10kc4UqUcKWiIKgH5TqJQ1yJIq5UFAT1oFwncYwrUcaVioKgHtS5JA5yJQq5UmnM0oM6l8RhrkQxVyoignpQo5I4zpUo50qFc+lBjUriOFeinCsVzqUH9SWJ41yJcq5kq8MOvJ4DXYmCrlQGXOlBIUPiSFeipCtV0jWoQkgc6UqUdKVCuvSgCiFxqCtR1JUq6hpUISQOdSWKulJFXYMqhMShrkRRV6qoa1CFkDjUlSjqShV1DaoQEoe6EkVdqaKuQQVB4lBXoqgrVdQ1wLuJQ12Joq5UUdcA7yYOdSWKulJBXWaAVROHuhJFXamgLjNAoolDXYmirlRQlxkg0cShrkRRVyqoa/V6Jm+ZONKVKOlKhXSZAVZNHOlKlHSl2qM1wKqJI12Jkq5USJcZYNXEka5ESVcqpMsMsGriSFeipCsV0mUGWDVxpCtR0pUK6TIDrJo40pUo6Uq+OuzA6znSlSjpSlVUcIBVE0e6EiVdqZAuM8CqiSNdiZKuVEiXGWDVxJGuRElXKqTLDLBq4khXoqQrFdJlBlg1caQrUdKVCukyA6yaONKVKOlKhXSZAVZNHOlKlHSlQrrMAKsmjnQlSrpSHX01wKqJI12Jkq6UqZX+p5rUf2laQJM4zpUo50qZWYXpn0n9V/L0fMFRrkQpVwrVW9M/lTL/lVykVjh3pZgrFcxl9DSwwnGuRDlXKpzLaDWywjksBV0pQyvr/T9T+C9Lm6wSx7kS5VypqAsarUd3wjksJV0pUyu+RDpxmCtRzJUK5jIDzJw4zJUo5koFcxltR38M566Uc6XKuXj0lzjM1X75//7zH8v113x/zuf/53qe//rHf/+v//UPs+6v//OPb0v5Te4EzR/1j//+n3/kVs///p//83/+2T5i/a9/gu18bf2w0/d7b8WbzYY35d8op8sP1tYf1DTZ9lNs/5dJsf5kQ/udb/+fVirUn7RJ7SffflrnsQjv9uV2fV3ePu+n53K7ogegU/f3KyM1+D4/T+fT84Rsmf5ZqiS19XjeT8/57Q++r0l1xtaStS9aG//JJnSWtfgZNsPPPx8zuVWNblVo8eVlfjyW78tleaI/3faPcZVkqf5R7vSf/1AJfEEl+/XPut8u9P4Nun/hO/Dycvu8Ppdzb8vY7lGsM2zzv12V9suta9ucfE2ffeFjss3+IfnOPdaO1/pA/NR+CkFo/7n8ml8+5wf+Dnz/HaR201bohtnovz5P9Lv1wW52ldXSR92Ze/lxur7NZ2w19laN0CmQje5xqrbStGXIt1UoVmc0rl0yxrSfQnv0Br4Ok9pVC2uaVe1361Rv2Y1++365vfyc79/O83N+eeK/XnWvixJbnO/3G1rEVfeNKy81g90/T1beXqV1dLLMzvf5bcGLVOocpXvIUXpn3+/z6SeyaKd+2XPt62jflZva5gRLjjG+bWYutjuwDn5qy5DxHpzAwpfb3Mhb4YJY7pl5FK5/FOB5TrhZFbPltcF2fW9X6jnZ2nzF33sKvSl4Gk76Jhajv9ZfIs/udyorXDCLseW6EFv9Rv+1Z7dcn/P98Vyey+mCX5nepZxwwS0230/3n/P9gYMx1W+k3nzJ15Gp2Ic1am2tasuQ+I3MNn8uH73Z1LuMNk7sM5+vr/N9ub5hp4m904ifXrO1dxdv+8cnfXovt/ePy/zE78Y09bGcidK7O5NdJaX+b5Q+/DOzfq29Fp2pbe2RuvL59HjM+IFNpnc4a8WmXk4vP5br2/P0YN5afKQQRgzn88snjnBsH+G004SelHRNOc+Pl/vysQt/fb+oBLm19e+8LI/nfJ3xxjn1O6dq24ht4UDb+Y1q0UOqW4hV7YzUtg2b6q7hprrlOVP/n3W+e4kmTf3nwdX/Z5VvyT/EFnHG9hFr3Vb+IakWPk+hXltFvNvNmnbVWvipBTnKttBGOdgRfYuFVGgBjQptc1LJQZwLe+O0PREIn6bYQis1tat6+0lBKAYRgE7tXxgFO7GB0Au2c+PgDWlHTG1Du+rbYTPLAtef4GC5ttUKvWK0NSR0rpySNAQ4374/5vsv4mGrjF3ns+Ld63yf//U5P575Ll/mjycO+YIOfehoAkQ7X/iAx8ft+piHnxDRJ0T4BPF7t64x6IilOpNuEi/Mz/mv5/N+esFB4dQ/AXC3SbqxnXcWE1r9tDggL5b2i2noQ4wgDYHOv5b5N/oi0CL1hce2GmLuCp34pd5CokaU4jB2Oz5Jt8ndGQZlIow47mb+vv59E2/+r8v98fzX5+n+XHCKAWUYujUqSr/P5Xyf35bH845O0yn2iQszSSOe5fzrdMG7bYoWmZL+ycv7x31NreA9du1f7P5eqX9sxh5kg+1vzibxU6NngNC/m+I1eV3b3koe7edCDj7oL82tmDKbl9vpPJO3oT/mWen6yCUidf+yG3GWoZliXofenvgI8b6cP24LNqX7BddYOCkmaZh4vT2X1+Vln9VcR5v2hyepB3/c5/XLYLKaDn2z0i/kPp/Ofx7P05Oa88ic9EtBb0L/HvgWaznIMUFiqQWaEPP5qcV8q0JG/QniwBghub4lsSBNZVpcoOu2sf4E8ZiDqMklYTbv/BjnpmPvHlr6zEvI9HlHIZhT3daZpAn08yO7//sJHXxX6Y/u8CX+Q8s/R2tZfyLUfhKbIkfxtR26e5Gk3r6a2b3fa/PuZku8hj0uN5L+tv1q6L34kb+frqc3HPOuHbjdPUmX/GaKW1/7o7iVLmLYIPPo+qVRnO983D7vLzhE6MNa48VukQ0xi1dAq400Mnh8nO6nd7zm9LGeMuLN93F/Qa4RuwcVvdjKn8dzfsd53B6MQWYrAWWEQ63pDjTSz3ue3vIjmJ80OdcDF90Ol6mBzNQy/Wpqt6Tg0KpcaEfQyUvf1OeP5X5mg8l+XeuS0OJ4hvGWiLxFeoufJL5yvQ8naWJqfqi1Hr37A11nxrbzuW0bl28ZeN8yIqF9C7ElVOoJfk171H+11rzXr2Wjcb4d+NT2E3xVNra90MNPgMKypmrNFkhT5/kP/Tn/KT493APXjv9uJRAafzu9n07X0+XPc3l5dBHrQuPVhL5q4YK1Wh/fsO7PcVIHX01ebm+X+dd82Xtk7+NZQ0Ns8+Ny+jOPgf8qQNDd7BcMr0HG8jJTEpuVPLp7le562WRevcf32pNwIz1mZ8PP+3x6Zx4rOrd74Yqx3NeHiu7M9vFQW3udlGlfvn++rwvbAy0fxvfwXBpNrrbod2L6ihSXhA/usryRIwU6X0fpofhyuf2ez+/Le96X8S7S81Gjhe/2avB9+Ws+v9yuTxKABNeTaz+1VUkH4Ze7Gr+eVsD++nm5PF7u83zFH6DRB0BFjrRWaP2Axzz/XK5vr7f7221958+nBW0cPZxT4j0yW/65fHC0N/aLqBbGP5fnmiXEEa3rI9p2nnLSt/x9Ld5Artkvlk59xczttbCv+Xz6PC+3x/y2/k/Iv3TPiq0Xru7E+q/lPA+s+9668GVvmxJ2KoOcqu3NqzBJ/SkBBQjC97d90AD8rJ333Zr1xbs/2FJR4iFKQ/eP5XWNM3/f7j/xq9C/zxszAXqkHZANF4Xv+Mfyc0brt+vre9b6xxrEQoGeFr6CHws5dfuEanGkfO0DHW5jH2yrpKSP9INUY/XP0gXhavvxcWHyS6vm0OY9Uqq52cJ35nVfB6WlKbrN3K/5vku69jaNdPlndmHb753C7y+b2W/Drjcl/CMppda9r5oI9S9boA5pRCetEVk/48xEXK6P5ZK0knG1hr9f1wdaqcFrZRreVdHC3Svhq5Y/5fp6wyEKylJ66ZvSbDV8h1NU/flLW+m5crVJl5k+TExfcQC+PAbVd0irKVZzyFCKqIpFWlCw2tlF1Aj+ay8tIH4+78v3zycODl1Pr9IkNLWGAmhp6QOWluGVZq9XY99u1wuuRZ5QYbOVJhtXY3tbaLe0SvglrraYetJVCGeLSCahp67G7rfvn4/ndX6gr8D0ruF1fW+h4FhpKFLXsT1bnaAmQhqp5PDt9P5xWa5rTIHTOzb1f1JbOoI0K7PaziwZZ/H6v2urahSafP543n7iY4HtD2sBIoj2VBI8lElD7gsKMZSHgmUp0v583ughtC/kaSW6Sm8huszwr9NyOZXKcPp2u75SPrWET2oVKGqSnnfLZ5A0npv67xlqaKBQOEjZwK/5fnqbv5+u59/L+fkDf4jqP8TCh0DRi3SZ+Wu53t7P94O0VV+saaWLajZ7FFsjvCpNKf778z4f3qvvlw3p6XC1enSriBd62QP4fnr5eb7fPs63z++X+fsNwaLUMxA9CY9zzeTl8eOE/Tn1+Vk9CQ9wzd7nHZ3ZlUfFqrKAeLX1dr99Xs8vtwuu3UioC2MSAvDvp/N1fq6HqPfbGf+xfdioJ+F5b/AW6f4tqu+OA7pqAoAGu71ibQEMUDte323BTZDyL4WYoRBlfj895rVzuE9m6D42kLrTaubzuVzwG9TvUsJQbDXFkK8eMFlh0U6ukse1ttF0C6qKwrX5O/qmU5+X0Ep4Lvu+POkurpD3aegtgOpK8du8dn7UvN/yytQ8Rdf3f0RwxSiM27/fzmhXNX2wB/4cWoomKKAnE0RFjbasrZvwU7saoHo0RPhJeBb4fns+bwj/hb7DSjlhrdj3dck53UmLnUIlGULS0kytvTin5UIqldDXboWUuZl8Mei96GNRK31bm6mATfX7nXStrqbYvxPty1bY69gs/jhdXp8LzhWsKi3dLcpCn2aQHotXoZXOmHDVza0epJ8pIeorTPtkS7fXV3rwVGrCe6YspP++a+9QU1+Pol2r/9ZeWJxVTO6rU1TfZKC9MDhsiWMUnHce5wG9ttVBeJhphvlktO2/47bsSU+nxfTldvu5xiS/l+v59hsv4BPaCb5gdL/FKVTNkgXjZeaWC66v6ZOQQVjv+f033uEs+ruENv6QXIXpo7VKymVW1tYR7Cqmrxqywpw2XSv7w4cQF9M1so9ohGg0/zHISvdwy7+B5oksJCE2+q3u+d8+7re153O5XZmezb56/SvGi4syBvvkvWwpyQbXXAqu34r98UAlYWKMc46eaEXZvpDNcHV8pl/f7Fe+j7Wi8/NBXmpUNiOkltna2tTAWkTVGcIQsWvGwn9rvwkK8yy0sYs+v74uwybZ4tHZvKwFFDjdbPpUubS2G5kk/KIPTZwwJUjs8X966O1++U/ny8pW7ZbOqvSvv77Ml4xpM0N8OV0u30kfitF9GC+spH05XWmSLaAOGQek1guLF6rJXeGk6bcyJ14esrHnj/vt8+0Hvk3UaARHEy9M7mDLzN32TiVeGa9rP8N8ff6i7Vz9ax6EWa2X0/U+P5Z/EwDRIxYd5Lf264QTxN0ttZJu1TIXTtgQ93L6eH7eZxrbK2VQbb7wZPpywm923wq1dSSmdovgme3L1xq68VOQPpfHc5g1NH1I6IQqE6tFdjkxPZsWdiusxkgX9ToeoatqgK7R+nyc31oe5U99ub7t9QJM3yzshCmf1RrTDKFReZ8wEQm2yr3tX9Ley5yRGn3ObzecGbB9kaSP0BXYkvRaCbNUL6dPvNnZfv/0EZIl3WeA9pEVxjpnUjPYV7k0HBOFJ9eX+V7ba/BX34fXHmprW3GKghdtFaBtPwEm8cIikO7Da98qcRpUZ/n1v4iD3cb0C7uwU62zSXtO+m0oQbJPC2tPmJeuL+jymxhS6wHXE/QvTw5K87YiPaGSy/rB1/kCzIR9VL2AihMmoavh9+WyVq48nvuzsenr+Z0QSb78uN/WuIeEfn3TtWst7a49K9fK95J0KYRPGe8JPcVzUkfv7V7L4Y6N4Xru4IL0q2zGd6c70yM6afEYsfdCMItCBdV5ZNvfsLpfy/sQycWvPld2x+3VWqSJ481k644cVBeavmTNSSOcnfXl/UQWgNgzG2Eeam93XwquUdWisJi3GL7Mj0cps0cRpOpvVGbucsL1F7Z/ncSB8WU+3Uvq7feP9Xj5fOYz1/1tfjI1I6qPvKQN+vkzSHWT7n3Uqrrx2RaI+laW5ls8HWA7bs2VsWmMpVbemYCbaAtb6VYu4SEEgZ4UC8HDFqoEqBsNoLARhXpC7U89zy/3P9nPyd9t+rJ4Lz1xVKv/uf/FxH7LE+oTvlwWouywDunpzhzClGu2w5wvVY+ddGtF0i3e9h7az0Du0mxqF1vduDQNc8HdnqHXwtmaeuuHC/tRV6Pswthn0qWN0y+X24Nk/PvKrrWDp3mvNPmQLa5HyGV1jQuJg/oCJmlsTy2SZuq+6cBIbZL9z/YVo37TNQUNwAlqbZQ0vLydZ1wur3ssbbfKAojzglCx5OX2vu4KR7Uxpm9Q9uJbfi/nxmF1jMaKGmKz77frWnuAd4leOMQLWdIq83W6LjdSNWB7kOGl5KDZwulblIqBsretqB7EP0HsRG3nc6OgrB9EPJ003317/7g98HZs+pI/J03V3q6nv468w/bpQC9Nea9Wj3wDVU5Jg+h8i+gt6e0YaUQzfA86W1+3xKCVfrWRutnh6cD2X7A0VgKTNCLU/X5pxC9oNnfLKyzJJ/Z/r5UegG/Xx/P++UJkpHqWBDstFNUIy/RXoHZ6edITe+xbTZQ00blvxLN9qWVo6hzRtv5jKL5U0BZu24uuErzyUEujo5Dl70Ehuq1u4/ib5r51+Y69X6NUnjApcPwRy/XX6YLXCJT6kX/d9EPQG8p9DAry/v/5mPfl8aA5WyTb9Hc/Zv9NoJqcv2t2FU1aTpfl3+On1C/X4vd6/znP+X49XZi/AwXuf9f+z/nPt/mvj4XUpWik/vh/Y5z7YhEQ/rvGKyRlHkyPjcRbyMg88832gMP87Xf5ent+e3x+fNzuRKm6P3ibv/0W3z6fH5/Pb/f58bwvVAy7ZxTSY1H5iFHXqOk7toXy09Xkj+f7BQdPqAsD1EHke3euAiWdhH35pxZWP1VTB2JaqK1MfDbKVj9ObzQvHvuGfJWkaaxqr3z3RPUcSTdqcWYMmaR7ZY85Ipyz4QSnptbnomwTKVV2a1luHYkqJkjYQNuuFmrn7+5wtwzYCdXWtRvxX1vOyAcweV1UHSsP4Bjju/Su7Ys0vFAGcWe7O1Jg4/1rJq0oOTD+eloDUowI+1BBfvomn8FgLtvv4kFYIToy/Pj8ziR+USmilCrsP2FPiGzvMkFa00EtPz7ztA6U/up7kpX/2tZakBPpz+37BtX0tb1uLW94vd2rxgqpdXD9DpSk6b5m+El6xEyvYiHUIW3G6Pmux3cG1Jsn6FhR4uRHtk9WeNOPAPCQ36gEWmT0fiNV5mhrkyKF2/3++fGsKha5PAqfSyOaQCKs0M8zWM6331euaXw9NfZbkZRh3ufTc6Y9LP1pNEr9slr6TlVQYu+MKkpjrmIuN6nmd+dK9wYVUJ2isEy82H2fT4/PO0FHSO/BSN+abI+WPeo+8SDOO6ymll9EEreP5o2GpBxohTmhJFOzTvJefeWObthHJwg2ms6ZMlBI4IS9DC/3dxomehQmCt3+fns8bveFTCRZJ5ZvjxiymhMkpidojq492TlOAql3yHTqbUiKlMNtd1Q5H9nc0AlMWuD7OC3DeQG23y+DNMOB1ZVj6IsoU1PpVwnayVNDdyrB0pyadr8GTUE9bYUf0lPD57wvK4k98tGTtErkc86Cvli1oMc+SSgeup831T9k2D2StM7q836fr09OB6p/8qbJA2orrbRthvHG1M+b2oRyrVDNqRqFVtNVoP+dVFz5HoIqK9Q1aZa5ET2TRwNwpMnFYnGYJfd9VKGMNOYrVvvhCVihA509JmkMUaxeTs/5+oKVAizaX6RnxWKPNhaHvi9PeWlUVox93G9v99P7ed24SOTYt8G2QRWdUII0qiifs6+zsn32KEjPir21/TISPIrQpDmpvdH9AbFfyIM0C1gM7x5s3zQF+h0wbbKVzLbGVte2p9hQfmxFxhEEVQwgfbPJaWxCIAApvN9gLTS/Qqly3GS5oWhZtd1BB+nR9fNBmmQjOi8l6d6a7fwHvXuUg4zSsupimVEISqjjZZIWdRZ7rIqO7YvmgrCptxjcDfS0aAgUFNxsM95azNakQdzGerfiHXA5yBTpVpSjYBiEcuBbXhq05pue7yTS67mvAm1OFcV7SLGaTfTPtU/hbeq3ykPBsrSgMH8AjGMhxSi2z0EH6QEIm2RwpO1PQkGaGc5mf8/ffz2f7PgY21cPB2HlDNG+RGcp6dZ0Pi3c22T7I0uEaUeTsChztXogh6M06omNwmPa+fTAahr9cBUL6YepFbOoCWrIN/kjC2pvwH31NrvRCwPY9VbWwsUVpY9LHPoyjiCUEaJLh0ODTrepYAre97qhrz8Jjyln2kaBdNrcVgXY9o/2GygVBPG8NvDBtG3HtLsxjUS7Vlju2gN3LS537Xjnm0gnbGmhnVli492xtYzFVg8X24kxts+KbZeM7VZju9XYlkrIqadOgQI0uDbR95ZwVwY2YQPd4QaS+g62Y7c1KsBS7eFf+LRt4O3fBgW/a/WbKmx6F3BuDxZ+B/PQgt+2fAAH4B5QGKo2/JC6qWrtrhK0aCVovUjQTpJgnscEs9SmaTtMtoP4BFvaBDM7J1AXnbaVvessgDlscIgHH9LdcNJtskubq6rhW9DwLWjTZpBoAxoGphXRadNKpzSI7mir4HdgD4blabcN14WEittGvG5CkXBXHq4GeBowx04HeBpxkm1F60t6X0Pa3TjDPvwW6lucZ4pldN8EZ4Vc7jy/nj4vKL6O/U6hklBsuxr69nFb6/a/kRSwmtBkcemhtRotNncmEYi0wvRLNblqQxcZDmwTSSBYIQE5z5fTnxWorEn6OjQIr/j9SVgJG4TP82X5NWO25FH0LmXOzRKza6O+KaFWw5oNI18uUgUV9v+MuiX6rcvFrXi6LXAwi08BQVUKFlsFOUcoglZQEK8UZNAUcFgrrBo6z4+1YmQ9Qj5eThfyCvfRnrDs9LyWKdyIBmb/7ikIcaAHEI6RBvYFYR3ueV5HFOCjoENHQakzrXZWva7zc3mersvnofaf7VtrgvAcUD6DFmD16bq2tXnhsbBYfD9dP19zoR+ZKNSnFIzwjFVN3s4zlj/rj8FGvIKstm64shuV3EgDwWqIE4FGNTbC43mxtwOGqJZGGuwvp7fr7UFymagUVJjIOi/v83X987i0E8rACbEWMbhPOfV6oiEJH91y39eRKDwYPAihDdhiZrXjiZTiVwxb3A/2Q9+xjl8ye6ObtekPTk66Pi6Pl+vn+3davN53Kia5qduaVf5cnn/yNI938ve6gIp9hdUV2e66tf6YV/09lL7qa7B13bQkBp/L9aUgwazrt5A/v4/OPPSIwdlRg8qfhr1ON3Vd5aXr0TpQdE2g7Urybc8KIEkZhdCkt7tGSY/n6Y6+htSXNWglVMVkzTJvcZ8CEZLp3vTt9fWyXDEJtkgLTFjtwxjd320fNEoHzJxv76flSvNzvn9lFChBqCiN1O6n3/vu0x7EOGGx7/mOktGuz6KqCRRkYPa32tSPbTsFqrj91P4UDeLOupt1qeAUCJXzUm2Ow5CmXyqi9MW+vz9v59OfY8PdkhuFVebN8EETDZJYicLGoVXX9+OgVsajjVvoSMwf3e9em1ZE+wESDWYrB6g/tNyMbWkT27IDAXJGkPuZLCyGkDMxdiuzBVCz6ZDCPDcDvgV9m9pqOD5Adm1r2HJhqwMBIgC+6oX1Su1pMVFOr0KiHOSIpO2e2DKz9PQDGYW56/n8Nj+ef/C5KKEZyFC2oqOwPGa+zHSj7gc1w5haIcuZ3z+eCy4WDmht9EZ4X8UQ8+T6MmFhicL8/nijKaG+jCAKlRhXO2Sz7gFCFFb2zNdVjx6DI6SsaxSU8MC6GoR9a8X49XZ9IaWRvThKW/0TxC2TMJCfr/usWC9zLyy0nq+5v516SkSeIttIwNTeV/r2Mum4RVK6kXrZDq2c7PWfr2daW9jX4EfhKjJfz5Q72L4bOQh7QOfrmT7p3khbt+Fdh7V6m2EtnLOZP4n5IrpFSqrOP1/Pa4MjGQnXpw+DUKNxvu5nodu+xic2bCM9hDWL+0nHCU3IlWYisb398+uFiKTob76eH/OD5ihcH1QmYafpfD3Tug7TiyB7A3EBlG+0Ib2AiRSEBRbqNxLEGlpDHAIbv4EAYVsGPWh0SU9E85Wqo0akjirM+2QzBxMPkEaF9HTLGGW+/D5WkG7rq2FaCNl7kZ6EmrXz9XlfyKykXuFbKQj8pGXi88fyII/P9Eu/E+Z/qh0ug9ELGAkreaq1XR+A6Y+JXkiidn1DfdgCCYQG0VwLwl2j765RRN+mlkVINjjIWnsD2ertyAmENra3Uk8KWKPa4mtgeQ6iani5QMRTB+FppjQyMYJ+3dMDMWahphTfHIV6CNrjEr4WfENU3z4Rhcgnm7p9/9/zCw6e+9I5OBHB19TkiRobiRstFh5za8Eq8S7UreFgpXXClkTmkfThsVBRK1s5L4+P0/PlB34jbd8YEIWDDbO9+UxFhl2vIx2F+clsi/Qh9eojSbpTr3ayTPEV/4XrsRclAb7wN5IyLIVmT+soLMHNpsiwvT7XZ7YcDVQnQTWJlk6bLJ+S26/I/uJ6ZZgkHKA1/7UQNo6aVYUQZbVytDejwTLC6uu9zd1b4vrDt1RmfbW725lRybX0pPfX8uTHRqteskGqZTr/9ZEbfdcXeFVj3usIowmQwqqFrAKQUyH0JGP6Lk4nHJ45/7WqOucbPMrzuV64XspdO9tHqT7UmSvdLP56FvyFU3wO1e/bLQKGbRg2bgfic+4rn4lT/6gLQQszyqudrBVBx7MgkGCFzSfNGjWGxgFZDRVHQu2kZraeeBZyJkNneLGrrSWnz9fTcl9dghUAsL0ufZDGhv8+3w+JvuulCpKwWyBbPfJb1HksbJxofzzK9/R81TYCYFvJl2vZWt/qSXzL1YIcIsSosX3RqVW0JSi70FDAp7diuJaJ1go03iz8BJrOOkA9R2hhs5amWeELHwoNqymiCUBC12+G/7MKo+vlFZJQ7buZf/w807HgFlWlC1VvXhnZq4SKkCfhHtAsMXnP1PeCayXcQl9Pz9NlP4yt36BUFKYPX+fTWq2Ce8wM6oyQdpKvKoeUDLqEKtOEkxVfl/vjmZkQ3oJRkkE6g+j18knWwz7DrzfeI1XKfr2tTWm7EZIouyDMqK+mXk/vCx5UnNBg50l4iFlt0RENCQmVTMIE/evt/oL91Pbpc1hdVBLGVtngY55/7isiPcoMG6g/S0Iy/3q7v59wVJpQ+buDYj6oyU5J+J6tHkinK0aExrYiXalexut9nn//mOfLsOvX9Z+QhJWsndnP67IfFo60hHQUSlCDVXrW6Tf+JKwoBmP8OJrULxXaCMMzMJo58q9l/k2m1XmkGCaMUV7vy3w9X/7Q5cz25bHb3grIQCthJub1fnvfZXbQXBqdhOde/gzUT+D5opm9+Ff/jgoB5maOocv9JAolHcCzWWR6rFy/YyUIk7TUNX9/451STSiHAJlK7YQh5NuMpkO6/miahPzqbX4WyfPvf8hWFgKqRhRO13y73L6fLnSCgevVf5Kw7LWaYkciuD4rl4SaqG+3C9HCcKgkfQJeNwnDkrfb7e0yk8431xfRJmHRGlgaR6595ioJU8dgdv3Lx6b74EfaNAGmH4/TcnQ6Qp21Qk0sML5uNud917ez6IsT1sOB1V+388HD6IsqJuFeUUwv77jRtt92jPC0CZZIHwbKaEzCExcYG/+5DklGCfXk+VG3fbWCUMbjx+lxOn9enpfT9e2TVOmpCY0XlQ60/3F6nO+fb4/l+XnaLeZqQtMNrfBL+bG2pf71eboMraKMjVDJ68fp8Wu5XWZSUKImJD5rhfoDpYwXj+HrU2quVTD5lhoIDUWFVhWToKxMQ4GChuoFvWGXCBmE1hmpILemDGQaPAC5AI1/ATRhgjAF9WNe3n7gCm9UoGxacqLV3Pj293gQLIa+yAmSH2ZTIoKaTQcdklDzpgKoGKuWeNEaOguhEV5DI7w2IGwD7e/ahS3N2II7YIsaBpFrqRbPj/mBZyn0jXgwJxBqCIVR+Wr19IH3MzTydBJuttUQB2Ec6t2ZhCBiNfg+nxdm5guqY45J/vyqVsdwbUT1dZOwgiUbvqMuM9tHetIpAaud0faHyrkmYTDwY8GHgogqmEENRMNrpM0ECUDwfC+s9lo/7bx2FBYd1t+n+3W5vmH9Q4f0DyEjr4WFIz+wvI7uky8WXm5oEV4D7vqTBdlyC13kMMZbb1IYXljK8ePygA5ZfEv9sHsQz4CqATW1VnMFvcAKJt8o3xZhDcIuWkMhKizHWjqtZr3N/9hNojQqtJIi6h+Xx/vH/PZ8UN/vgyDpFIQfl8d/FDRwPXNR0vaFH5f9Dfa1jMJE3Y/n84PZcF1A9TtCHtoZW2XKyZeBWpmEwfl6jMCvOpqALTy6UmG/PhqDChgoHG+BgG2KF7bVj/uGIEJr9Qlt0GlsHetp08lw0PEK5TgKpAlAZU9tVZXKwE92+wn+PwdWQKEO5JHUVpKpYPiqAjklBRGPgpdSgQqggvVEQbCgQFhBw12BbICC0iBlIWXoPJQfbZERtJOEraKvASG1RWlpE9JKsCxA8AHPXUOkp0GUQUdhPL2czen5zBPMP5bcf4o93iCPl8Wqy9msXbi7PLxDioJKqPC0nE39H8jLiBqShUt5M3Z/WU6X/Q1GBB2EfS6rTZLlREIFSli1vJzNHl1oVIMRhQno5Wze1kKbVTX/5fTx+Fz15c77qiuHulylE2KXs1muv26XX/P5Y759XOZdpVFCLYtCDrGczcftseTz15/rmhq6Lo+iZb37ohLyS2GTz/oB9+XX6cm4Zl9JopSTbWTL2cCd/ns+X/7cl5fHk5Reu4ScQRhgLWfznO/vj9srmcbr0IwaaX9JNofvy0/I2YXzjJez+bwu//qcV2jHN4L6CX37wiNFNvzzevuNpRon9EUL823Z1uZD/TfzvJ+uLDzxE6I/whzh+kn3y2W5/sS2+thbCUvaVluP+X6eX5frfN5/XchDhVlkbJO9VbQmC8PB5Wz+3B4fJ3xw8VgjIkldk3ciFGsJI8vl7Xq7z70e2O/ler79RhGhRX1awtcxG57fv8/nc/lusq7aeoIjp5TQHwkg6oF8y9TqktU2Em+rxID2Qg2DNLUXpgxyUnFABj1ij0pYJ77rrI3obdzmdXppyLkaxDmsvgnKT0Lve98P6wgGNR4KD83LdRW0hXmz61fa6nBpIsL2HxC2GE1YmVCsoDxgXz2tpdX26xGC6rbZvjEjCpsJmqHd39nX6IjPEmj+UlYdQoQWz9uS7gjNKN7/erWVJF0X+KEbClXRmK2wvwXWoC9XA3bT8gkmwnmo/sa2DgHb8qO2NXi4dkbx7Te+FRIHDTVerQOoZTdji/RT07JLrdU4NeE70N0G2W01wbFqMvCT25YfOC7Bv9BwJNObVCwsXXDgU9DFrKDfQTnIQcJUYBU3qVi3HW9AIHzTb4OcKRz2NLR2aBW3pbD9Du5Ae+h8hvGlOmyqaNAdAPp9Wiol2rkKT3Z1r/tv2yHMGijfax0o7c8LLQsU2zk3NjW71P6MBN8VaCIqvRUHgDwiHE81nL+1h59gWdLwmToK9daWMoDjxpavIdV/8TGQWNyVgXuE87WwcCcLcL/MH8+1KI4ZRuOVRlaFex22up8T4zW6WenZsFMLx9b6GFlv376wD7i3+30mow4SEk+bpGfGziRt5kWKO5Ow4wEZpJUhCUk/TNJYsTe5cyeNvnhh+WdvkoEPqDflb/zhnx+0fj+hfoBJSMmQTVpWG5CmqrDlePk4nc93MrQoIpWqJOyoWO7n+Xk7Ks32Gs3ZFpb/FbsH5QdI6zpKnejx7USq6BFjstLT/4OaQRM/rVAHenmUY8W68GB+gicJAb+QHk0f+4KY/kuYhKRqeTwuVMTXov6oFiVtFBaSsgaaXJ2wMGh5zkiJx/QdDhB4JPgs4wD7gNRUaLBHJdD8nqC0XcOjBN1gbWBsiZU+ludMxtVEhAeSUBhitYNfQYskD4RazquZXQtuROnbJMxD/u8b3k5MHyU7YZ5oNfJ4rjWwb3/IO4sagYTL38/5D50N1OctNLTiBmEG4+f85/Y4XrH6A6UWVshls/KGBW9QUCE8GOUPOVoVUcuKsNEzG5XcMQpchKmt1S5yqT7v7IWoQnJzKAIQ7gdgd/ccUeWzMGlCp09YgyZ5tDMBSMhDz5ZKgLcSaEgr4ftxOX0nYp89fbcNOIFI9Kb3baHJGjCSin5Lb0BdPSAo1fStdADcFIRStVwlmOkT5L4t06FtK2ED636jg0DzWg2QgqOjgh4nZfVG1eBgCQUQWqio0m4aV5338F9rYR7+QloO+pA1CWVZmFlBESnywff5FXPDl0r30aW1W54BRqgBHjVblQMgzu2cCu38WluobRCeo+pNvp+upzeSKEaJPyNsUqz27nMRyVxbTHCk1IfBk1B++nL6c/vEgF+hCXZQZQMPTBhgF8tcQXy/GjvhII7e2v4UhYpvjZCrXl7mXy/Ya/qJhpBhmkBlY0qwAsK6YyG7sT0raGfUXtiAd5lPOO41fbgqjUMv8ysWqEBhmROWOl/m69vzB45n+w6LVoIVQVDMOHhzYKSchxg3wROaQOQHOpW0hvUYrGgDq7UVTlS5zNdlt8C4/i1LwnKcy/L9frr/udz207qDQw0IMAJBS9+1MhAeeW63i5R/Bf6kPExg0MJCv+FA+/74LuyVBFtrUz+Z/d55g/Dg3qwt119rP/i3Iq2KjHaPwggDCGK0tndiVtNZFS4LxOq+2BFPqv+K0dPLvz6XUi7wPj8eJKiw/WvmhSmwveXdwOBe06itUb4tZQmiOg1FuhpqALfzsRdWxdb74ZKcqLrTSKOvZo9Jb6LGCCOsca8GmbwZ6gsRsq1qjZI9h3QwFVRCCRkfFUZeeXx/c0L9oNVMrqgktlAGShp9rLbuJ6Jk2cNzI14LiqXdFLipj2C0E5LV1RzufVAJlYsKOypolUFExRWbyoAXNpLQAiPvkOynULZ9zYftG4l1HzzbjZSBlugE040tVPZaGPflFVAaDQcLmNSjO2Il3CvIiBaFstrCkRpFD5E6RUBkBGZlKS9dzcHqPmp0qBtbmC0pBht+x7eKoi0oEPXSPQJZZm4XBbnSwxunCx+Qrhooeysv5G6XtYfrFzm8o75ZacBCBSt7lS5h1u5yu6FmDiQEu00SE9r6zZxUdW8SFPTUBN/wBCW2FopmbITDO0zI6mbHCbv41igpD4hfm73xIodyiTIPW61B6zjZE1ASSmjturySPb6XyGkPR1jv0Mx9e7ndH0wI2w+C+doNfltfgr3FHqAIESZY/DjduTjbIsz+JZN7FUnUTeC/eIe8+qFHfMYIj5XN5p4LBjSLy4v/5Pvbcv1+e5JpuqmvxdOTsPihWKNH39RXj+lJWG1bbN1pc19SqBbIfeXPfOLVKSnEuYUa0++n+88aUe8W84gW8yBsNisWS0xNN7LYn0OUlE70FgmLjyilFIQtI71B5q8OyKQsxng//fXtcVlodytqL5LOTXo//fX98/V1vu/zJQrVHggl6d5Pf3ETHRQeorcNVpQaXd4/0VsWUMOAdORXNXQ6c/cYUVtiEhZ/VpNrmc3t9RV/uf3SF4UHgWqPk91BkRMUh0l1QKvh1v9FRXK8QYsqZJGTUCTn/fTXfV635uX6xnsAGs34BaM7NeeICoKiULfz/fQX89L0Mb62QnL8fvrzfT6tZe74vNBrCegkFK55n0+Pz3segVCEO1m9XI/SgNIZcrmxFz26LqqUW/h2+n67k9EHff+csKik2vpVlFGYuKOLm4XHrWKyDD5lDKLR0V8wOAi1+j5Y4cqVzV1vz2+Pz4+P/UPs21i/8JXubs2jZnIjTOVutnbCRtop5MvCF2M1uPan4HtDJ1QhuAZTRIC0xy5GGlyttt7ny+06Btioed5I44/cOH9aLrf7PsHq0fg4I6wGKCb3Urb96umF5XDFFh1D71FtinRI7maL0x7wqMHQChWnNpu7NFPEuZcvfM/QHkL8WSN//sKKRW15FKpCTZMKAX6CtpIklNDJH0TSrw6l2iaYCW6kx4D5vpJGMoyo7zGQHrhnmuJEzdNWWCjFZZsU0riD4jEY7K4iFGRoAJNWWE7VPnDUmoOEu614g3jSL8oj2QgYQ66i9Fw0P3/cyObad0pB7lMD+TdQuxKgqToIheze14jqhURUvVc0e1DLId2aSKEYahWVKhe9L5fLQnXJUGcM/L0wBlAoZwum2RUMyZ5aYWIbTDZfI/3IHg0esU64jjWrzKaS0EIrrFvbDFKNhv6LlwaVYOx5ej522ZmA+getkEC9L+87mOUCauYE51dwfjSwJsC4Pi0tEHhfrvtDZb9je2G6tRriToCo10A6XrTa406ASBUZijeSsNOiGh6fABGIhFUnCbtO3m+n5+l6uvx5Li9HRZIOSWYKe09W48PgLaDuSCd9ziTmtX0qNditfk34dG/X5Xm7L9e3lXa1h4xBIwqEpRmVNc/9bf2jr29kFzZoFxauWKs5zhpSMhVHcJ+X57Lm4cuZDses6O0V+hC2xy3UAbV4O2n2AxtmCsZQ3aaWFtq8f5IjHRocB8ptUBkIDWPC8rts//T5vFFR+4AEBj3Qrwi0KG7SJdIzV/9hw7dNaZTKkeaf8j9AdbL9cbotZg6KsLYSVwWVB0FYMrCavb0+5ssF+6RDxwolLH++ntbZ27+IdyPMH4S9C9fTr+UtP9FPIm7arT1JqBZ5nefzmiuaHy+ny/z4sbzSt9r2CYYgjD5qGgrl+7ubK/8K6rtap64FIUInXDvq5zB5lr6TX7aqNVvr0yAvdl/dIVzKqzWaFHE9vUsgUjRt3Tfb/DIhLjxK+QVUU++EGTFqcVUlu9/oixCQhrsTBvjNNrcqo+y0EyZmqkEy5ao/Xyfh4bJZas2k4z+8j6Gc8IR2nX83gRy8CKBGhSAsHaIjQhWafqS98Dizmvm2yxRNPczUTrpg3s5lUvOv23J+YRqRle7LRrWUClxvV67kKqBQ0wlDl9vrKy0pC4haOGFmhClF6s+qFs4SfhMkEJZA3y7ngack5Ckyr769L+fTy8v8eKzB6v2TZENdH7EmKHecJiilgrl6Wkgj1inMMEWGKX+0fY1FEKaFidF9DaTtUVkQJudu112/XH+0cEK1y9t1X7beh4JOWDK6evqoaNT223sQnk86g8wT65eMIDxElZcRvT8aLYcgreeE1QEZk/9cOzloRy7BfdLvYofITW/ICTtwVzu4YsH0y5cT8pHbfXlbrqfLabnvZsH1Lade6rG/8sljJE0Q+mSoEvtvMcqtOsGiJhWhclU1SAfTBDSTyQnLH1Zj9yXr0pC4LKFNbxIKhN5+0ymWE1IKsEJZqWyHjnTTyJKwxaBa4qS0HErWKQdtcsI/9uN0xeWJa/sdihRkb+nH6Xq7n95PNOOxdu6hQ4zsL+bVWUwvk2aFI/8+Tvfndd7hx4Cqlp3wLP5xejyeP+63zzdUxxIikkMWnoU/TkT+T2ElL0g+txM9yLOC0I8D6R0vJOT5Q3E6AQ19r+YMFIRKn/LnY99vFlDjgRP27H6s8fX1eXqbX7J2KXaB/uQmXG4+VnnedTptzieT/tReo6wVeW/duhowkQZxNwPBjxduFvUGft0unziWDqjmwsMgai0c81NlXb8t12/tx/1Zt2/WE95vscVmzBHSUsKegWpwn35HuofCFscPmlhUqB5S2nK+mtk9LDU5NA9CuAettrgYSk0eqY8Iy+8+FlwL2fdbai1d+JaPcTobNaRI9ek+lg/25KH7Lh4tZQUfy/MFVwMqdLAMwujk43J6mX/cLuf5Xk5dpMmlz9xrLyQNH5fT9TqzRXy2DxeDkODQ3KpC8ljQOAuHQSiOc6Ca7YXpmfWjTufH6fW5nojwehNRZ2YEECuV6hiBndiZhYkcZitbaD8Iq/nbx3zeB2PhFNoqtZcuQ2tmnui6dDcObbob7/6C2W3bQsd+hZpA5Y+ZTlLH4Up1kyTdAbPB8XKARhR54enxAKCgeixpd1TlJqROJyBEK51hUWxRIOBRq4CB3q8ozIcVq2QsKoqXk/Dcly3twiVU4uSFYp9lNjfeEfvSZQO9YA6UNbywFKXaZu4UoSFhj9VqjR4QQkRfrzTuKYe9nRhpCCieEnZG9dbeyToTUYuk9JhwOf25z6czmRGN6lmbkGhbJV2rvvLt7fYN5YUWesbG4GJrlUqtoCnBoqWhjEtvgpseBAVANGsTZPDwE0jX6NDOGDoKO2rgj/7PWj4BQTIvLDGBD+B7idWEen+dUOktj4d+5lt0BzeMFjRhGVRvmvN9pXvCqqVVEKupvUwgmr4NBwkHotNOmBBeS4jpKHrbl65ungFzN7RUspwLH11CFB+810EZlm/4Szug2y5tefP2uygcGtrugmv5RgJm0gPJbe0jQ2FFXwXfAjiQDYjwl0kFvMonfNt960gjUVr7VYztbGlkSwiaPu7z63y/r0z/vNzWJAsp+0ORRRTONgWrsJQQld4epTSZXWtgAW1yvY0ch6ZiFNuLEVu9RGrjmdIGMhz8tGnzNvasFcyAgz5x7eGnsOEcmBAXhe1+8Ffn1lPuWaJaL6Gi1Gp1QerkCSXOFeg1wVFDO9BsdgZ0jYSlvB/3mba594JwgJBAbftrdj8+v6+lgbtBjqnnfVoJsVE1ytRyo1n3SrgD3ueP033+vTx/rIMZTi97RoemZ4D0AOhYCl/gey7+Gh2NUBOmFzYpV5uDJAbq+xO2Bnzc58d6HqIPoa+ChZzaNjhNmt3orLNHEDT9xkvzOJ3V/W6Nzs7tcOtBgykJSTj9EEb6C1UKS3sxeLv72B0N8PHSpGxnnOkd6bfNL5qcz3liD3Fi9Dp7aXriPv9abp+P+zxyvojewCAsg/q4k64+hxL+UlmBj/tyuy9PdCqwfVlAlKa87reV2I/6IHHLg5fGGPcb7atyffIiOThNCNWPP+63NypCbfovwLZ3RzkNC4Cw760ZZ/wbHS6kuc2HwxkM9AbCzqiFge6/Pk+X5Um6Sj1KZVgYpZCEwVYxig+8qAOicv9c2gjVmrDNJJh8a4QbWv1A5hGjVnrhsLfeGl2t0RkgCEt5q8FdxgjN+5Kql1Zjn9c6YYh0GKLEghWepf71Od8H27TuB9jbdoq3LQj17YDvYb5Im1EcWvdPbF4ZYXZIOwqlVmaxabxqB0wLpFY1bLsakCJMjlUe2BeMstDQsqNhhKLeFFw8/ATCrhpuV0cholyTy5wcJqrDgkYuL6ws3Kwy7ow0EoR1WKtBMku8jxC0hdfNCiWTSs38t9fL6Y0YRrraVpgYzDsD3hhQy22ANHIQ5qVz9mXHUPt4YnMjaFFrx6D2OACfgvITLP6hnUUiiO1NcBgzIN9lNo3VbQLnNqUcSuETyItOwrb77Q/kHBBVp2jIToD68CRsdKWfwjhkRA4p23Pu8+lB+g9RtKOFZfT3+WVefs3nE64ERIlaqfZRtbXLxJu+MsAJ88fVGBN+IhgkFPO+z+flTmZmeqwWJdyH7vPbLgSLSKdduEMWQ6fry4/bHQ8UUwkNExYGnL09gh/7uEFH8bf5tjt3I2arv3BjaxJqraCer8+P++0559PyaJiXQSoaSZiAbR/zmO+/1hKM8zyy3+d3pcLN9zlPXsUVZ91SCEk+2fGtmtsvPBHN3AyQkTFCTocM79aadfwBynUIN+lqtHyBePFK6Hb/jj0uRoxopqm0vhnb3Xe7RtRLGoQShNXqj+XMPlAkbCFMSleTjx+335xJ5P7CvPR9vsynLFtFCks7Z5fC3mrrg4CB/juRdhVUU3/mExauC7a/Lemf+H4jldUTqneCoWnilWk1SPKXqAUgtthaW2FRbrP5/T6fUMuD7vdnA0LqcTuoCacY1E+4XE5nnDJGvShRqAVarT1IB8PafNSHoUKGXKytpXzL9e15euxnxUXUbxm+Zhd3w9teNyI4qJwUHgKLzXyDl1wxSBtOUXMfiFlCYgRy2u2HJnhpWzWnbcc4285Frg1WcA1gQCzrmyOEdngL7UwWWzYmto9ILa5O25RIqLxRoDcPwFlZGHRa9TXyn7L12EHh0UawoFAJJnioBAF6Atw8wbTGyW0VTcBS2glT63bLWm8i8TCqU8PcJgM6vKYddbWx28Gi/Q4GdmoLoNBvDbFgJQC4jMLalOIYt+8lkiCHqh6nBCF2LgZrI0fXU4Z2UjSmyMFX6ISidu0zSkp/9CFoTJGz8P2Lz4Trh6zvNU7z9WMZhBWB1RRVE0qoD1YLp1Z0xpgFB2WIhD2bxSKVhA3oyOC+5E+rLebmUDZC2D94n6/4vkyvsuyEvVkZAr3Mp/Pz9MbnrVy/B6S2GulJKIlRP4AJG5VHjY5t4YP6FujahkVDQfGLnoRl6gdgAM03D7AgBiGyxpaZ7AGS6vJil9tb3TsMqiUN4pBh10NmeujiWgYPlk2lYZyU6foDpF98/rjvtzMZGeeRVof4oJytvX5eLo+X+zyTemSkCiR90nUlXsizRccDYb3/8bKuUO5XJ6FKRzV6WX5SLIm0EsTLY7ZWpCFJ8QrSZw/iN7sapEpT66xjdINf+kL29YKoRlKootc0gT+/71E/alCSTkWtBhlrqKJLnBDM1nLdR4ahXH+06aciOmGTw2qZjqVRExpsIY8m1tr6/QHaogofcfC+a/5DEza9sFPlPpc7+rwjsQuFdFJbxgTQhodZ6BCfKgN69U5Yj1gCq/Na7oFziEgjHmputZCa8t3LfS8oTF2zfqvd2er8vvYxzIqMal/EJ6cWZdIFFO2rwlKG/xCzKo2yjkmodNOs7pfQgDI2UgBUze3VG/vjrN7OTAF+gm8wiePFxyqp9yzCOWsuE789ESk5RvGm/Dwt176p43Yt7xMTwHgUwDS31jpK1/P8WaRG5eDzLCrgERZ0FS3nX/PH7bycyaKQUA55EtZarBbHSkUBqeJ6qGKI0/Z8xN/F+jmfdBABEmQDwcQoDRqoRH9AIwCddP+8XUiXMHpjgrBR5n77vJ6fWSiTNmZM6M8EqicsBrk/s8nH8/T+ge8TTf+WFoM8Xn7M509cAYAmS0mHcjVD55r8w1i37y2QarV1Fokx3RuT+TYY6/UCMN7pgw49CYvzVrvv8+4FtGiUqbCz/PFyw6PqkEzMNrUptIkyOggRxuNldetfp8snwYkJzRAT7qePl+ds3Ms7zo/39xqEcUWxtJCmw35ijFAKrBiiYlV9z4G0H/8xn94v8+PxMd+X2/nxe23d5CeABwQqhP1+zfzYsO7d20KPwARlThOUkllIf9ot5Qhpw22auG91AjoJg+nHDrCbvqLLC7uDipnr5/v3mQCQfsqlENY/1lzK+cF1yiNVMtkCvUqt0NKnnhSnrRijbUTSv3n+ie8voMAQKs6VFyosFYv7ZAgaqRaFGGk1RnroEpIIa392S4CAUIKDnIhUKqN+FnPnBt259Bt7W/97PxUJSbB7YRaxt8bcYB86SOchVpPX2/N13f3xPSLZDCE+rAYzL11FE5/P5/K+UyXsl0th+VU1nPWBdo3TGiFA6f6a5SEvtzdUhuUiUj2Q7i/zOqTk/6vs2pYc1bHlv8zzeUDiqvMrExMV2Ka6OV02Hi6urof97ycE1pJSCEf6rWJ37ASDkNYlV+bcz19RM7cONw32vhwfor30Vv5prS4exbhNGAOohsyO8BrCukhr5jW6gUuwm0ryEp/teY75Lhrm4wzJqDq4wO/2dol/ADiVs0xHi29nGSNylA5FlVijiMkSwmMp5CL8whrp/GlX3tYNKSowdfOBgiToPxVSQyHLrsmSkoICpJLuqiRXZFZguRRYqoJueCWG2pn/S9qG3saeHKuzV1vzt8vwjfXokCCZk1QrixZtag2kbtIA1lpGISth3VZk985eZrlbnceUElQYB1ekhOIUS17VMJUrdQM5OHVJkm6mfu6mJ00skvOswrOafMA78THog0qFhs20pz8o2gLuwbl0qgpySMjCxSwU2IZzlyM3JAF6Q9xxUGDkNWc39z/9fS9xifRid4O5G0qohTKbSXst9+O+tfTzyYFzexP3NRFOZyLQZCHpP6t/18dliQXgwiy4qMjd3WIlB3QyyKoLkpYzXdtxnmxB5/ioBjm+hpQ29sAvNPVr6DKxu9itvcd9jDIkHBiyCmeB5iFhYR1OWms6LhvOkTCiwhjnHZjpdzvudmpIQsgGC8D1c3dFSLhBcgRgGm6/4ugiD7U7KjbN2B/S4XbphqklPXp++4WjDol5hqolRmhklkSGXLRho+H1fj762yPWKgg7P2wquYEdeqiF2xqb5K2Q7elYc6eB+nZDTiIeVsvBCbJ0piWqIulIIe4+8QMD8IZ0wnxCHv5+sOlu2ELUCnpgt9SU8I2wNY8V8tXOB+1rcpJkQ32aZL94CGHew1p5bdi4EULTztH+RBrDVNKFlPGuWhRjGiOTiO6I1pmrwWvtvmptSC73dn/z2N6mz2G8RoqlYcZgyMbBdB/mv+3l6L1D94Adw14xd5a+oBBFFwYtFA77ASi4P9PJJxophROSUut026tMRFWOrFO72SeViUZoJu+58OKiQu5sKiFyChPZyLsXNTet2TrNeP5qo3MRhvINOZg8TS06WUAal4lAXub4oqrwgnpOb0KLqpvW7J44tf2rbQF4I6QjxbR6Pt+HHndYA9Y4GUkz2ilZ6/DJ5G6VFC4/LP3wpgu7dUUKBa/XiicJilAmo34H6VmtgNca1oDMO2C7gTDglLllXTlice3IhY0LO4zILfoKr8wrqkI+jFI8SUwlq0kLS9kNdOu8EEZyLmUER/PWDcmA2g1a6lDuR0wAhbJbCv+6khddk6N1BzOPeTh6VLgjoXD7SClfVyXHBesR+Gr+UekaaFSkTvbqFgdtZZC6KIRCWpJsghVw7Y0+2i/UIKphGqkgvd8t4IJz4OHsceHem2xbpZstEI22yn3NfsRffCtV7jU3RZYkYztJ673FOtkVxFS5OCK+s4iX6dpNUySMWUHokws3piEZeBvwHBmd5KH0RelqeKLPVBkhtQqdWGQYcq/7SY6Q2tnCLhqxhuEvVmBkA9p/f1bHPYQjRwlDuNTHBQQvUnxiw0zouwNtm962h5inEVZ8JUwR1cLnss5l56n9AcY+4kSRCAaa3PfEKuVN89i11/a8Fn0xOqhhZJNVkXaA1kZu/nFuf5iKhgUeI/JJmUT1We4Hbsg8bb1qFN0oA3UVktW5QQ23jjFpbIDC99YzH24v8kog2tN1vxXXBhKfg5tKjsOKMjSgMg2746/AEUVQhwWi3KtgiZ1fI7NPhq0OzrZs9Kf7GT6j5wzcRrbWPls9PywbBbsGK6O9Gj7dx+HejfPP2J2HMV4EQBchTbhX1GgKPfyRLNN2Wk42nzzFNh0V5Gu5r2qxiYPgzsMfnE3Iwx5OWUrCQgrDWwJ73AFGTbnnOUcK/Di8j/MwTnvrgJBUyjIIHKLV1UsghkNJ7/3mj3s7Tgl/A3BSol/QnrQbJpVaRJPqWv5iqS6uhHhepnm42ghlnUI7LytTeIo+AOhLs52P7RLTfjgCZJnZoPQp1ht51YZNWBH2EbU7lZNx/tyOv7r5tHx+RnOT4W6qyWhyA0v5FkMwKZ1iVrlxw03oa1XgUFGQbQ+A28Iw3GAaSB7IHT6Fuq/VAqeGLUvE45uR9agkFWSr0cJFWU5IRiPpi3P3t7+2vzqNvLawTFCStbQ4TShBzksJbVuJnpAIvipRMFJKxEuVr8BVPq0nF4fbEPC1lfDayM/BQbWXy3lJFO5h9RqyDxXuWIgGxWqyzx6iHfUX4G0YUtg2BF45a3tc+MwMSb8F3JQOCVi4GzL9ANS//Zy4WfhwyeA9hI118BpQbDJk7hgiLndb8UvcKiwrslsqwEdVfJjsM+ThJajrEkh+BCCmasjU3uPG8UYTFpV0RmqAIF582CoN2vWGVIxG0MQvh4EXstXrQVOLH3SjMlLbxkP+7ef0OwpLEhnJ/xPYtC6d0jDnaEhSXgL1YN8yYQ1QZ2xw4PGfAiYJYFhiZPlTgDE1CrlR0ucTqRlf0SYlAvxV4v3GZLDc3j3D1qwOk7qw1CER3fO4zUjmIuKn1rRRsKZJ5pzg7meAwUTAvHufFu9owYVlMp2RXjiCvG3nyQUXjizqjCQ4zb+74eOrf3QfUu9JpGehuSr5XQuufQ637mulZuzo4+C3Sr40Qe5ul4/h8+PSXZGbHc5Yk+eaYC63P7fh+5Z4BmHISr60391w2PA2YbKqM7LIvEHi5hBGdGIy70Q8c5mQydjgYbvEur6m+DMLA3edkbTmJ+Le3FVpkFg0ZIkS8Jx1bIQLvSeSa2xx7SJAqLCk8Hy4Xr1EBESFHKrfeCj2Yu0dB1xz+IrJ9noAltwdQUxckRQVB3pYpjVgXaLYPP0JG7hAIKgBUH5JWNA9x82AjIAimcAW7+mNFm8EBhiyiiz3zL/HbrIOhxH3EWwXa3q7Wq6nj70riMpCT0hdVOyLXq6nW9t/WSWGr2X3RsISolb0R7oDjZWW4V7JuvEKm/rlGjw/6beyXE+xTjMAkUo8c3/+E5WzYBxGs292xWnP/136zd8otvhREGWzUxS2DbLrCoMAfEGSDCxSijUO4taiaCFibcIjd/wNNytonPCbEYaGFgV80ULXmVM516Ur5upSiE0VG/f21260URkeoHDziiScrrPqOyU5qAUXIquXiYKIP6EL7x0jI5mNzCSKEqBWXkxPhPgqksFob3KLGKHErGFMQprnFRvbCeo+CAU3NEXW8ud+bm/9cr2Mx35zBux8FFu5eiK/6mFCJ52tju5m+MI6VSXF60zc3Avxo65F9bBid5e4BQV6UYUjfBaub1y5hVc5FmkjzLmadHZZr3my0rPU2wEBYtZxPGIQ1AXYA7DVo2Fuv04/czfZdlVcpA/rUQVJ/F4RvZAT0pGgPVOQHbVdrRi1N9zmVsvrcty+p5/gymqTleR5+F5uVjYYv48aUcjMhPiZycCcxK5ay8Cc9oowMmzfkPpXW73xIOcFQo1my21HBSwDSsqsJP4Kt6t3AM2QNe8SqPTdhQm+ZgNYC5nQEwgL1RU5rp0saTSR9RX5KfiaQ+Kt1vBDyaR4bD8/+7Mdnz9Qp4RJBbpAkoLd+BQIXgA4+b7n61fUSDHAmdKkepUF6v7GspkGBDc0SeaaHx+b2QiGr5Du0FHdIwWVAxRbz45LaWDsILMJTpk40PKQ4Mb9k/DDnFGbFpNbV/zMHSM3F91md+KKpHDudsRS2GEuW5dh51Ka445VX7l/qlzFtXYs4dpLOjslZxetNZnjJbv7aQr543mrjeMdN47sKybuUspt3A9s3DZtJFzMpNUpu7nyJQmdCaXUi37K2aFFG1j0rVXu7Vkq/5c7d3IhT+Rirl542WyR1SiFviYGr6r0EhtStq7kGpU0auURq9qPtgiDsBZ5jtpLljpOrarFUkakwlVdCYpcQxjjqpa7auRZNX4wXVyJGiHKGnl+Rq7mxWyNtJmNPCsjDWcj/OpMQvpMyXksfPNMIrRM3CEyUcXO5OsQ2Rat3B1oLbx0LS5PPvkSKoXO5f/NRe9cLHm0GPFo0SjTeS0oohOcy1y1uK/rwq17LWmNLuRDFnl0Xcq/imGQlkk3XUrUUfr9QaJl4VHrsvTZoEygC1m6CuJrYbQLsvfeqCUWakguuS/rY+ML9LXYo+Dn3l0S5SoQudBkA2bpoyIB0LLdSvSi7DLaQM5uLf1x5A8z2prUaVkwCwO7EdkC3Ooq3AKWb712BYXGffNGRMSUTNUX4iJVVLJdKI8uf/mPSyibWkLmWvljiFsmS999dfa/YFwDE24ZOYG59HYAa4mI90obYN6SQ+JLv9U0X7xMiGpIFodVpz1ykjFAEdakdmiMmIyzgRSbk5/wcrNWVlP71V6iJQg01pzUAQM4LCRC1bSQeMWdPbK3q1z0a0uSer/cnCtSlO6CBWPBvr5dgagCeozMP6naZ5nOCF1n2ueR71wPhTF02GfxLnENWRV2kKe9O0toCiVfvARlOie7ju4KKT/UBpiLrFW4dHLxLIEGG6ksu0EdOX0aoFDk9Fv6+rlhzQLGpXyRVsTT/EowEj+QKet2tTb6IsNzldXDdEin7ld/2z8LIP7k5DC0YMbLywA7JycHIADu6D7DMCAney4A3N32zFIDspg5KfCEsKmt2MAKI4tiALsrzEBQlZPtkx1k+m7DbywniRIAbWVrEg/XAC65lz9xz8P1/tUlyiwqA4pSTupCO9xL+N4iXPgWSEavx7XeUilU+CRIbRiHmlq0KsvgYyCndgQysQRUlsGHQI4FOMjPfpwsiXuc+6/kCwsbSjk5OebA4y9BZRl8CqSPegh38Aig/8rGT0/Ya79NwKd+PTRQSbKBw42asQpKUKQ0osOaf/fj5cVrCqdudPHeSbU3VlMQ75E8gwAt/ZJyuEeS/higxt0uOP/MewfAinf7HFLuBiqDWZCCbEwfICdeFrAuCpIuFcDvPysM0Nl8zCNeh0ffJeqmGoICQ7pgBMDJaqyGiMCQXeoQdcdxhGDAkM2xDfEwg1RZCQaDbEazor7qMFrBOQB+57Gmvy3g3hQkb+sJ+He2hshfsVAidKYKstW6Qb5oUUN4Zd4Kr+797deLZwrtr4Lk1XvkNGddZdAZKsl+n4dNbzDQcSnJrt8eNHG70Iwt3zoI7qsb2o9tlKfvGno75VvHwhPb8toOsMEDiCw8AnYSVxsgP5Mznknc1MOu4KbfWnIIntjRgE5Ksk8A+zFcDp41LOm3Ekfwjk09kTBgKknqGkInUKHwVr6VQQbmsSlg+FreCiHco72M1wgTvpK3djjvCBR7/qoMKgjlW0kkwu4yf5VBBbaka2177CjkheihZAv0gPsYLvGTgLO+JCfTEqipBwG7EMnaOYJOcAsz2I7Ktw4puMBqW2k5uNEUcwYFAdamKHGBiNsL+TVrBrHBpgS1IWVl1QE2uBf9G6UgDapI9sETN6y77rcKBTMOFb2z3aJRXwVcWpITv8Gc2sjpN7R61RW9LVqsa3trf8XOwQrWDh3sH8l1hx8/K/y5oaWWTOh4oCu2N4eU4zwkcJROzqdyZADx7KlFxM87a0jPUelA6UqoBYEXqTdYk05dI3/J5FgjLe+MrQVMXXuRhtznMO6UCMETLavJj3/qzmN36W47tyUdkmtzR9UrXI9HHGukEWmEypAJ9cD3QLUXuWrkv8nYiehyq1z0wwp50oUvzTdCkhBfrjpw1nFNdC2C9BUb4UxWwKA/d9chsIaINkLIilg33mXquuuEfi6gZp819C32lxxxYMiGVMFYpm7bAS7X7tK3++8NBoC9H7t0yJRvmhSBPpZ4IwgzQcsyr0jxh2XqbquVijMCxPsK2cKlX26F3JdobSovZ+OXh/BMnNiNrsh51mXqhv7+eRmtCASeDmApW7h7KdxarOSLcSu2dnwAIbs2btswMk7gtR+92bTwYJUwymR6VnuDKdnStLCLdC0zBqxE/zJFwrEVnF3kWLRFSaqS6bDMlvNfwNiedyM4BnIa7fYqXbGtiylWXSrCjLQRtlHBHtlTl3IpgyuEE041KaG+zH20JeUa6qBsSyGirVQGlGXIzswqd25fLByzJVDVFTng8Yid7/JwDxKHT1a+/tGuaozdLRZ2VSCurytyD390t8swntuo9KpgWKsiS68eLFnOU0BXrcjG06MbrSPO2P99WXxUUIevyOKjB39V3INRVfZFWUsjvMci3E/9vqUcG1P7uXtD7hsP6yp1jlwWFAzMNGTVyUF9Do8oNsghNuCSu73L9rWb21gIXKkcwmmywuvBn57eKSdvpaHba0gayYr9u4sdXSFV9KcxmequoLHGJDDqSGLCCvR/8U4JXQLSPXRFSmhxKVWAtiqZa69w43BapvkWkW/ysF5SOZqnKXzY7GIu7Z0P5QlX7Jdgb2AvzKHCZrfKhP1Lbg8W9Lu/oPe4ymD+wX3H5Ijjo+/AL0sBn1QSs1pGCUWCWNdkyG8vkXCvCE9UVZJCKh4rUT0oUMCMR7TCeu3t/HsYcUhYQamqYc9YQIyWM9Smmjee4H3YBnxTTzJcVKwX/B4z9URh2pzMLSxypHgI2prsJnUdbpfXhyzMrtRvAR8fsDnQZwxZBH70U3/qd9tXBuNDwtN32XWVCWuYrAT56wyn/TixwsHqmo0OdqDJIwyU4bUhJ61W8Fi+FHrpNdlKfiKJNEIECYEB2RJ4DL2laF77qTv4ydCbJ+e/HsPXEtkTZCHTVqwHcs+KdeuATFG2S6Q2gxw2A1lpbMAR4CY2BBjXrtkVcG/7y05FPDyHcxm3MGTR8REJi4YbzPMnZ/JwRcBeSoQmeODkShk/7l+trQheP5Zb2jMqLHySK2W0shxTd5vXrWgvIxQOAdCP5sWWCcOmNVm9fIyXftxcGCM0dCAil9iYzscg8qjJltNjvLe3YWyv7W6B5UADNOyHNe5F5XJopRh6xRzo5+cZ8DNI1ZXHPLdf/S/bx96RfXJgEBpSJuAxz/Je06jQHierPI95tp59ERIkrSQb64n04ldDSsXWGObZxT2IBtxBVpE0QDu+T+iYGbbsM8/T2dompyHhXGIrIstlfCnLoBSwLVj56xX3RUQFYnuG3HS+2z7+2TW4kZdifML61D4hE+caVDZZKxALt6vLVTBMJ/OVSpPZg4Cm4xFQA2Tlbb+7Uxtr+ysFs1sNSbr67k7jDCZleajCUXq9CHIUZwMc7nvBJwWMlCbjNrXv7vSY4e0WYS2uZl/DChNN2ygFvJOGbNFvWHYEK/7agBPCWqB/78pBRcjWaEgKyHdvG3G4UeuQiFe4JknhGk2l6MS4ZlXl5rrEe6hxK75xrRXj2rZ+LFoaQ0q7YWitaj9VKc7JjTSQ5K9a5KK83xHreut+85/uxyngH+2EOchjGnLawV3A2gDfpi5W48pAJrQkY/J9yQc5s063wOWXlSvRVK5F03ivGBl1z70hs/gByni0Ko0fjpcmWOGnXaX1KAZk0mXWudijeXuyspa/pJVWiwd77cz7tAh96YYsN3z3t4t1Yf+KZPfghMxIUuL32N7v3bibzixLyN/IkE3QtsUWIYKjIRmyPRHPY7d2b3d3WQMmt59ENa8CMgTSDfPvNSamAM2FDHn+bs45ryMU4Gw2ZF/5ifwqRoEImrSmjWvVYNxF+hT8tN/RuQy1EbJ19DNM9/bc7X4VRPAkuf5nWE7D2BKGTjmwmVhd/Cd+6szXUHxrGLLof/7nX/f+3q05x//++z///PP/5yAh1w=="; \ No newline at end of file +window.searchData = "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"; \ No newline at end of file diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/classes/ChromelessPlayer.html b/theoplayer/static/theoplayer/v10/api-reference/web/classes/ChromelessPlayer.html index 22db127859c5..592d6016efc8 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/classes/ChromelessPlayer.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/classes/ChromelessPlayer.html @@ -1,5 +1,5 @@ ChromelessPlayer | THEOplayer Web SDK
    THEOplayer Web SDK
      Preparing search index...

      Class ChromelessPlayer

      The player API.

      -

      Hierarchy (View Summary)

      Implements

      Index

      Constructors

      Hierarchy (View Summary)

      Implements

      Index

      Constructors

      Properties

      abr ads? audio? diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/hierarchy.html b/theoplayer/static/theoplayer/v10/api-reference/web/hierarchy.html index e8466ecf9d45..02d9e562c037 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/hierarchy.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/hierarchy.html @@ -1 +1 @@ -THEOplayer Web SDK
      THEOplayer Web SDK
        Preparing search index...

        THEOplayer Web SDK

        Hierarchy Summary

        +THEOplayer Web SDK
        THEOplayer Web SDK
          Preparing search index...

          THEOplayer Web SDK

          Hierarchy Summary

          diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/index.html b/theoplayer/static/theoplayer/v10/api-reference/web/index.html index 759aaecde42e..1a47f0cc5c41 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/index.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/index.html @@ -1,4 +1,4 @@ -THEOplayer Web SDK
          THEOplayer Web SDK
            Preparing search index...

            THEOplayer Web SDK

            The API references for THEOplayer Web SDK version 10.7.0.

            +THEOplayer Web SDK
            THEOplayer Web SDK
              Preparing search index...

              THEOplayer Web SDK

              The API references for THEOplayer Web SDK version 10.8.0.

              API

              The classes, constants, functions and namespaces listed in this category can be found on the global THEOplayer variable when loading with a <script> tag, or as exports of the theoplayer package when loading through npm.

              @@ -8,7 +8,7 @@
              Canvas
              VideoFrameCallbackMetadata
              VideoFrameRequestCallback

              Casting

              Allows playing on a remote device or TV, using Chromecast or AirPlay.

              AirPlay
              Cast
              CastConfiguration
              CastEventMap
              CastStateChangeEvent
              Chromecast
              ChromecastConfiguration
              ChromecastConnectionCallback
              ChromecastError
              ChromecastErrorEvent
              ChromecastEventMap
              ChromecastMetadataDescription
              ChromecastMetadataImage
              GlobalCast
              GlobalChromecast
              VendorCast
              VendorCastEventMap
              CastState
              ChromecastErrorCode
              ChromecastMetadataType
              JoinStrategy
              cast

              Clipping

              Allows clipping the playback window of a source.

              Clip
              ClipEventMap

              Content Protection

              Allows playing content protected streams (DRM).

              -
              AES128KeySystemConfiguration
              AxinomDRMConfiguration
              AzureDRMConfiguration
              CertificateResponse
              ClearkeyDecryptionKey
              ClearkeyKeySystemConfiguration
              ComcastDRMConfiguration
              ConaxDRMConfiguration
              ContentProtectionError
              ContentProtectionErrorEvent
              ContentProtectionIntegration
              ContentProtectionIntegrationFactory
              ContentProtectionRequest
              ContentProtectionResponse
              DeviceBasedTitaniumDRMConfiguration
              DRMConfiguration
              DRMTodayDRMConfiguration
              ExpressPlayDRMConfiguration
              EzdrmDRMConfiguration
              FairPlayKeySystemConfiguration
              IrdetoDRMConfiguration
              KeyOSDRMConfiguration
              KeyOSFairplayKeySystemConfiguration
              KeyOSKeySystemConfiguration
              KeySystemConfiguration
              LicenseRequest
              LicenseResponse
              PlayReadyKeySystemConfiguration
              TitaniumDRMConfiguration
              TokenBasedTitaniumDRMConfiguration
              UplynkDRMConfiguration
              VerimatrixDRMConfiguration
              VimondDRMConfiguration
              VudrmDRMConfiguration
              XstreamDRMConfiguration
              AxinomIntegrationID
              AzureIntegrationID
              CertificateRequest
              ComcastIntegrationID
              ConaxIntegrationID
              ContentProtectionErrorCode
              DRMTodayIntegrationID
              ExpressPlayIntegrationID
              EzdrmIntegrationID
              IrdetoIntegrationID
              KeyOSIntegrationID
              KeySystemId
              LicenseType
              TitaniumIntegrationID
              UplynkIntegrationID
              VerimatrixIntegrationID
              VimondIntegrationID
              VudrmIntegrationID
              WidevineKeySystemConfiguration
              XstreamIntegrationID
              registerContentProtectionIntegration

              Errors

              ErrorCategory
              ErrorCode
              ChromecastError
              ContentProtectionError
              ContentProtectionErrorEvent
              ErrorEvent
              ManifestErrorEvent
              MediaError
              SegmentErrorEvent
              TextTrackError
              TextTrackErrorEvent
              THEOplayerError
              ContentProtectionErrorCode
              MediaErrorCode
              TextTrackErrorCode
              ErrorCategory

              Events

              AdBreakEvent
              AdBufferingEvent
              AddCachingTaskEvent
              AddTrackEvent
              AddViewEvent
              AdEvent
              AdMetadataEvent
              AdSkipEvent
              AdsManagerLoadedEvent
              CanPlayEvent
              CanPlayThroughEvent
              CastStateChangeEvent
              ContentProtectionErrorEvent
              CurrentSourceChangeEvent
              DimensionChangeEvent
              DurationChangeEvent
              EmptiedEvent
              EncryptedEvent
              EndedEvent
              ErrorEvent
              Event
              EventDispatcher
              InterstitialEvent
              LayoutChangeEvent
              LoadedDataEvent
              LoadedMetadataEvent
              ManifestErrorEvent
              PauseEvent
              PlayEvent
              PlayingEvent
              PresentationModeChangeEvent
              ProgressEvent
              QualityEvent
              RateChangeEvent
              ReadyStateChangeEvent
              RemoveCachingTaskEvent
              RemoveTrackEvent
              RemoveViewEvent
              RepresentationChangeEvent
              SeekedEvent
              SeekingEvent
              SegmentErrorEvent
              SourceChangeEvent
              TargetQualityChangedEvent
              TextTrackAddCueEvent
              TextTrackCueChangeEvent
              TextTrackCueEnterEvent
              TextTrackCueExitEvent
              TextTrackCueUpdateEvent
              TextTrackEnterCueEvent
              TextTrackErrorEvent
              TextTrackExitCueEvent
              TextTrackReadyStateChangeEvent
              TextTrackRemoveCueEvent
              TextTrackTypeChangeEvent
              TextTrackUpdateCueEvent
              TimeUpdateEvent
              TrackChangeEvent
              TrackUpdateEvent
              UpdateQualityEvent
              UplynkAdBeginEvent
              UplynkAdBreakBeginEvent
              UplynkAdBreakEndEvent
              UplynkAdBreakSkipEvent
              UplynkAdCompleteEvent
              UplynkAddAdBreakEvent
              UplynkAddAssetEvent
              UplynkAdEndEvent
              UplynkAdFirstQuartileEvent
              UplynkAdMidpointEvent
              UplynkAdThirdQuartileEvent
              UplynkAssetInfoResponseEvent
              UplynkPingErrorEvent
              UplynkPingResponseEvent
              UplynkRemoveAdBreakEvent
              UplynkRemoveAdEvent
              UplynkRemoveAssetEvent
              UplynkUpdateAdBreakEvent
              ViewChangeEvent
              ViewPositionChangeEvent
              VolumeChangeEvent
              WaitingEvent
              DirectionChangeEvent
              EventListener
              EventMap
              RelatedChangeEvent
              RelatedHideEvent
              RelatedShowEvent
              StateChangeEvent
              StereoChangeEvent

              HESP

              HespApi
              HespApiEventMap
              HespSourceConfiguration
              HespTypedSource
              HespMediaType

              Media and Text Tracks

              AddTrackEvent
              AudioQuality
              CustomTextTrackMap
              CustomTextTrackOptions
              CustomWebVTTTextTrack
              DateRangeCue
              EmsgCue
              EventStreamCue
              ID3AttachedPicture
              ID3BaseFrame
              ID3Comments
              ID3CommercialFrame
              ID3Cue
              ID3GenericEncapsulatedObject
              ID3InvolvedPeopleList
              ID3PositionSynchronisationFrame
              ID3PrivateFrame
              ID3SynchronizedLyricsText
              ID3TermsOfUse
              ID3Text
              ID3UniqueFileIdentifier
              ID3Unknown
              ID3UnsynchronisedLyricsTextTranscription
              ID3UserDefinedText
              ID3Yospace
              MediaTrack
              MediaTrackEventMap
              MediaTrackList
              MillicastMetadataCue
              Quality
              QualityEvent
              QualityEventMap
              QualityList
              RemoveTrackEvent
              Representation
              TargetQualityChangedEvent
              TextTrack
              TextTrackAddCueEvent
              TextTrackCue
              TextTrackCueChangeEvent
              TextTrackCueEnterEvent
              TextTrackCueEventMap
              TextTrackCueExitEvent
              TextTrackCueList
              TextTrackCueUpdateEvent
              TextTrackEnterCueEvent
              TextTrackError
              TextTrackErrorEvent
              TextTrackEventMap
              TextTrackExitCueEvent
              TextTrackReadyStateChangeEvent
              TextTrackRemoveCueEvent
              TextTracksList
              TextTrackStyle
              TextTrackStyleEventMap
              TextTrackTypeChangeEvent
              TextTrackUpdateCueEvent
              Track
              TrackChangeEvent
              TrackEventMap
              TrackList
              TrackListEventMap
              TrackUpdateEvent
              TTMLCue
              TTMLExtent
              UpdateQualityEvent
              VideoQuality
              WebVTTCue
              WebVTTRegion
              AccessibilityRole
              EdgeStyle
              ID3Frame
              MediaTrackType
              StylePropertyRecord
              SupportedCustomTextTrackCueTypes
              TextTrackErrorCode
              TextTrackReadyState
              TextTrackType
              VTTAlignSetting
              VTTDirectionSetting
              VTTLine
              VTTLineAlignSetting
              VTTPosition
              VTTPositionAlignSetting
              VTTScrollSetting
              YospaceId

              Millicast

              Allows playing Millicast live streams. +

              AES128KeySystemConfiguration
              AxinomDRMConfiguration
              AzureDRMConfiguration
              CertificateResponse
              ClearkeyDecryptionKey
              ClearkeyKeySystemConfiguration
              ComcastDRMConfiguration
              ConaxDRMConfiguration
              ContentProtectionError
              ContentProtectionErrorEvent
              ContentProtectionIntegration
              ContentProtectionIntegrationFactory
              ContentProtectionRequest
              ContentProtectionResponse
              DeviceBasedTitaniumDRMConfiguration
              DRMConfiguration
              DRMTodayDRMConfiguration
              ExpressPlayDRMConfiguration
              EzdrmDRMConfiguration
              FairPlayKeySystemConfiguration
              IrdetoDRMConfiguration
              KeyOSDRMConfiguration
              KeyOSFairplayKeySystemConfiguration
              KeyOSKeySystemConfiguration
              KeySystemConfiguration
              LicenseRequest
              LicenseResponse
              PlayReadyKeySystemConfiguration
              TitaniumDRMConfiguration
              TokenBasedTitaniumDRMConfiguration
              UplynkDRMConfiguration
              VerimatrixDRMConfiguration
              VimondDRMConfiguration
              VudrmDRMConfiguration
              XstreamDRMConfiguration
              AxinomIntegrationID
              AzureIntegrationID
              CertificateRequest
              ComcastIntegrationID
              ConaxIntegrationID
              ContentProtectionErrorCode
              DRMTodayIntegrationID
              ExpressPlayIntegrationID
              EzdrmIntegrationID
              IrdetoIntegrationID
              KeyOSIntegrationID
              KeySystemId
              LicenseType
              TitaniumIntegrationID
              UplynkIntegrationID
              VerimatrixIntegrationID
              VimondIntegrationID
              VudrmIntegrationID
              WidevineKeySystemConfiguration
              XstreamIntegrationID
              registerContentProtectionIntegration

              Errors

              ErrorCategory
              ErrorCode
              ChromecastError
              ContentProtectionError
              ContentProtectionErrorEvent
              ErrorEvent
              ManifestErrorEvent
              MediaError
              SegmentErrorEvent
              TextTrackError
              TextTrackErrorEvent
              THEOplayerError
              ContentProtectionErrorCode
              MediaErrorCode
              TextTrackErrorCode
              ErrorCategory

              Events

              AdBreakEvent
              AdBufferingEvent
              AddCachingTaskEvent
              AddTrackEvent
              AddViewEvent
              AdEvent
              AdMetadataEvent
              AdSkipEvent
              AdsManagerLoadedEvent
              CanPlayEvent
              CanPlayThroughEvent
              CastStateChangeEvent
              ContentProtectionErrorEvent
              ContentSteeringErrorEvent
              ContentSteeringLocationChangeEvent
              ContentSteeringStartEvent
              ContentSteeringStopEvent
              ContentSteeringUpdateEvent
              CurrentSourceChangeEvent
              DimensionChangeEvent
              DurationChangeEvent
              EmptiedEvent
              EncryptedEvent
              EndedEvent
              ErrorEvent
              Event
              EventDispatcher
              InterstitialEvent
              LayoutChangeEvent
              LoadedDataEvent
              LoadedMetadataEvent
              ManifestErrorEvent
              PauseEvent
              PlayEvent
              PlayingEvent
              PresentationModeChangeEvent
              ProgressEvent
              QualityEvent
              RateChangeEvent
              ReadyStateChangeEvent
              RemoveCachingTaskEvent
              RemoveTrackEvent
              RemoveViewEvent
              RepresentationChangeEvent
              SeekedEvent
              SeekingEvent
              SegmentErrorEvent
              SourceChangeEvent
              TargetQualityChangedEvent
              TextTrackAddCueEvent
              TextTrackCueChangeEvent
              TextTrackCueEnterEvent
              TextTrackCueExitEvent
              TextTrackCueUpdateEvent
              TextTrackEnterCueEvent
              TextTrackErrorEvent
              TextTrackExitCueEvent
              TextTrackReadyStateChangeEvent
              TextTrackRemoveCueEvent
              TextTrackTypeChangeEvent
              TextTrackUpdateCueEvent
              TimeUpdateEvent
              TrackChangeEvent
              TrackUpdateEvent
              UpdateQualityEvent
              UplynkAdBeginEvent
              UplynkAdBreakBeginEvent
              UplynkAdBreakEndEvent
              UplynkAdBreakSkipEvent
              UplynkAdCompleteEvent
              UplynkAddAdBreakEvent
              UplynkAddAssetEvent
              UplynkAdEndEvent
              UplynkAdFirstQuartileEvent
              UplynkAdMidpointEvent
              UplynkAdThirdQuartileEvent
              UplynkAssetInfoResponseEvent
              UplynkPingErrorEvent
              UplynkPingResponseEvent
              UplynkRemoveAdBreakEvent
              UplynkRemoveAdEvent
              UplynkRemoveAssetEvent
              UplynkUpdateAdBreakEvent
              ViewChangeEvent
              ViewPositionChangeEvent
              VolumeChangeEvent
              WaitingEvent
              DirectionChangeEvent
              EventListener
              EventMap
              RelatedChangeEvent
              RelatedHideEvent
              RelatedShowEvent
              StateChangeEvent
              StereoChangeEvent

              HESP

              HespApi
              HespApiEventMap
              HespSourceConfiguration
              HespTypedSource
              HespMediaType

              Media and Text Tracks

              AddTrackEvent
              AudioQuality
              CustomTextTrackMap
              CustomTextTrackOptions
              CustomWebVTTTextTrack
              DateRangeCue
              EmsgCue
              EventStreamCue
              ID3AttachedPicture
              ID3BaseFrame
              ID3Comments
              ID3CommercialFrame
              ID3Cue
              ID3GenericEncapsulatedObject
              ID3InvolvedPeopleList
              ID3PositionSynchronisationFrame
              ID3PrivateFrame
              ID3SynchronizedLyricsText
              ID3TermsOfUse
              ID3Text
              ID3UniqueFileIdentifier
              ID3Unknown
              ID3UnsynchronisedLyricsTextTranscription
              ID3UserDefinedText
              ID3Yospace
              MediaTrack
              MediaTrackEventMap
              MediaTrackList
              MillicastMetadataCue
              Quality
              QualityEvent
              QualityEventMap
              QualityList
              RemoveTrackEvent
              Representation
              TargetQualityChangedEvent
              TextTrack
              TextTrackAddCueEvent
              TextTrackCue
              TextTrackCueChangeEvent
              TextTrackCueEnterEvent
              TextTrackCueEventMap
              TextTrackCueExitEvent
              TextTrackCueList
              TextTrackCueUpdateEvent
              TextTrackEnterCueEvent
              TextTrackError
              TextTrackErrorEvent
              TextTrackEventMap
              TextTrackExitCueEvent
              TextTrackReadyStateChangeEvent
              TextTrackRemoveCueEvent
              TextTracksList
              TextTrackStyle
              TextTrackStyleEventMap
              TextTrackTypeChangeEvent
              TextTrackUpdateCueEvent
              Track
              TrackChangeEvent
              TrackEventMap
              TrackList
              TrackListEventMap
              TrackUpdateEvent
              TTMLCue
              TTMLExtent
              UpdateQualityEvent
              VideoQuality
              WebVTTCue
              WebVTTRegion
              AccessibilityRole
              EdgeStyle
              ID3Frame
              MediaTrackType
              StylePropertyRecord
              SupportedCustomTextTrackCueTypes
              TextTrackErrorCode
              TextTrackReadyState
              TextTrackType
              VTTAlignSetting
              VTTDirectionSetting
              VTTLine
              VTTLineAlignSetting
              VTTPosition
              VTTPositionAlignSetting
              VTTScrollSetting
              YospaceId

              Millicast

              Allows playing Millicast live streams. Requires the millicast feature to be enabled.

              Millicast
              MillicastEventMap
              MillicastMetadataCue
              MillicastSource
              MillicastStatsEvent

              Multi-view

              Allows playing multiple synchronised sources in a single player. Requires the multiview feature to be enabled.

              @@ -22,4 +22,4 @@ Requires the uplynk feature to be enabled.

              BoundaryC3
              BoundaryC7
              BoundaryHalftime
              BoundaryInfo
              ThumbnailResolution
              Uplynk
              UplynkAd
              UplynkAdBeginEvent
              UplynkAdBreak
              UplynkAdBreakBeginEvent
              UplynkAdBreakEndEvent
              UplynkAdBreakEventMap
              UplynkAdBreakList
              UplynkAdBreakListEventMap
              UplynkAdBreakSkipEvent
              UplynkAdCompleteEvent
              UplynkAddAdBreakEvent
              UplynkAddAssetEvent
              UplynkAdEndEvent
              UplynkAdEventMap
              UplynkAdFirstQuartileEvent
              UplynkAdList
              UplynkAdListEventMap
              UplynkAdMidpointEvent
              UplynkAds
              UplynkAdThirdQuartileEvent
              UplynkAsset
              UplynkAssetEventMap
              UplynkAssetInfoResponse
              UplynkAssetInfoResponseEvent
              UplynkAssetList
              UplynkConfiguration
              UplynkEventMap
              UplynkExternalId
              UplynkPingConfiguration
              UplynkPingErrorEvent
              UplynkPingResponse
              UplynkPingResponseEvent
              UplynkPreplayBaseResponse
              UplynkPreplayLiveResponse
              UplynkPreplayResponseEvent
              UplynkPreplayVodResponse
              UplynkRemoveAdBreakEvent
              UplynkRemoveAdEvent
              UplynkRemoveAssetEvent
              UplynkResponseDrm
              UplynkResponseLiveAd
              UplynkResponseLiveAdBreak
              UplynkResponseLiveAds
              UplynkResponseVodAd
              UplynkResponseVodAdBreak
              UplynkResponseVodAdBreakOffset
              UplynkResponseVodAdPlaceholder
              UplynkResponseVodAds
              UplynkSource
              UplynkUiConfiguration
              UplynkUpdateAdBreakEvent
              Boundary
              SkippedAdStrategy
              UplynkAssetId
              UplynkAssetMovieRating
              UplynkAssetTvRating
              UplynkAssetType
              UplynkPreplayResponse
              UplynkPreplayResponseType

              VR

              Allows playing virtual reality (VR) streams. Requires the vr feature to be enabled.

              -
              VR
              VRConfiguration
              VRDirection
              VREventMap
              DirectionChangeEvent
              StateChangeEvent
              StereoChangeEvent
              VRPanoramaMode
              VRState
              VRStereoMode
              +
              VR
              VRConfiguration
              VRDirection
              VREventMap
              DirectionChangeEvent
              StateChangeEvent
              StereoChangeEvent
              VRPanoramaMode
              VRState
              VRStereoMode
              diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/Ad.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/Ad.html index 92a9e45aebfb..513b1bb29790 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/Ad.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/Ad.html @@ -1,5 +1,5 @@ Ad | THEOplayer Web SDK
              THEOplayer Web SDK
                Preparing search index...

                Interface Ad

                Represents a VAST creative. It is either a linear or non-linear ad.

                -
                interface Ad {
                    adBreak: AdBreak;
                    adSystem: undefined | string;
                    clickThrough: undefined | string;
                    companions: CompanionAd[];
                    creativeId: undefined | string;
                    customData: unknown;
                    duration: undefined | number;
                    height: undefined | number;
                    id: undefined | string;
                    integration?: CustomAdIntegrationKind | AdIntegrationKind;
                    isSlate: boolean;
                    readyState?: AdReadyState;
                    resourceURI: undefined | string;
                    skipOffset: undefined | number;
                    type: AdType;
                    universalAdIds: UniversalAdId[];
                    width: undefined | number;
                }

                Hierarchy (View Summary)

                Index

                Properties

                interface Ad {
                    adBreak: AdBreak;
                    adSystem: undefined | string;
                    clickThrough: undefined | string;
                    companions: CompanionAd[];
                    creativeId: undefined | string;
                    customData: unknown;
                    duration: undefined | number;
                    height: undefined | number;
                    id: undefined | string;
                    integration?: CustomAdIntegrationKind | AdIntegrationKind;
                    isSlate: boolean;
                    readyState?: AdReadyState;
                    resourceURI: undefined | string;
                    skipOffset: undefined | number;
                    type: AdType;
                    universalAdIds: UniversalAdId[];
                    width: undefined | number;
                }

                Hierarchy (View Summary)

                Index

                Properties

                adBreak adSystem clickThrough companions diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/AdBreakEvent.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/AdBreakEvent.html index 4d49eb9808cd..68b5aa53a1fd 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/AdBreakEvent.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/AdBreakEvent.html @@ -1,5 +1,5 @@ AdBreakEvent | THEOplayer Web SDK
                THEOplayer Web SDK
                  Preparing search index...

                  Interface AdBreakEvent<TType>

                  Base type for events related to an ad break.

                  -
                  interface AdBreakEvent<TType extends string> {
                      adBreak: AdBreak;
                      date: Date;
                      type: TType;
                  }

                  Type Parameters

                  • TType extends string

                  Hierarchy (View Summary)

                  Index

                  Properties

                  interface AdBreakEvent<TType extends string> {
                      adBreak: AdBreak;
                      date: Date;
                      type: TType;
                  }

                  Type Parameters

                  • TType extends string

                  Hierarchy (View Summary)

                  Index

                  Properties

                  Properties

                  adBreak: AdBreak

                  The ad break.

                  diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/AdBreakInterstitial.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/AdBreakInterstitial.html index 0d3a9142a400..6e9a0e4a1f43 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/AdBreakInterstitial.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/AdBreakInterstitial.html @@ -1,5 +1,5 @@ AdBreakInterstitial | THEOplayer Web SDK
                  THEOplayer Web SDK
                    Preparing search index...

                    Interface AdBreakInterstitial

                    The THEOads interstitial that corresponds with ad playback.

                    -
                    interface AdBreakInterstitial {
                        ads: readonly Ad[];
                        adTagParameters: Record<string, string>;
                        backdropUri: undefined | string;
                        duration: undefined | number;
                        id: string;
                        layout: TheoAdsLayout;
                        startTime: number;
                        type: "adbreak";
                    }

                    Hierarchy (View Summary)

                    Index

                    Properties

                    ads +
                    interface AdBreakInterstitial {
                        ads: readonly Ad[];
                        adTagParameters: Record<string, string>;
                        backdropUri: undefined | string;
                        duration: undefined | number;
                        id: string;
                        layout: TheoAdsLayout;
                        startTime: number;
                        type: "adbreak";
                    }

                    Hierarchy (View Summary)

                    Index

                    Properties

                    ads adTagParameters backdropUri duration diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/AdBufferingEvent.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/AdBufferingEvent.html index 2a24808b6b72..0f178227e75f 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/AdBufferingEvent.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/AdBufferingEvent.html @@ -1,5 +1,5 @@ AdBufferingEvent | THEOplayer Web SDK
                    THEOplayer Web SDK
                      Preparing search index...

                      Interface AdBufferingEvent

                      Fired when the ad has stalled playback to buffer.

                      -
                      interface AdBufferingEvent {
                          ad: GoogleImaAd;
                          date: Date;
                          type: "adbuffering";
                      }

                      Hierarchy (View Summary)

                      • AdEvent<"adbuffering">
                        • AdBufferingEvent
                      Index

                      Properties

                      ad +
                      interface AdBufferingEvent {
                          ad: GoogleImaAd;
                          date: Date;
                          type: "adbuffering";
                      }

                      Hierarchy (View Summary)

                      • AdEvent<"adbuffering">
                        • AdBufferingEvent
                      Index

                      Properties

                      Properties

                      The ad which is buffered.

                      diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/AdDescription.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/AdDescription.html index 2da78566e5dc..e042473ac84c 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/AdDescription.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/AdDescription.html @@ -1,5 +1,5 @@ AdDescription | THEOplayer Web SDK
                      THEOplayer Web SDK
                        Preparing search index...

                        Interface AdDescription

                        Describes an ad break request.

                        -
                        interface AdDescription {
                            integration?: CustomAdIntegrationKind | AdIntegrationKind;
                            replaceContent?: boolean;
                            sources?: string | AdSource;
                            timeOffset?: string | number;
                        }

                        Hierarchy (View Summary)

                        Index

                        Properties

                        interface AdDescription {
                            integration?: CustomAdIntegrationKind | AdIntegrationKind;
                            replaceContent?: boolean;
                            sources?: string | AdSource;
                            timeOffset?: string | number;
                        }

                        Hierarchy (View Summary)

                        Index

                        Properties

                        integration? replaceContent? sources? timeOffset? diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/AdEvent.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/AdEvent.html index 1712b7d39791..162942e86214 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/AdEvent.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/AdEvent.html @@ -1,5 +1,5 @@ AdEvent | THEOplayer Web SDK
                        THEOplayer Web SDK
                          Preparing search index...

                          Interface AdEvent<TType>

                          Base type for events related to a single ad.

                          -
                          interface AdEvent<TType extends string> {
                              ad: Ad;
                              date: Date;
                              type: TType;
                          }

                          Type Parameters

                          • TType extends string

                          Hierarchy (View Summary)

                          Index

                          Properties

                          ad +
                          interface AdEvent<TType extends string> {
                              ad: Ad;
                              date: Date;
                              type: TType;
                          }

                          Type Parameters

                          • TType extends string

                          Hierarchy (View Summary)

                          Index

                          Properties

                          Properties

                          ad: Ad

                          The ad.

                          diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/AdInit.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/AdInit.html index 7d347864e55d..72c5d1188431 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/AdInit.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/AdInit.html @@ -3,7 +3,7 @@
                        • ServerSideAdIntegrationController.createAd
                        • ServerSideAdIntegrationController.updateAd
                        • -
                          interface AdInit {
                              adSystem?: string;
                              clickThrough?: string;
                              companions?: CompanionAd[];
                              creativeId?: string;
                              customData?: unknown;
                              duration?: number;
                              height?: number;
                              id?: string;
                              isSlate?: boolean;
                              readyState?: AdReadyState;
                              resourceURI?: string;
                              skipOffset?: number;
                              timeOffset?: number;
                              type: AdType;
                              universalAdIds?: UniversalAdId[];
                              width?: number;
                          }

                          Hierarchy

                          Index

                          Properties

                          interface AdInit {
                              adSystem?: string;
                              clickThrough?: string;
                              companions?: CompanionAd[];
                              creativeId?: string;
                              customData?: unknown;
                              duration?: number;
                              height?: number;
                              id?: string;
                              isSlate?: boolean;
                              readyState?: AdReadyState;
                              resourceURI?: string;
                              skipOffset?: number;
                              timeOffset?: number;
                              type: AdType;
                              universalAdIds?: UniversalAdId[];
                              width?: number;
                          }

                          Hierarchy

                          Index

                          Properties

                          adSystem? clickThrough? companions? creativeId? diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/AdMetadataEvent.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/AdMetadataEvent.html index 2433e249df40..724415deaa1a 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/AdMetadataEvent.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/AdMetadataEvent.html @@ -1,5 +1,5 @@ AdMetadataEvent | THEOplayer Web SDK
                          THEOplayer Web SDK
                            Preparing search index...

                            Interface AdMetadataEvent

                            Fired when an ads list is loaded.

                            -
                            interface AdMetadataEvent {
                                date: Date;
                                type: "admetadata";
                            }

                            Hierarchy (View Summary)

                            • Event<"admetadata">
                              • AdMetadataEvent
                            Index

                            Properties

                            interface AdMetadataEvent {
                                date: Date;
                                type: "admetadata";
                            }

                            Hierarchy (View Summary)

                            • Event<"admetadata">
                              • AdMetadataEvent
                            Index

                            Properties

                            Properties

                            date: Date

                            The creation date of the event.

                            type: "admetadata"

                            The type of the event.

                            diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/AdSkipEvent.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/AdSkipEvent.html index c3fc2119e2e2..294dab63b5a8 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/AdSkipEvent.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/AdSkipEvent.html @@ -1,5 +1,5 @@ AdSkipEvent | THEOplayer Web SDK
                            THEOplayer Web SDK
                              Preparing search index...

                              Interface AdSkipEvent

                              Fired when an ad is skipped.

                              -
                              interface AdSkipEvent {
                                  ad: Ad;
                                  date: Date;
                                  playedPercentage: number;
                                  type: "adskip";
                              }

                              Hierarchy (View Summary)

                              Index

                              Properties

                              ad +
                              interface AdSkipEvent {
                                  ad: Ad;
                                  date: Date;
                                  playedPercentage: number;
                                  type: "adskip";
                              }

                              Hierarchy (View Summary)

                              Index

                              Properties

                              ad date playedPercentage type diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/AddCachingTaskEvent.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/AddCachingTaskEvent.html index 9cc95876ef1e..6efbdbf7b710 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/AddCachingTaskEvent.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/AddCachingTaskEvent.html @@ -1,5 +1,5 @@ AddCachingTaskEvent | THEOplayer Web SDK
                              THEOplayer Web SDK
                                Preparing search index...

                                Interface AddCachingTaskEvent

                                Fired when a caching task is added.

                                -
                                interface AddCachingTaskEvent {
                                    date: Date;
                                    task: CachingTask;
                                    type: "addtask";
                                }

                                Hierarchy (View Summary)

                                • Event<"addtask">
                                  • AddCachingTaskEvent
                                Index

                                Properties

                                interface AddCachingTaskEvent {
                                    date: Date;
                                    task: CachingTask;
                                    type: "addtask";
                                }

                                Hierarchy (View Summary)

                                • Event<"addtask">
                                  • AddCachingTaskEvent
                                Index

                                Properties

                                Properties

                                date: Date

                                The creation date of the event.

                                diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/AddTrackEvent.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/AddTrackEvent.html index 81541e351a8b..045f917b4826 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/AddTrackEvent.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/AddTrackEvent.html @@ -1,5 +1,5 @@ AddTrackEvent | THEOplayer Web SDK
                                THEOplayer Web SDK
                                  Preparing search index...

                                  Interface AddTrackEvent

                                  Fired when a new track has been added to this list.

                                  -
                                  interface AddTrackEvent {
                                      date: Date;
                                      track: Track;
                                      type: "addtrack";
                                  }

                                  Hierarchy (View Summary)

                                  • Event<"addtrack">
                                    • AddTrackEvent
                                  Index

                                  Properties

                                  interface AddTrackEvent {
                                      date: Date;
                                      track: Track;
                                      type: "addtrack";
                                  }

                                  Hierarchy (View Summary)

                                  • Event<"addtrack">
                                    • AddTrackEvent
                                  Index

                                  Properties

                                  Properties

                                  date: Date

                                  The creation date of the event.

                                  diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/AddViewEvent.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/AddViewEvent.html index e66dc577cafa..6af1757d77bb 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/AddViewEvent.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/AddViewEvent.html @@ -1,5 +1,5 @@ AddViewEvent | THEOplayer Web SDK
                                  THEOplayer Web SDK
                                    Preparing search index...

                                    Interface AddViewEvent

                                    Fired when a new View has been added to the MultiViewPlayer.

                                    -
                                    interface AddViewEvent {
                                        date: Date;
                                        type: "addview";
                                        view: View;
                                    }

                                    Hierarchy (View Summary)

                                    • Event<"addview">
                                      • AddViewEvent
                                    Index

                                    Properties

                                    interface AddViewEvent {
                                        date: Date;
                                        type: "addview";
                                        view: View;
                                    }

                                    Hierarchy (View Summary)

                                    • Event<"addview">
                                      • AddViewEvent
                                    Index

                                    Properties

                                    Properties

                                    date: Date

                                    The creation date of the event.

                                    diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/Ads.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/Ads.html index ff03f07c9af6..fdee6494f534 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/Ads.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/Ads.html @@ -1,6 +1,6 @@ Ads | THEOplayer Web SDK
                                    THEOplayer Web SDK
                                      Preparing search index...

                                      Interface Ads

                                      The API for advertisements.


                                      - Integrates with 'csai', 'google-ima', 'google-dai', 'freewheel' or 'theoads'.

                                      -
                                      interface Ads {
                                          currentAdBreak: null | AdBreak;
                                          currentAds: Ad[];
                                          dai?: GoogleDAI;
                                          playing: boolean;
                                          scheduledAdBreaks: AdBreak[];
                                          scheduledAds: Ad[];
                                          addEventListener<TType extends keyof AdsEventMap>(
                                              type: TType | readonly TType[],
                                              listener: EventListener<AdsEventMap[TType]>,
                                          ): void;
                                          registerServerSideIntegration(
                                              integrationId: CustomAdIntegrationKind,
                                              integrationFactory: ServerSideAdIntegrationFactory,
                                          ): void;
                                          removeEventListener<TType extends keyof AdsEventMap>(
                                              type: TType | readonly TType[],
                                              listener: EventListener<AdsEventMap[TType]>,
                                          ): void;
                                          schedule(adDescription: AdDescription): void;
                                          skip(): void;
                                          skipAdBreak(target?: number): void;
                                      }

                                      Hierarchy (View Summary)

                                      Index

                                      Properties

                                      interface Ads {
                                          currentAdBreak: null | AdBreak;
                                          currentAds: Ad[];
                                          dai?: GoogleDAI;
                                          playing: boolean;
                                          scheduledAdBreaks: AdBreak[];
                                          scheduledAds: Ad[];
                                          addEventListener<TType extends keyof AdsEventMap>(
                                              type: TType | readonly TType[],
                                              listener: EventListener<AdsEventMap[TType]>,
                                          ): void;
                                          registerServerSideIntegration(
                                              integrationId: CustomAdIntegrationKind,
                                              integrationFactory: ServerSideAdIntegrationFactory,
                                          ): void;
                                          removeEventListener<TType extends keyof AdsEventMap>(
                                              type: TType | readonly TType[],
                                              listener: EventListener<AdsEventMap[TType]>,
                                          ): void;
                                          schedule(adDescription: AdDescription): void;
                                          skip(): void;
                                          skipAdBreak(target?: number): void;
                                      }

                                      Hierarchy (View Summary)

                                      Index

                                      Properties

                                      currentAdBreak currentAds dai? playing diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/AdsManagerLoadedEvent.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/AdsManagerLoadedEvent.html index 3583a158880d..300fa02b4544 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/AdsManagerLoadedEvent.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/AdsManagerLoadedEvent.html @@ -1,5 +1,5 @@ AdsManagerLoadedEvent | THEOplayer Web SDK
                                      THEOplayer Web SDK
                                        Preparing search index...

                                        Interface AdsManagerLoadedEvent

                                        Fired when the google.ima.AdsManager is created.

                                        -
                                        interface AdsManagerLoadedEvent {
                                            adsManager: any;
                                            date: Date;
                                            type: "adsmanagerloaded";
                                        }

                                        Hierarchy (View Summary)

                                        • Event<"adsmanagerloaded">
                                          • AdsManagerLoadedEvent
                                        Index

                                        Properties

                                        interface AdsManagerLoadedEvent {
                                            adsManager: any;
                                            date: Date;
                                            type: "adsmanagerloaded";
                                        }

                                        Hierarchy (View Summary)

                                        • Event<"adsmanagerloaded">
                                          • AdsManagerLoadedEvent
                                        Index

                                        Properties

                                        Properties

                                        adsManager: any

                                        The google.ima.AdsManager

                                        diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/AgamaConfiguration.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/AgamaConfiguration.html index a6c65f669edb..c5952ce200c7 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/AgamaConfiguration.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/AgamaConfiguration.html @@ -1,4 +1,4 @@ AgamaConfiguration | THEOplayer Web SDK
                                        THEOplayer Web SDK
                                          Preparing search index...

                                          Interface AgamaConfiguration

                                          Describes the configuration of Agama.

                                          -
                                          interface AgamaConfiguration {
                                              integration: "agama";
                                          }

                                          Hierarchy (View Summary)

                                          Index

                                          Properties

                                          interface AgamaConfiguration {
                                              integration: "agama";
                                          }

                                          Hierarchy (View Summary)

                                          Index

                                          Properties

                                          Properties

                                          integration: "agama"

                                          The identifier of the analytics integration.

                                          diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/AgamaPlayerConfiguration.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/AgamaPlayerConfiguration.html index a7a69e761c90..6b0db8b431b4 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/AgamaPlayerConfiguration.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/AgamaPlayerConfiguration.html @@ -1,6 +1,6 @@ AgamaPlayerConfiguration | THEOplayer Web SDK
                                          THEOplayer Web SDK
                                            Preparing search index...

                                            Interface AgamaPlayerConfiguration

                                            Describes the configuration of Agama.


                                            - Available since v2.45.6.

                                            -
                                            interface AgamaPlayerConfiguration {
                                                application?: string;
                                                applicationVersion?: string;
                                                config: string;
                                                connectionType?: string;
                                                deviceID?: string;
                                                deviceManufacturer?: string;
                                                deviceModel?: string;
                                                deviceOs?: string;
                                                deviceOsVersion?: string;
                                                deviceType?: string;
                                                integration: "agama";
                                                logLevel?: AgamaLogLevelType;
                                                userAccountID?: string;
                                            }

                                            Hierarchy (View Summary)

                                            Index

                                            Properties

                                            interface AgamaPlayerConfiguration {
                                                application?: string;
                                                applicationVersion?: string;
                                                config: string;
                                                connectionType?: string;
                                                deviceID?: string;
                                                deviceManufacturer?: string;
                                                deviceModel?: string;
                                                deviceOs?: string;
                                                deviceOsVersion?: string;
                                                deviceType?: string;
                                                integration: "agama";
                                                logLevel?: AgamaLogLevelType;
                                                userAccountID?: string;
                                            }

                                            Hierarchy (View Summary)

                                            Index

                                            Properties

                                            application? applicationVersion? config connectionType? diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/AgamaSourceConfiguration.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/AgamaSourceConfiguration.html index 88de20f337d5..ed6bde84fc92 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/AgamaSourceConfiguration.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/AgamaSourceConfiguration.html @@ -1,7 +1,7 @@ AgamaSourceConfiguration | THEOplayer Web SDK
                                            THEOplayer Web SDK
                                              Preparing search index...

                                              Interface AgamaSourceConfiguration

                                              Describes the configuration of Agama for this source.


                                              - Available since v2.45.6.
                                              - Overrides the AgamaPlayerConfiguration.

                                              -
                                              interface AgamaSourceConfiguration {
                                                  asset: string;
                                                  cdn?: string;
                                                  contentDescription?: string;
                                                  contentTitle?: string;
                                                  contentType?: string;
                                                  integration: "agama";
                                                  serviceName?: AgamaServiceName;
                                                  streamType: AgamaStreamType;
                                              }

                                              Hierarchy (View Summary)

                                              Index

                                              Properties

                                              interface AgamaSourceConfiguration {
                                                  asset: string;
                                                  cdn?: string;
                                                  contentDescription?: string;
                                                  contentTitle?: string;
                                                  contentType?: string;
                                                  integration: "agama";
                                                  serviceName?: AgamaServiceName;
                                                  streamType: AgamaStreamType;
                                              }

                                              Hierarchy (View Summary)

                                              Index

                                              Properties

                                              asset cdn? contentDescription? contentTitle? diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/AirPlay.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/AirPlay.html index 3862fbbcbf20..e9e20d376cbd 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/AirPlay.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/AirPlay.html @@ -1,5 +1,5 @@ AirPlay | THEOplayer Web SDK
                                              THEOplayer Web SDK
                                                Preparing search index...

                                                Interface AirPlay

                                                The AirPlay API.

                                                -
                                                interface AirPlay {
                                                    casting: boolean;
                                                    state: CastState;
                                                    addEventListener<TType extends "statechange">(
                                                        type: TType | readonly TType[],
                                                        listener: EventListener<VendorCastEventMap[TType]>,
                                                    ): void;
                                                    removeEventListener<TType extends "statechange">(
                                                        type: TType | readonly TType[],
                                                        listener: EventListener<VendorCastEventMap[TType]>,
                                                    ): void;
                                                    start(): void;
                                                    stop(): void;
                                                }

                                                Hierarchy (View Summary)

                                                Index

                                                Properties

                                                interface AirPlay {
                                                    casting: boolean;
                                                    state: CastState;
                                                    addEventListener<TType extends "statechange">(
                                                        type: TType | readonly TType[],
                                                        listener: EventListener<VendorCastEventMap[TType]>,
                                                    ): void;
                                                    removeEventListener<TType extends "statechange">(
                                                        type: TType | readonly TType[],
                                                        listener: EventListener<VendorCastEventMap[TType]>,
                                                    ): void;
                                                    start(): void;
                                                    stop(): void;
                                                }

                                                Hierarchy (View Summary)

                                                Index

                                                Properties

                                                Methods

                                                addEventListener removeEventListener diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/AnalyticsDescription.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/AnalyticsDescription.html index aa80b5c1f1cb..e6b6bbc6b2c5 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/AnalyticsDescription.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/AnalyticsDescription.html @@ -1,4 +1,4 @@ AnalyticsDescription | THEOplayer Web SDK
                                                THEOplayer Web SDK
                                                  Preparing search index...

                                                  Interface AnalyticsDescription

                                                  Describes the configuration of an analytics integration.

                                                  -
                                                  interface AnalyticsDescription {
                                                      integration: AnalyticsIntegrationID;
                                                  }

                                                  Hierarchy (View Summary)

                                                  Index

                                                  Properties

                                                  interface AnalyticsDescription {
                                                      integration: AnalyticsIntegrationID;
                                                  }

                                                  Hierarchy (View Summary)

                                                  Index

                                                  Properties

                                                  Properties

                                                  The identifier of the analytics integration.

                                                  diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/AudioQuality.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/AudioQuality.html index 9339b6c24d1e..f88fd7286056 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/AudioQuality.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/AudioQuality.html @@ -1,5 +1,5 @@ AudioQuality | THEOplayer Web SDK
                                                  THEOplayer Web SDK
                                                    Preparing search index...

                                                    Interface AudioQuality

                                                    Represents a quality of an audio track.

                                                    -
                                                    interface AudioQuality {
                                                        audioSamplingRate: number | [number, number];
                                                        available: boolean;
                                                        averageBandwidth?: number;
                                                        bandwidth: number;
                                                        codecs: string;
                                                        id: string;
                                                        label: string;
                                                        name: string;
                                                        score: undefined | number;
                                                        uid: number;
                                                        addEventListener<TType extends "update">(
                                                            type: TType | readonly TType[],
                                                            listener: EventListener<QualityEventMap[TType]>,
                                                        ): void;
                                                        removeEventListener<TType extends "update">(
                                                            type: TType | readonly TType[],
                                                            listener: EventListener<QualityEventMap[TType]>,
                                                        ): void;
                                                    }

                                                    Hierarchy (View Summary)

                                                    Index

                                                    Properties

                                                    interface AudioQuality {
                                                        audioSamplingRate: number | [number, number];
                                                        available: boolean;
                                                        averageBandwidth?: number;
                                                        bandwidth: number;
                                                        codecs: string;
                                                        id: string;
                                                        label: string;
                                                        name: string;
                                                        score: undefined | number;
                                                        uid: number;
                                                        addEventListener<TType extends "update">(
                                                            type: TType | readonly TType[],
                                                            listener: EventListener<QualityEventMap[TType]>,
                                                        ): void;
                                                        removeEventListener<TType extends "update">(
                                                            type: TType | readonly TType[],
                                                            listener: EventListener<QualityEventMap[TType]>,
                                                        ): void;
                                                    }

                                                    Hierarchy (View Summary)

                                                    Index

                                                    Properties

                                                    audioSamplingRate available averageBandwidth? bandwidth diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/AxinomDRMConfiguration.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/AxinomDRMConfiguration.html index 105fd517b5b9..99c15f58966d 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/AxinomDRMConfiguration.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/AxinomDRMConfiguration.html @@ -2,7 +2,7 @@
                                                    const drmConfiguration = {
                                                    integration : 'axinom',
                                                    token: 'yourToken',
                                                    fairplay: {
                                                    licenseAcquisitionURL: 'yourLicenseAcquisitionURL'
                                                    certificateURL: 'yourCertificateAcquisitionURL'
                                                    },
                                                    }
                                                    -
                                                    interface AxinomDRMConfiguration {
                                                        aes128?: AES128KeySystemConfiguration;
                                                        clearkey?: ClearkeyKeySystemConfiguration;
                                                        fairplay?: FairPlayKeySystemConfiguration;
                                                        integration: "axinom";
                                                        integrationParameters?: { [parameterName: string]: any };
                                                        playready?: PlayReadyKeySystemConfiguration;
                                                        preferredKeySystems?: (KeySystemId | string & {})[];
                                                        queryParameters?: { [key: string]: any };
                                                        token: string;
                                                        useOipfDrmAgent?: boolean;
                                                        widevine?: KeySystemConfiguration;
                                                    }

                                                    Hierarchy (View Summary)

                                                    Index

                                                    Properties

                                                    interface AxinomDRMConfiguration {
                                                        aes128?: AES128KeySystemConfiguration;
                                                        clearkey?: ClearkeyKeySystemConfiguration;
                                                        fairplay?: FairPlayKeySystemConfiguration;
                                                        integration: "axinom";
                                                        integrationParameters?: { [parameterName: string]: any };
                                                        playready?: PlayReadyKeySystemConfiguration;
                                                        preferredKeySystems?: (KeySystemId | string & {})[];
                                                        queryParameters?: { [key: string]: any };
                                                        token: string;
                                                        useOipfDrmAgent?: boolean;
                                                        widevine?: KeySystemConfiguration;
                                                    }

                                                    Hierarchy (View Summary)

                                                    Index

                                                    Properties

                                                    aes128? clearkey? fairplay? integration diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/AzureDRMConfiguration.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/AzureDRMConfiguration.html index 2f44aa318413..a7b1ce870071 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/AzureDRMConfiguration.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/AzureDRMConfiguration.html @@ -1,5 +1,5 @@ AzureDRMConfiguration | THEOplayer Web SDK
                                                    THEOplayer Web SDK
                                                      Preparing search index...

                                                      Interface AzureDRMConfiguration

                                                      Describes the configuration of the Azure Media Services DRM integration.

                                                      -
                                                      interface AzureDRMConfiguration {
                                                          aes128?: AES128KeySystemConfiguration;
                                                          clearkey?: ClearkeyKeySystemConfiguration;
                                                          fairplay?: FairPlayKeySystemConfiguration;
                                                          integration: "azure";
                                                          integrationParameters?: { [parameterName: string]: any };
                                                          playready?: PlayReadyKeySystemConfiguration;
                                                          preferredKeySystems?: (KeySystemId | string & {})[];
                                                          queryParameters?: { [key: string]: any };
                                                          token: string;
                                                          useOipfDrmAgent?: boolean;
                                                          widevine?: KeySystemConfiguration;
                                                      }

                                                      Hierarchy (View Summary)

                                                      Index

                                                      Properties

                                                      interface AzureDRMConfiguration {
                                                          aes128?: AES128KeySystemConfiguration;
                                                          clearkey?: ClearkeyKeySystemConfiguration;
                                                          fairplay?: FairPlayKeySystemConfiguration;
                                                          integration: "azure";
                                                          integrationParameters?: { [parameterName: string]: any };
                                                          playready?: PlayReadyKeySystemConfiguration;
                                                          preferredKeySystems?: (KeySystemId | string & {})[];
                                                          queryParameters?: { [key: string]: any };
                                                          token: string;
                                                          useOipfDrmAgent?: boolean;
                                                          widevine?: KeySystemConfiguration;
                                                      }

                                                      Hierarchy (View Summary)

                                                      Index

                                                      Properties

                                                      aes128? clearkey? fairplay? integration diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/BaseSource.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/BaseSource.html index daed63bf125b..492c0b07065b 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/BaseSource.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/BaseSource.html @@ -1,5 +1,5 @@ BaseSource | THEOplayer Web SDK
                                                      THEOplayer Web SDK
                                                        Preparing search index...

                                                        Interface BaseSource

                                                        Represents the common properties of a media resource.

                                                        -
                                                        interface BaseSource {
                                                            abr?: SourceAbrConfiguration;
                                                            crossOrigin?: CrossOriginSetting;
                                                            dash?: DashPlaybackConfiguration;
                                                            hls?: HlsPlaybackConfiguration;
                                                            hlsDateRange?: boolean;
                                                            ignoreEmbeddedTextTrackTypes?: TextTrackType[];
                                                            integration?: SourceIntegrationId;
                                                            latencyConfiguration?: SourceLatencyConfiguration;
                                                            lcevc?: boolean;
                                                            liveOffset?: number;
                                                            lowLatency?: boolean;
                                                            seamlessSwitchStrategy?: SeamlessSwitchStrategy;
                                                            timeServer?: string;
                                                            useCredentials?: boolean;
                                                            useManagedMediaSource?: boolean;
                                                            useNativePlayback?: boolean;
                                                        }

                                                        Hierarchy (View Summary)

                                                        Index

                                                        Properties

                                                        interface BaseSource {
                                                            abr?: SourceAbrConfiguration;
                                                            crossOrigin?: CrossOriginSetting;
                                                            dash?: DashPlaybackConfiguration;
                                                            hls?: HlsPlaybackConfiguration;
                                                            hlsDateRange?: boolean;
                                                            ignoreEmbeddedTextTrackTypes?: TextTrackType[];
                                                            integration?: SourceIntegrationId;
                                                            latencyConfiguration?: SourceLatencyConfiguration;
                                                            lcevc?: boolean;
                                                            liveOffset?: number;
                                                            lowLatency?: boolean;
                                                            seamlessSwitchStrategy?: SeamlessSwitchStrategy;
                                                            timeServer?: string;
                                                            useCredentials?: boolean;
                                                            useManagedMediaSource?: boolean;
                                                            useNativePlayback?: boolean;
                                                        }

                                                        Hierarchy (View Summary)

                                                        Index

                                                        Properties

                                                        abr? crossOrigin? dash? hls? diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/Cache.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/Cache.html index 3481bb7e5730..e86fda894b1f 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/Cache.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/Cache.html @@ -1,6 +1,6 @@ Cache | THEOplayer Web SDK
                                                        THEOplayer Web SDK
                                                          Preparing search index...

                                                          Interface Cache

                                                          The media caching API.


                                                          - Available since v2.26.

                                                          -
                                                          interface Cache {
                                                              network: NetworkInterceptorController;
                                                              status: CacheStatus;
                                                              tasks: CachingTaskList;
                                                              addEventListener<TType extends "statechange">(
                                                                  type: TType | readonly TType[],
                                                                  listener: EventListener<CacheEventMap[TType]>,
                                                              ): void;
                                                              createTask(
                                                                  source: SourceDescription,
                                                                  parameters: CachingTaskParameters,
                                                              ): CachingTask;
                                                              removeEventListener<TType extends "statechange">(
                                                                  type: TType | readonly TType[],
                                                                  listener: EventListener<CacheEventMap[TType]>,
                                                              ): void;
                                                          }

                                                          Hierarchy (View Summary)

                                                          Index

                                                          Properties

                                                          interface Cache {
                                                              network: NetworkInterceptorController;
                                                              status: CacheStatus;
                                                              tasks: CachingTaskList;
                                                              addEventListener<TType extends "statechange">(
                                                                  type: TType | readonly TType[],
                                                                  listener: EventListener<CacheEventMap[TType]>,
                                                              ): void;
                                                              createTask(
                                                                  source: SourceDescription,
                                                                  parameters: CachingTaskParameters,
                                                              ): CachingTask;
                                                              removeEventListener<TType extends "statechange">(
                                                                  type: TType | readonly TType[],
                                                                  listener: EventListener<CacheEventMap[TType]>,
                                                              ): void;
                                                          }

                                                          Hierarchy (View Summary)

                                                          Index

                                                          Properties

                                                          Methods

                                                          addEventListener diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/CachingTask.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/CachingTask.html index a8d2721fe81c..5a19b63f93a0 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/CachingTask.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/CachingTask.html @@ -1,5 +1,5 @@ CachingTask | THEOplayer Web SDK
                                                          THEOplayer Web SDK
                                                            Preparing search index...

                                                            Interface CachingTask

                                                            Represents a caching task.

                                                            -
                                                            interface CachingTask {
                                                                bytes: number;
                                                                bytesCached: number;
                                                                cached: TimeRanges;
                                                                duration: number;
                                                                id: string;
                                                                license: CachingTaskLicense;
                                                                parameters: CachingTaskParameters;
                                                                percentageCached: number;
                                                                secondsCached: number;
                                                                source: SourceDescription;
                                                                status: CacheTaskStatus;
                                                                addEventListener<TType extends keyof CachingTaskEventMap>(
                                                                    type: TType | readonly TType[],
                                                                    listener: EventListener<CachingTaskEventMap[TType]>,
                                                                ): void;
                                                                pause(): void;
                                                                remove(): void;
                                                                removeEventListener<TType extends keyof CachingTaskEventMap>(
                                                                    type: TType | readonly TType[],
                                                                    listener: EventListener<CachingTaskEventMap[TType]>,
                                                                ): void;
                                                                start(): void;
                                                            }

                                                            Hierarchy (View Summary)

                                                            Index

                                                            Properties

                                                            interface CachingTask {
                                                                bytes: number;
                                                                bytesCached: number;
                                                                cached: TimeRanges;
                                                                duration: number;
                                                                id: string;
                                                                license: CachingTaskLicense;
                                                                parameters: CachingTaskParameters;
                                                                percentageCached: number;
                                                                secondsCached: number;
                                                                source: SourceDescription;
                                                                status: CacheTaskStatus;
                                                                addEventListener<TType extends keyof CachingTaskEventMap>(
                                                                    type: TType | readonly TType[],
                                                                    listener: EventListener<CachingTaskEventMap[TType]>,
                                                                ): void;
                                                                pause(): void;
                                                                remove(): void;
                                                                removeEventListener<TType extends keyof CachingTaskEventMap>(
                                                                    type: TType | readonly TType[],
                                                                    listener: EventListener<CachingTaskEventMap[TType]>,
                                                                ): void;
                                                                start(): void;
                                                            }

                                                            Hierarchy (View Summary)

                                                            Index

                                                            Properties

                                                            bytes bytesCached cached duration diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/CachingTaskList.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/CachingTaskList.html index 904d056bbb56..1d16e0b8f4ac 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/CachingTaskList.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/CachingTaskList.html @@ -1,5 +1,5 @@ CachingTaskList | THEOplayer Web SDK
                                                            THEOplayer Web SDK
                                                              Preparing search index...

                                                              Interface CachingTaskList

                                                              List of caching tasks.

                                                              -
                                                              interface CachingTaskList {
                                                                  length: number;
                                                                  addEventListener<TType extends keyof CachingTaskListEventMap>(
                                                                      type: TType | readonly TType[],
                                                                      listener: EventListener<CachingTaskListEventMap[TType]>,
                                                                  ): void;
                                                                  item(index: number): undefined | CachingTask;
                                                                  removeEventListener<TType extends keyof CachingTaskListEventMap>(
                                                                      type: TType | readonly TType[],
                                                                      listener: EventListener<CachingTaskListEventMap[TType]>,
                                                                  ): void;
                                                                  [index: number]: CachingTask;
                                                              }

                                                              Hierarchy (View Summary)

                                                              Indexable

                                                              • [index: number]: CachingTask

                                                                The object representing the nth in the list.

                                                                +
                                                              interface CachingTaskList {
                                                                  length: number;
                                                                  addEventListener<TType extends keyof CachingTaskListEventMap>(
                                                                      type: TType | readonly TType[],
                                                                      listener: EventListener<CachingTaskListEventMap[TType]>,
                                                                  ): void;
                                                                  item(index: number): undefined | CachingTask;
                                                                  removeEventListener<TType extends keyof CachingTaskListEventMap>(
                                                                      type: TType | readonly TType[],
                                                                      listener: EventListener<CachingTaskListEventMap[TType]>,
                                                                  ): void;
                                                                  [index: number]: CachingTask;
                                                              }

                                                              Hierarchy (View Summary)

                                                              Indexable

                                                              • [index: number]: CachingTask

                                                                The object representing the nth in the list.

                                                              Index

                                                              Properties

                                                              Methods

                                                              addEventListener item diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/CanPlayEvent.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/CanPlayEvent.html index 803d8a345a63..85089bc27fca 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/CanPlayEvent.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/CanPlayEvent.html @@ -1,5 +1,5 @@ CanPlayEvent | THEOplayer Web SDK
                                                              THEOplayer Web SDK
                                                                Preparing search index...

                                                                Interface CanPlayEvent

                                                                Fired when the player can resume playback of the media data.

                                                                -
                                                                interface CanPlayEvent {
                                                                    currentTime: number;
                                                                    date: Date;
                                                                    readyState: number;
                                                                    type: "canplay";
                                                                }

                                                                Hierarchy (View Summary)

                                                                • Event<"canplay">
                                                                  • CanPlayEvent
                                                                Index

                                                                Properties

                                                                interface CanPlayEvent {
                                                                    currentTime: number;
                                                                    date: Date;
                                                                    readyState: number;
                                                                    type: "canplay";
                                                                }

                                                                Hierarchy (View Summary)

                                                                • Event<"canplay">
                                                                  • CanPlayEvent
                                                                Index

                                                                Properties

                                                                currentTime date readyState type diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/CanPlayThroughEvent.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/CanPlayThroughEvent.html index 8d3f6769c96d..f66c82de9ce3 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/CanPlayThroughEvent.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/CanPlayThroughEvent.html @@ -1,5 +1,5 @@ CanPlayThroughEvent | THEOplayer Web SDK
                                                                THEOplayer Web SDK
                                                                  Preparing search index...

                                                                  Interface CanPlayThroughEvent

                                                                  Fired when the player can resume playback of the media data and buffering is unlikely.

                                                                  -
                                                                  interface CanPlayThroughEvent {
                                                                      currentTime: number;
                                                                      date: Date;
                                                                      readyState: number;
                                                                      type: "canplaythrough";
                                                                  }

                                                                  Hierarchy (View Summary)

                                                                  • Event<"canplaythrough">
                                                                    • CanPlayThroughEvent
                                                                  Index

                                                                  Properties

                                                                  interface CanPlayThroughEvent {
                                                                      currentTime: number;
                                                                      date: Date;
                                                                      readyState: number;
                                                                      type: "canplaythrough";
                                                                  }

                                                                  Hierarchy (View Summary)

                                                                  • Event<"canplaythrough">
                                                                    • CanPlayThroughEvent
                                                                  Index

                                                                  Properties

                                                                  currentTime date readyState type diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/Cast.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/Cast.html index 43b81a753b64..ddda68dbcb25 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/Cast.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/Cast.html @@ -1,5 +1,5 @@ Cast | THEOplayer Web SDK
                                                                  THEOplayer Web SDK
                                                                    Preparing search index...

                                                                    Interface Cast

                                                                    The cast API.

                                                                    -
                                                                    interface Cast {
                                                                        airplay?: AirPlay;
                                                                        casting: boolean;
                                                                        chromecast?: Chromecast;
                                                                        addEventListener<TType extends "castingchange">(
                                                                            type: TType | readonly TType[],
                                                                            listener: EventListener<CastEventMap[TType]>,
                                                                        ): void;
                                                                        removeEventListener<TType extends "castingchange">(
                                                                            type: TType | readonly TType[],
                                                                            listener: EventListener<CastEventMap[TType]>,
                                                                        ): void;
                                                                    }

                                                                    Hierarchy (View Summary)

                                                                    Index

                                                                    Properties

                                                                    interface Cast {
                                                                        airplay?: AirPlay;
                                                                        casting: boolean;
                                                                        chromecast?: Chromecast;
                                                                        addEventListener<TType extends "castingchange">(
                                                                            type: TType | readonly TType[],
                                                                            listener: EventListener<CastEventMap[TType]>,
                                                                        ): void;
                                                                        removeEventListener<TType extends "castingchange">(
                                                                            type: TType | readonly TType[],
                                                                            listener: EventListener<CastEventMap[TType]>,
                                                                        ): void;
                                                                    }

                                                                    Hierarchy (View Summary)

                                                                    Index

                                                                    Properties

                                                                    Methods

                                                                    addEventListener diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/CastStateChangeEvent.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/CastStateChangeEvent.html index 7de29ff975e4..60ef9a367002 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/CastStateChangeEvent.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/CastStateChangeEvent.html @@ -1,5 +1,5 @@ CastStateChangeEvent | THEOplayer Web SDK
                                                                    THEOplayer Web SDK
                                                                      Preparing search index...

                                                                      Interface CastStateChangeEvent

                                                                      Fires when the cast state changes.

                                                                      -
                                                                      interface CastStateChangeEvent {
                                                                          date: Date;
                                                                          state: CastState;
                                                                          type: "statechange";
                                                                      }

                                                                      Hierarchy (View Summary)

                                                                      • Event<"statechange">
                                                                        • CastStateChangeEvent
                                                                      Index

                                                                      Properties

                                                                      interface CastStateChangeEvent {
                                                                          date: Date;
                                                                          state: CastState;
                                                                          type: "statechange";
                                                                      }

                                                                      Hierarchy (View Summary)

                                                                      • Event<"statechange">
                                                                        • CastStateChangeEvent
                                                                      Index

                                                                      Properties

                                                                      Properties

                                                                      date: Date

                                                                      The creation date of the event.

                                                                      diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/CertificateResponse.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/CertificateResponse.html index 320b12ea0f26..ab582491f420 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/CertificateResponse.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/CertificateResponse.html @@ -1,5 +1,5 @@ CertificateResponse | THEOplayer Web SDK
                                                                      THEOplayer Web SDK
                                                                        Preparing search index...

                                                                        Interface CertificateResponse

                                                                        The response of a certificate request.

                                                                        -
                                                                        interface CertificateResponse {
                                                                            body: Uint8Array;
                                                                            headers: { [headerName: string]: string };
                                                                            request: ContentProtectionRequest;
                                                                            status: number;
                                                                            statusText: string;
                                                                            url: string;
                                                                        }

                                                                        Hierarchy (View Summary)

                                                                        Index

                                                                        Properties

                                                                        interface CertificateResponse {
                                                                            body: Uint8Array;
                                                                            headers: { [headerName: string]: string };
                                                                            request: ContentProtectionRequest;
                                                                            status: number;
                                                                            statusText: string;
                                                                            url: string;
                                                                        }

                                                                        Hierarchy (View Summary)

                                                                        Index

                                                                        Properties

                                                                        body headers request status diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/Chromecast.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/Chromecast.html index bede780343be..c1d43bdc0107 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/Chromecast.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/Chromecast.html @@ -1,5 +1,5 @@ Chromecast | THEOplayer Web SDK
                                                                        THEOplayer Web SDK
                                                                          Preparing search index...

                                                                          Interface Chromecast

                                                                          The Chromecast API.

                                                                          -
                                                                          interface Chromecast {
                                                                              casting: boolean;
                                                                              connectionCallback: undefined | ChromecastConnectionCallback;
                                                                              error: undefined | ChromecastError;
                                                                              receiverName: undefined | string;
                                                                              source: undefined | SourceDescription;
                                                                              state: CastState;
                                                                              addEventListener<TType extends StringKeyOf<ChromecastEventMap>>(
                                                                                  type: TType | readonly TType[],
                                                                                  listener: EventListener<ChromecastEventMap[TType]>,
                                                                              ): void;
                                                                              join(): void;
                                                                              leave(): void;
                                                                              removeEventListener<TType extends StringKeyOf<ChromecastEventMap>>(
                                                                                  type: TType | readonly TType[],
                                                                                  listener: EventListener<ChromecastEventMap[TType]>,
                                                                              ): void;
                                                                              start(): void;
                                                                              stop(): void;
                                                                          }

                                                                          Hierarchy (View Summary)

                                                                          Index

                                                                          Properties

                                                                          interface Chromecast {
                                                                              casting: boolean;
                                                                              connectionCallback: undefined | ChromecastConnectionCallback;
                                                                              error: undefined | ChromecastError;
                                                                              receiverName: undefined | string;
                                                                              source: undefined | SourceDescription;
                                                                              state: CastState;
                                                                              addEventListener<TType extends StringKeyOf<ChromecastEventMap>>(
                                                                                  type: TType | readonly TType[],
                                                                                  listener: EventListener<ChromecastEventMap[TType]>,
                                                                              ): void;
                                                                              join(): void;
                                                                              leave(): void;
                                                                              removeEventListener<TType extends StringKeyOf<ChromecastEventMap>>(
                                                                                  type: TType | readonly TType[],
                                                                                  listener: EventListener<ChromecastEventMap[TType]>,
                                                                              ): void;
                                                                              start(): void;
                                                                              stop(): void;
                                                                          }

                                                                          Hierarchy (View Summary)

                                                                          Index

                                                                          Properties

                                                                          casting connectionCallback error receiverName diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ChromecastErrorEvent.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ChromecastErrorEvent.html index 8604d1453918..3b2429c01c51 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ChromecastErrorEvent.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ChromecastErrorEvent.html @@ -1,5 +1,5 @@ ChromecastErrorEvent | THEOplayer Web SDK
                                                                          THEOplayer Web SDK
                                                                            Preparing search index...

                                                                            Interface ChromecastErrorEvent

                                                                            Fired when an error occurs while casting or trying to cast.

                                                                            -
                                                                            interface ChromecastErrorEvent {
                                                                                date: Date;
                                                                                error: ChromecastError;
                                                                                type: "error";
                                                                            }

                                                                            Hierarchy (View Summary)

                                                                            • Event<"error">
                                                                              • ChromecastErrorEvent
                                                                            Index

                                                                            Properties

                                                                            interface ChromecastErrorEvent {
                                                                                date: Date;
                                                                                error: ChromecastError;
                                                                                type: "error";
                                                                            }

                                                                            Hierarchy (View Summary)

                                                                            • Event<"error">
                                                                              • ChromecastErrorEvent
                                                                            Index

                                                                            Properties

                                                                            Properties

                                                                            date: Date

                                                                            The creation date of the event.

                                                                            diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ChromecastEventMap.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ChromecastEventMap.html index a5d5ceda3ca0..d79953efce4b 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ChromecastEventMap.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ChromecastEventMap.html @@ -1,5 +1,5 @@ ChromecastEventMap | THEOplayer Web SDK
                                                                            THEOplayer Web SDK
                                                                              Preparing search index...

                                                                              Interface ChromecastEventMap

                                                                              The events fired by the Chromecast API.

                                                                              -
                                                                              interface ChromecastEventMap {
                                                                                  error: ChromecastErrorEvent;
                                                                                  statechange: CastStateChangeEvent;
                                                                              }

                                                                              Hierarchy (View Summary)

                                                                              Index

                                                                              Properties

                                                                              interface ChromecastEventMap {
                                                                                  error: ChromecastErrorEvent;
                                                                                  statechange: CastStateChangeEvent;
                                                                              }

                                                                              Hierarchy (View Summary)

                                                                              Index

                                                                              Properties

                                                                              Properties

                                                                              Fired when an error occurs while casting or trying to cast.

                                                                              Fired when the state changes.

                                                                              diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ChromecastMetadataDescription.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ChromecastMetadataDescription.html index d914099fad5d..6ed2282a6a71 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ChromecastMetadataDescription.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ChromecastMetadataDescription.html @@ -2,7 +2,7 @@


                                                                              - Available since v2.21.0.
                                                                              - Do not use metadata key images if its value doesn't adhere to ChromecastMetadataImage or string[] (where the strings are image URLs).
                                                                              - All values will be provided with the Media Info's metadata.

                                                                              -
                                                                              interface ChromecastMetadataDescription {
                                                                                  albumArtist?: string;
                                                                                  albumName?: string;
                                                                                  artist?: string;
                                                                                  artistName?: string;
                                                                                  composer?: string;
                                                                                  discNumber?: number;
                                                                                  episode?: number;
                                                                                  episodeNumber?: number;
                                                                                  episodeTitle?: string;
                                                                                  images?: string[] | ChromecastMetadataImage[];
                                                                                  originalAirdate?: string;
                                                                                  releaseDate?: string;
                                                                                  releaseYear?: number;
                                                                                  season?: number;
                                                                                  seasonNumber?: number;
                                                                                  seriesTitle?: string;
                                                                                  songName?: string;
                                                                                  studio?: string;
                                                                                  subtitle?: string;
                                                                                  title?: string;
                                                                                  trackNumber?: number;
                                                                                  type?: ChromecastMetadataType;
                                                                                  [metadataKey: string]: any;
                                                                              }

                                                                              Hierarchy (View Summary)

                                                                              Indexable

                                                                              • [metadataKey: string]: any
                                                                              Index

                                                                              Properties

                                                                              interface ChromecastMetadataDescription {
                                                                                  albumArtist?: string;
                                                                                  albumName?: string;
                                                                                  artist?: string;
                                                                                  artistName?: string;
                                                                                  composer?: string;
                                                                                  discNumber?: number;
                                                                                  episode?: number;
                                                                                  episodeNumber?: number;
                                                                                  episodeTitle?: string;
                                                                                  images?: string[] | ChromecastMetadataImage[];
                                                                                  originalAirdate?: string;
                                                                                  releaseDate?: string;
                                                                                  releaseYear?: number;
                                                                                  season?: number;
                                                                                  seasonNumber?: number;
                                                                                  seriesTitle?: string;
                                                                                  songName?: string;
                                                                                  studio?: string;
                                                                                  subtitle?: string;
                                                                                  title?: string;
                                                                                  trackNumber?: number;
                                                                                  type?: ChromecastMetadataType;
                                                                                  [metadataKey: string]: any;
                                                                              }

                                                                              Hierarchy (View Summary)

                                                                              Indexable

                                                                              • [metadataKey: string]: any
                                                                              Index

                                                                              Properties

                                                                              albumArtist? albumName? artist? artistName? diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ClearkeyKeySystemConfiguration.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ClearkeyKeySystemConfiguration.html index b56b77e46aab..cec8719b3d27 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ClearkeyKeySystemConfiguration.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ClearkeyKeySystemConfiguration.html @@ -1,5 +1,5 @@ ClearkeyKeySystemConfiguration | THEOplayer Web SDK
                                                                              THEOplayer Web SDK
                                                                                Preparing search index...

                                                                                Interface ClearkeyKeySystemConfiguration

                                                                                Describes the ClearKey key system configuration.

                                                                                -
                                                                                interface ClearkeyKeySystemConfiguration {
                                                                                    audioRobustness?: string;
                                                                                    certificate?: string | BufferSource;
                                                                                    distinctiveIdentifier?: "required" | "optional" | "not-allowed";
                                                                                    headers?: { [headerName: string]: string };
                                                                                    keys?: ClearkeyDecryptionKey[];
                                                                                    licenseAcquisitionURL?: string;
                                                                                    persistentState?: "required" | "optional" | "not-allowed";
                                                                                    queryParameters?: { [key: string]: any };
                                                                                    useCredentials?: boolean;
                                                                                    videoRobustness?: string;
                                                                                }

                                                                                Hierarchy (View Summary)

                                                                                Index

                                                                                Properties

                                                                                interface ClearkeyKeySystemConfiguration {
                                                                                    audioRobustness?: string;
                                                                                    certificate?: string | BufferSource;
                                                                                    distinctiveIdentifier?: "required" | "optional" | "not-allowed";
                                                                                    headers?: { [headerName: string]: string };
                                                                                    keys?: ClearkeyDecryptionKey[];
                                                                                    licenseAcquisitionURL?: string;
                                                                                    persistentState?: "required" | "optional" | "not-allowed";
                                                                                    queryParameters?: { [key: string]: any };
                                                                                    useCredentials?: boolean;
                                                                                    videoRobustness?: string;
                                                                                }

                                                                                Hierarchy (View Summary)

                                                                                Index

                                                                                Properties

                                                                                audioRobustness? certificate? distinctiveIdentifier? headers? diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/Clip.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/Clip.html index b56f1e4e1f8a..c66e1bff740f 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/Clip.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/Clip.html @@ -1,5 +1,5 @@ Clip | THEOplayer Web SDK
                                                                                THEOplayer Web SDK
                                                                                  Preparing search index...

                                                                                  Interface Clip

                                                                                  The clip API which can be used to clip the playback window of a source.

                                                                                  -
                                                                                  interface Clip {
                                                                                      endTime: number;
                                                                                      startTime: number;
                                                                                      addEventListener<TType extends "change">(
                                                                                          type: TType | readonly TType[],
                                                                                          listener: EventListener<ClipEventMap[TType]>,
                                                                                      ): void;
                                                                                      removeEventListener<TType extends "change">(
                                                                                          type: TType | readonly TType[],
                                                                                          listener: EventListener<ClipEventMap[TType]>,
                                                                                      ): void;
                                                                                  }

                                                                                  Hierarchy (View Summary)

                                                                                  Index

                                                                                  Properties

                                                                                  interface Clip {
                                                                                      endTime: number;
                                                                                      startTime: number;
                                                                                      addEventListener<TType extends "change">(
                                                                                          type: TType | readonly TType[],
                                                                                          listener: EventListener<ClipEventMap[TType]>,
                                                                                      ): void;
                                                                                      removeEventListener<TType extends "change">(
                                                                                          type: TType | readonly TType[],
                                                                                          listener: EventListener<ClipEventMap[TType]>,
                                                                                      ): void;
                                                                                  }

                                                                                  Hierarchy (View Summary)

                                                                                  Index

                                                                                  Properties

                                                                                  Methods

                                                                                  addEventListener removeEventListener diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ComcastDRMConfiguration.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ComcastDRMConfiguration.html index 5ad1de881074..35133dc94dff 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ComcastDRMConfiguration.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ComcastDRMConfiguration.html @@ -2,7 +2,7 @@
                                                                                  const drmConfiguration = {
                                                                                  integration : 'comcast',
                                                                                  fairplay: {
                                                                                  certificateURL: 'yourComcastCertificateUrl',
                                                                                  licenseAcquisitionURL: 'yourComcastLicenseAcquisitionURL'
                                                                                  }
                                                                                  }
                                                                                  -
                                                                                  interface ComcastDRMConfiguration {
                                                                                      accountId: string;
                                                                                      aes128?: AES128KeySystemConfiguration;
                                                                                      clearkey?: ClearkeyKeySystemConfiguration;
                                                                                      fairplay?: FairPlayKeySystemConfiguration;
                                                                                      integration: "comcast";
                                                                                      integrationParameters?: { [parameterName: string]: any };
                                                                                      playready?: PlayReadyKeySystemConfiguration;
                                                                                      preferredKeySystems?: (KeySystemId | string & {})[];
                                                                                      queryParameters?: { [key: string]: any };
                                                                                      releasePid: string;
                                                                                      token: string;
                                                                                      useOipfDrmAgent?: boolean;
                                                                                      widevine?: KeySystemConfiguration;
                                                                                  }

                                                                                  Hierarchy (View Summary)

                                                                                  Index

                                                                                  Properties

                                                                                  interface ComcastDRMConfiguration {
                                                                                      accountId: string;
                                                                                      aes128?: AES128KeySystemConfiguration;
                                                                                      clearkey?: ClearkeyKeySystemConfiguration;
                                                                                      fairplay?: FairPlayKeySystemConfiguration;
                                                                                      integration: "comcast";
                                                                                      integrationParameters?: { [parameterName: string]: any };
                                                                                      playready?: PlayReadyKeySystemConfiguration;
                                                                                      preferredKeySystems?: (KeySystemId | string & {})[];
                                                                                      queryParameters?: { [key: string]: any };
                                                                                      releasePid: string;
                                                                                      token: string;
                                                                                      useOipfDrmAgent?: boolean;
                                                                                      widevine?: KeySystemConfiguration;
                                                                                  }

                                                                                  Hierarchy (View Summary)

                                                                                  Index

                                                                                  Properties

                                                                                  accountId aes128? clearkey? fairplay? diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ConaxDRMConfiguration.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ConaxDRMConfiguration.html index 96df8303cfe1..fb27b0c0cdc0 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ConaxDRMConfiguration.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ConaxDRMConfiguration.html @@ -7,7 +7,7 @@
                                                                                  const hlsDrmConfiguration = {
                                                                                  integration : 'conax',
                                                                                  fairplay: {
                                                                                  certificateURL: 'yourConaxCertificateURL',
                                                                                  },
                                                                                  token : 'yourConaxToken',
                                                                                  deviceId : 'YourConaxDeviceId'
                                                                                  }
                                                                                  -
                                                                                  interface ConaxDRMConfiguration {
                                                                                      aes128?: AES128KeySystemConfiguration;
                                                                                      clearkey?: ClearkeyKeySystemConfiguration;
                                                                                      deviceId?: string;
                                                                                      fairplay?: FairPlayKeySystemConfiguration;
                                                                                      integration: "conax";
                                                                                      integrationParameters?: { [parameterName: string]: any };
                                                                                      playready?: PlayReadyKeySystemConfiguration;
                                                                                      preferredKeySystems?: (KeySystemId | string & {})[];
                                                                                      queryParameters?: { [key: string]: any };
                                                                                      token?: string;
                                                                                      useOipfDrmAgent?: boolean;
                                                                                      widevine?: KeySystemConfiguration;
                                                                                  }

                                                                                  Hierarchy (View Summary)

                                                                                  Index

                                                                                  Properties

                                                                                  interface ConaxDRMConfiguration {
                                                                                      aes128?: AES128KeySystemConfiguration;
                                                                                      clearkey?: ClearkeyKeySystemConfiguration;
                                                                                      deviceId?: string;
                                                                                      fairplay?: FairPlayKeySystemConfiguration;
                                                                                      integration: "conax";
                                                                                      integrationParameters?: { [parameterName: string]: any };
                                                                                      playready?: PlayReadyKeySystemConfiguration;
                                                                                      preferredKeySystems?: (KeySystemId | string & {})[];
                                                                                      queryParameters?: { [key: string]: any };
                                                                                      token?: string;
                                                                                      useOipfDrmAgent?: boolean;
                                                                                      widevine?: KeySystemConfiguration;
                                                                                  }

                                                                                  Hierarchy (View Summary)

                                                                                  Index

                                                                                  Properties

                                                                                  aes128? clearkey? deviceId? fairplay? diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ContentProtectionErrorEvent.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ContentProtectionErrorEvent.html index cd7940f1a2f0..cc31bddf40fa 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ContentProtectionErrorEvent.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ContentProtectionErrorEvent.html @@ -1,5 +1,5 @@ ContentProtectionErrorEvent | THEOplayer Web SDK
                                                                                  THEOplayer Web SDK
                                                                                    Preparing search index...

                                                                                    Interface ContentProtectionErrorEvent

                                                                                    Fired when an error related to content protection occurs.

                                                                                    -
                                                                                    interface ContentProtectionErrorEvent {
                                                                                        date: Date;
                                                                                        error: string;
                                                                                        errorObject: ContentProtectionError;
                                                                                        licenseAcquisitionMessage?: string;
                                                                                        licenseAcquisitionURL?: string;
                                                                                        status?: number;
                                                                                        statusText?: string;
                                                                                        systemCode?: number;
                                                                                        type: "contentprotectionerror";
                                                                                    }

                                                                                    Hierarchy (View Summary)

                                                                                    • Event<"contentprotectionerror">
                                                                                      • ContentProtectionErrorEvent
                                                                                    Index

                                                                                    Properties

                                                                                    interface ContentProtectionErrorEvent {
                                                                                        date: Date;
                                                                                        error: string;
                                                                                        errorObject: ContentProtectionError;
                                                                                        licenseAcquisitionMessage?: string;
                                                                                        licenseAcquisitionURL?: string;
                                                                                        status?: number;
                                                                                        statusText?: string;
                                                                                        systemCode?: number;
                                                                                        type: "contentprotectionerror";
                                                                                    }

                                                                                    Hierarchy (View Summary)

                                                                                    • Event<"contentprotectionerror">
                                                                                      • ContentProtectionErrorEvent
                                                                                    Index

                                                                                    Properties

                                                                                    date error errorObject licenseAcquisitionMessage? diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ContentProtectionRequest.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ContentProtectionRequest.html index 3a34ef545ebd..489af22aec5a 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ContentProtectionRequest.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ContentProtectionRequest.html @@ -1,5 +1,5 @@ ContentProtectionRequest | THEOplayer Web SDK
                                                                                    THEOplayer Web SDK
                                                                                      Preparing search index...

                                                                                      Interface ContentProtectionRequest

                                                                                      A request, either for a certificate or a license.

                                                                                      -
                                                                                      interface ContentProtectionRequest {
                                                                                          body: null | Uint8Array<ArrayBuffer>;
                                                                                          headers: { [headerName: string]: string };
                                                                                          method: string;
                                                                                          url: string;
                                                                                          useCredentials: boolean;
                                                                                      }

                                                                                      Hierarchy (View Summary)

                                                                                      Index

                                                                                      Properties

                                                                                      interface ContentProtectionRequest {
                                                                                          body: null | Uint8Array<ArrayBuffer>;
                                                                                          headers: { [headerName: string]: string };
                                                                                          method: string;
                                                                                          url: string;
                                                                                          useCredentials: boolean;
                                                                                      }

                                                                                      Hierarchy (View Summary)

                                                                                      Index

                                                                                      Properties

                                                                                      body headers method url diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ContentProtectionResponse.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ContentProtectionResponse.html index 0951265fe6f0..730c2d71bcbc 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ContentProtectionResponse.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ContentProtectionResponse.html @@ -1,5 +1,5 @@ ContentProtectionResponse | THEOplayer Web SDK
                                                                                      THEOplayer Web SDK
                                                                                        Preparing search index...

                                                                                        Interface ContentProtectionResponse

                                                                                        The response, either of a license or for a certificate request.

                                                                                        -
                                                                                        interface ContentProtectionResponse {
                                                                                            body: Uint8Array;
                                                                                            headers: { [headerName: string]: string };
                                                                                            request: ContentProtectionRequest;
                                                                                            status: number;
                                                                                            statusText: string;
                                                                                            url: string;
                                                                                        }

                                                                                        Hierarchy (View Summary)

                                                                                        Index

                                                                                        Properties

                                                                                        interface ContentProtectionResponse {
                                                                                            body: Uint8Array;
                                                                                            headers: { [headerName: string]: string };
                                                                                            request: ContentProtectionRequest;
                                                                                            status: number;
                                                                                            statusText: string;
                                                                                            url: string;
                                                                                        }

                                                                                        Hierarchy (View Summary)

                                                                                        Index

                                                                                        Properties

                                                                                        body headers request status diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ContentSteeringErrorEvent.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ContentSteeringErrorEvent.html new file mode 100644 index 000000000000..5b6fcfc5c08d --- /dev/null +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ContentSteeringErrorEvent.html @@ -0,0 +1,8 @@ +ContentSteeringErrorEvent | THEOplayer Web SDK
                                                                                        THEOplayer Web SDK
                                                                                          Preparing search index...

                                                                                          Interface ContentSteeringErrorEvent

                                                                                          Fired when an error occurs during content steering.

                                                                                          +
                                                                                          interface ContentSteeringErrorEvent {
                                                                                              date: Date;
                                                                                              reason: string;
                                                                                              type: "contentsteeringerror";
                                                                                          }

                                                                                          Hierarchy (View Summary)

                                                                                          • Event<"contentsteeringerror">
                                                                                            • ContentSteeringErrorEvent
                                                                                          Index

                                                                                          Properties

                                                                                          Properties

                                                                                          date: Date

                                                                                          The creation date of the event.

                                                                                          +
                                                                                          reason: string

                                                                                          The reason for the content steering error.

                                                                                          +
                                                                                          type: "contentsteeringerror"

                                                                                          The type of the event.

                                                                                          +
                                                                                          diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ContentSteeringLocationChangeEvent.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ContentSteeringLocationChangeEvent.html new file mode 100644 index 000000000000..5dffbd3221f1 --- /dev/null +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ContentSteeringLocationChangeEvent.html @@ -0,0 +1,8 @@ +ContentSteeringLocationChangeEvent | THEOplayer Web SDK
                                                                                          THEOplayer Web SDK
                                                                                            Preparing search index...

                                                                                            Interface ContentSteeringLocationChangeEvent

                                                                                            Fired when the player chooses a new service location.

                                                                                            +
                                                                                            interface ContentSteeringLocationChangeEvent {
                                                                                                date: Date;
                                                                                                serviceLocation: undefined | string;
                                                                                                type: "contentsteeringlocationchange";
                                                                                            }

                                                                                            Hierarchy (View Summary)

                                                                                            • Event<"contentsteeringlocationchange">
                                                                                              • ContentSteeringLocationChangeEvent
                                                                                            Index

                                                                                            Properties

                                                                                            Properties

                                                                                            date: Date

                                                                                            The creation date of the event.

                                                                                            +
                                                                                            serviceLocation: undefined | string

                                                                                            The new service location.

                                                                                            +
                                                                                            type: "contentsteeringlocationchange"

                                                                                            The type of the event.

                                                                                            +
                                                                                            diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ContentSteeringStartEvent.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ContentSteeringStartEvent.html new file mode 100644 index 000000000000..b5c4cbaf1e9c --- /dev/null +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ContentSteeringStartEvent.html @@ -0,0 +1,6 @@ +ContentSteeringStartEvent | THEOplayer Web SDK
                                                                                            THEOplayer Web SDK
                                                                                              Preparing search index...

                                                                                              Interface ContentSteeringStartEvent

                                                                                              Fired when content steering starts.

                                                                                              +
                                                                                              interface ContentSteeringStartEvent {
                                                                                                  date: Date;
                                                                                                  type: "contentsteeringstart";
                                                                                              }

                                                                                              Hierarchy (View Summary)

                                                                                              • Event<"contentsteeringstart">
                                                                                                • ContentSteeringStartEvent
                                                                                              Index

                                                                                              Properties

                                                                                              Properties

                                                                                              date: Date

                                                                                              The creation date of the event.

                                                                                              +
                                                                                              type: "contentsteeringstart"

                                                                                              The type of the event.

                                                                                              +
                                                                                              diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ContentSteeringStopEvent.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ContentSteeringStopEvent.html new file mode 100644 index 000000000000..22047d9c025b --- /dev/null +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ContentSteeringStopEvent.html @@ -0,0 +1,6 @@ +ContentSteeringStopEvent | THEOplayer Web SDK
                                                                                              THEOplayer Web SDK
                                                                                                Preparing search index...

                                                                                                Interface ContentSteeringStopEvent

                                                                                                Fired when content steering stops.

                                                                                                +
                                                                                                interface ContentSteeringStopEvent {
                                                                                                    date: Date;
                                                                                                    type: "contentsteeringstop";
                                                                                                }

                                                                                                Hierarchy (View Summary)

                                                                                                • Event<"contentsteeringstop">
                                                                                                  • ContentSteeringStopEvent
                                                                                                Index

                                                                                                Properties

                                                                                                Properties

                                                                                                date: Date

                                                                                                The creation date of the event.

                                                                                                +
                                                                                                type: "contentsteeringstop"

                                                                                                The type of the event.

                                                                                                +
                                                                                                diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ContentSteeringUpdateEvent.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ContentSteeringUpdateEvent.html new file mode 100644 index 000000000000..443ef79eac75 --- /dev/null +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ContentSteeringUpdateEvent.html @@ -0,0 +1,8 @@ +ContentSteeringUpdateEvent | THEOplayer Web SDK
                                                                                                THEOplayer Web SDK
                                                                                                  Preparing search index...

                                                                                                  Interface ContentSteeringUpdateEvent

                                                                                                  Fired when the player receives updated service locations from the content steering server.

                                                                                                  +
                                                                                                  interface ContentSteeringUpdateEvent {
                                                                                                      date: Date;
                                                                                                      serviceLocations: string[];
                                                                                                      type: "contentsteeringupdate";
                                                                                                  }

                                                                                                  Hierarchy (View Summary)

                                                                                                  • Event<"contentsteeringupdate">
                                                                                                    • ContentSteeringUpdateEvent
                                                                                                  Index

                                                                                                  Properties

                                                                                                  Properties

                                                                                                  date: Date

                                                                                                  The creation date of the event.

                                                                                                  +
                                                                                                  serviceLocations: string[]

                                                                                                  The new service locations, as they are received from the content steering server.

                                                                                                  +
                                                                                                  type: "contentsteeringupdate"

                                                                                                  The type of the event.

                                                                                                  +
                                                                                                  diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/CsaiAdDescription.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/CsaiAdDescription.html index 5f5b66c2b1d8..9aefa37fd530 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/CsaiAdDescription.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/CsaiAdDescription.html @@ -1,5 +1,5 @@ CsaiAdDescription | THEOplayer Web SDK
                                                                                                  THEOplayer Web SDK
                                                                                                    Preparing search index...

                                                                                                    Interface CsaiAdDescription

                                                                                                    Describes an ad break request.

                                                                                                    -
                                                                                                    interface CsaiAdDescription {
                                                                                                        integration?: "csai" | "theo";
                                                                                                        replaceContent?: boolean;
                                                                                                        skipOffset?: string | number;
                                                                                                        sources: string | AdSource;
                                                                                                        timeOffset?: string | number;
                                                                                                    }

                                                                                                    Hierarchy (View Summary)

                                                                                                    Index

                                                                                                    Properties

                                                                                                    interface CsaiAdDescription {
                                                                                                        integration?: "csai" | "theo";
                                                                                                        replaceContent?: boolean;
                                                                                                        skipOffset?: string | number;
                                                                                                        sources: string | AdSource;
                                                                                                        timeOffset?: string | number;
                                                                                                    }

                                                                                                    Hierarchy (View Summary)

                                                                                                    Index

                                                                                                    Properties

                                                                                                    integration? replaceContent? skipOffset? sources diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/CurrentSourceChangeEvent.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/CurrentSourceChangeEvent.html index 1ad310dbfa0f..f13bcda6364b 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/CurrentSourceChangeEvent.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/CurrentSourceChangeEvent.html @@ -1,5 +1,5 @@ CurrentSourceChangeEvent | THEOplayer Web SDK
                                                                                                    THEOplayer Web SDK
                                                                                                      Preparing search index...

                                                                                                      Interface CurrentSourceChangeEvent

                                                                                                      Fired when the current source, which is chosen from ChromelessPlayer.source.sources, changes.

                                                                                                      -
                                                                                                      interface CurrentSourceChangeEvent {
                                                                                                          currentSource: undefined | TypedSource;
                                                                                                          date: Date;
                                                                                                          type: "currentsourcechange";
                                                                                                      }

                                                                                                      Hierarchy (View Summary)

                                                                                                      • Event<"currentsourcechange">
                                                                                                        • CurrentSourceChangeEvent
                                                                                                      Index

                                                                                                      Properties

                                                                                                      interface CurrentSourceChangeEvent {
                                                                                                          currentSource: undefined | TypedSource;
                                                                                                          date: Date;
                                                                                                          type: "currentsourcechange";
                                                                                                      }

                                                                                                      Hierarchy (View Summary)

                                                                                                      • Event<"currentsourcechange">
                                                                                                        • CurrentSourceChangeEvent
                                                                                                      Index

                                                                                                      Properties

                                                                                                      currentSource: undefined | TypedSource

                                                                                                      The player's new current source.

                                                                                                      diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/CustomWebVTTTextTrack.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/CustomWebVTTTextTrack.html index fc2988e0293c..ed90e4a60299 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/CustomWebVTTTextTrack.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/CustomWebVTTTextTrack.html @@ -1,5 +1,5 @@ CustomWebVTTTextTrack | THEOplayer Web SDK
                                                                                                      THEOplayer Web SDK
                                                                                                        Preparing search index...

                                                                                                        Interface CustomWebVTTTextTrack

                                                                                                        Represents a text track of a media resource that can be filled with cues during playback.

                                                                                                        -
                                                                                                        interface CustomWebVTTTextTrack {
                                                                                                            accessibility: AccessibilityRole[];
                                                                                                            activeCues: null | TextTrackCueList;
                                                                                                            cues: null | TextTrackCueList;
                                                                                                            forced: boolean;
                                                                                                            id: string;
                                                                                                            inBandMetadataTrackDispatchType: string;
                                                                                                            kind: string;
                                                                                                            label: string;
                                                                                                            language: string;
                                                                                                            mode: string;
                                                                                                            readyState: TextTrackReadyState;
                                                                                                            src: string;
                                                                                                            type: "webvtt";
                                                                                                            uid: number;
                                                                                                            addCue(startTime: number, endTime: number, content: string): WebVTTCue;
                                                                                                            addEventListener<TType extends StringKeyOf<TextTrackEventMap>>(
                                                                                                                type: TType | readonly TType[],
                                                                                                                listener: EventListener<TextTrackEventMap[TType]>,
                                                                                                            ): void;
                                                                                                            removeCue(cue: WebVTTCue): void;
                                                                                                            removeEventListener<TType extends StringKeyOf<TextTrackEventMap>>(
                                                                                                                type: TType | readonly TType[],
                                                                                                                listener: EventListener<TextTrackEventMap[TType]>,
                                                                                                            ): void;
                                                                                                        }

                                                                                                        Hierarchy (View Summary)

                                                                                                        Index

                                                                                                        Properties

                                                                                                        interface CustomWebVTTTextTrack {
                                                                                                            accessibility: AccessibilityRole[];
                                                                                                            activeCues: null | TextTrackCueList;
                                                                                                            cues: null | TextTrackCueList;
                                                                                                            forced: boolean;
                                                                                                            id: string;
                                                                                                            inBandMetadataTrackDispatchType: string;
                                                                                                            kind: string;
                                                                                                            label: string;
                                                                                                            language: string;
                                                                                                            mode: string;
                                                                                                            readyState: TextTrackReadyState;
                                                                                                            src: string;
                                                                                                            type: "webvtt";
                                                                                                            uid: number;
                                                                                                            addCue(startTime: number, endTime: number, content: string): WebVTTCue;
                                                                                                            addEventListener<TType extends StringKeyOf<TextTrackEventMap>>(
                                                                                                                type: TType | readonly TType[],
                                                                                                                listener: EventListener<TextTrackEventMap[TType]>,
                                                                                                            ): void;
                                                                                                            removeCue(cue: WebVTTCue): void;
                                                                                                            removeEventListener<TType extends StringKeyOf<TextTrackEventMap>>(
                                                                                                                type: TType | readonly TType[],
                                                                                                                listener: EventListener<TextTrackEventMap[TType]>,
                                                                                                            ): void;
                                                                                                        }

                                                                                                        Hierarchy (View Summary)

                                                                                                        Index

                                                                                                        Properties

                                                                                                        accessibility activeCues cues forced diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/DRMConfiguration.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/DRMConfiguration.html index 55a054713f82..aedb5a3d8b91 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/DRMConfiguration.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/DRMConfiguration.html @@ -1,5 +1,5 @@ DRMConfiguration | THEOplayer Web SDK
                                                                                                        THEOplayer Web SDK
                                                                                                          Preparing search index...

                                                                                                          Interface DRMConfiguration

                                                                                                          Describes the configuration of the DRM.

                                                                                                          -
                                                                                                          interface DRMConfiguration {
                                                                                                              aes128?: AES128KeySystemConfiguration;
                                                                                                              clearkey?: ClearkeyKeySystemConfiguration;
                                                                                                              fairplay?: FairPlayKeySystemConfiguration;
                                                                                                              integration?: string;
                                                                                                              integrationParameters?: { [parameterName: string]: any };
                                                                                                              playready?: PlayReadyKeySystemConfiguration;
                                                                                                              preferredKeySystems?: (KeySystemId | string & {})[];
                                                                                                              queryParameters?: { [key: string]: any };
                                                                                                              useOipfDrmAgent?: boolean;
                                                                                                              widevine?: KeySystemConfiguration;
                                                                                                          }

                                                                                                          Hierarchy (View Summary)

                                                                                                          Index

                                                                                                          Properties

                                                                                                          interface DRMConfiguration {
                                                                                                              aes128?: AES128KeySystemConfiguration;
                                                                                                              clearkey?: ClearkeyKeySystemConfiguration;
                                                                                                              fairplay?: FairPlayKeySystemConfiguration;
                                                                                                              integration?: string;
                                                                                                              integrationParameters?: { [parameterName: string]: any };
                                                                                                              playready?: PlayReadyKeySystemConfiguration;
                                                                                                              preferredKeySystems?: (KeySystemId | string & {})[];
                                                                                                              queryParameters?: { [key: string]: any };
                                                                                                              useOipfDrmAgent?: boolean;
                                                                                                              widevine?: KeySystemConfiguration;
                                                                                                          }

                                                                                                          Hierarchy (View Summary)

                                                                                                          Index

                                                                                                          Properties

                                                                                                          aes128? clearkey? fairplay? integration? diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/DRMTodayDRMConfiguration.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/DRMTodayDRMConfiguration.html index 6bed254959e3..b6d97244bd32 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/DRMTodayDRMConfiguration.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/DRMTodayDRMConfiguration.html @@ -1,5 +1,5 @@ DRMTodayDRMConfiguration | THEOplayer Web SDK
                                                                                                          THEOplayer Web SDK
                                                                                                            Preparing search index...

                                                                                                            Interface DRMTodayDRMConfiguration

                                                                                                            Describes the configuration of the DRM Today DRM integration.

                                                                                                            -
                                                                                                            interface DRMTodayDRMConfiguration {
                                                                                                                aes128?: AES128KeySystemConfiguration;
                                                                                                                clearkey?: ClearkeyKeySystemConfiguration;
                                                                                                                fairplay?: FairPlayKeySystemConfiguration;
                                                                                                                integration: "drmtoday";
                                                                                                                integrationParameters?: { [parameterName: string]: any };
                                                                                                                merchant?: string;
                                                                                                                playready?: PlayReadyKeySystemConfiguration;
                                                                                                                preferredKeySystems?: (KeySystemId | string & {})[];
                                                                                                                queryParameters?: { [key: string]: any };
                                                                                                                sessionId?: string;
                                                                                                                token?: string;
                                                                                                                useOipfDrmAgent?: boolean;
                                                                                                                userId?: string;
                                                                                                                widevine?: KeySystemConfiguration;
                                                                                                            }

                                                                                                            Hierarchy (View Summary)

                                                                                                            Index

                                                                                                            Properties

                                                                                                            interface DRMTodayDRMConfiguration {
                                                                                                                aes128?: AES128KeySystemConfiguration;
                                                                                                                clearkey?: ClearkeyKeySystemConfiguration;
                                                                                                                fairplay?: FairPlayKeySystemConfiguration;
                                                                                                                integration: "drmtoday";
                                                                                                                integrationParameters?: { [parameterName: string]: any };
                                                                                                                merchant?: string;
                                                                                                                playready?: PlayReadyKeySystemConfiguration;
                                                                                                                preferredKeySystems?: (KeySystemId | string & {})[];
                                                                                                                queryParameters?: { [key: string]: any };
                                                                                                                sessionId?: string;
                                                                                                                token?: string;
                                                                                                                useOipfDrmAgent?: boolean;
                                                                                                                userId?: string;
                                                                                                                widevine?: KeySystemConfiguration;
                                                                                                            }

                                                                                                            Hierarchy (View Summary)

                                                                                                            Index

                                                                                                            Properties

                                                                                                            aes128? clearkey? fairplay? integration diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/DateRangeCue.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/DateRangeCue.html index c2443179ee92..07378bffe821 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/DateRangeCue.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/DateRangeCue.html @@ -1,5 +1,5 @@ DateRangeCue | THEOplayer Web SDK
                                                                                                            THEOplayer Web SDK
                                                                                                              Preparing search index...

                                                                                                              Interface DateRangeCue

                                                                                                              Represents a cue of a HLS date range metadata text track.

                                                                                                              -
                                                                                                              interface DateRangeCue {
                                                                                                                  class: undefined | string;
                                                                                                                  content: any;
                                                                                                                  customAttributes: Record<string, string | number | ArrayBuffer>;
                                                                                                                  duration: undefined | number;
                                                                                                                  endDate: undefined | Date;
                                                                                                                  endOnNext: boolean;
                                                                                                                  endTime: number;
                                                                                                                  id: string;
                                                                                                                  plannedDuration: undefined | number;
                                                                                                                  scte35Cmd: undefined | ArrayBuffer;
                                                                                                                  scte35In: undefined | ArrayBuffer;
                                                                                                                  scte35Out: undefined | ArrayBuffer;
                                                                                                                  startDate: Date;
                                                                                                                  startTime: number;
                                                                                                                  track: TextTrack;
                                                                                                                  uid: number;
                                                                                                                  addEventListener<TType extends keyof TextTrackCueEventMap>(
                                                                                                                      type: TType | readonly TType[],
                                                                                                                      listener: EventListener<TextTrackCueEventMap[TType]>,
                                                                                                                  ): void;
                                                                                                                  removeEventListener<TType extends keyof TextTrackCueEventMap>(
                                                                                                                      type: TType | readonly TType[],
                                                                                                                      listener: EventListener<TextTrackCueEventMap[TType]>,
                                                                                                                  ): void;
                                                                                                              }

                                                                                                              Hierarchy (View Summary)

                                                                                                              Index

                                                                                                              Properties

                                                                                                              interface DateRangeCue {
                                                                                                                  class: undefined | string;
                                                                                                                  content: any;
                                                                                                                  customAttributes: Record<string, string | number | ArrayBuffer>;
                                                                                                                  duration: undefined | number;
                                                                                                                  endDate: undefined | Date;
                                                                                                                  endOnNext: boolean;
                                                                                                                  endTime: number;
                                                                                                                  id: string;
                                                                                                                  plannedDuration: undefined | number;
                                                                                                                  scte35Cmd: undefined | ArrayBuffer;
                                                                                                                  scte35In: undefined | ArrayBuffer;
                                                                                                                  scte35Out: undefined | ArrayBuffer;
                                                                                                                  startDate: Date;
                                                                                                                  startTime: number;
                                                                                                                  track: TextTrack;
                                                                                                                  uid: number;
                                                                                                                  addEventListener<TType extends keyof TextTrackCueEventMap>(
                                                                                                                      type: TType | readonly TType[],
                                                                                                                      listener: EventListener<TextTrackCueEventMap[TType]>,
                                                                                                                  ): void;
                                                                                                                  removeEventListener<TType extends keyof TextTrackCueEventMap>(
                                                                                                                      type: TType | readonly TType[],
                                                                                                                      listener: EventListener<TextTrackCueEventMap[TType]>,
                                                                                                                  ): void;
                                                                                                              }

                                                                                                              Hierarchy (View Summary)

                                                                                                              Index

                                                                                                              Properties

                                                                                                              class content customAttributes duration diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/DeviceBasedTitaniumDRMConfiguration.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/DeviceBasedTitaniumDRMConfiguration.html index b57eca847a12..a03f249898a5 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/DeviceBasedTitaniumDRMConfiguration.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/DeviceBasedTitaniumDRMConfiguration.html @@ -1,5 +1,5 @@ DeviceBasedTitaniumDRMConfiguration | THEOplayer Web SDK
                                                                                                              THEOplayer Web SDK
                                                                                                                Preparing search index...

                                                                                                                Interface DeviceBasedTitaniumDRMConfiguration

                                                                                                                Describes the configuration of the Titanium DRM integration with device-based authentication.

                                                                                                                -
                                                                                                                interface DeviceBasedTitaniumDRMConfiguration {
                                                                                                                    accountName: string;
                                                                                                                    aes128?: AES128KeySystemConfiguration;
                                                                                                                    authToken?: undefined;
                                                                                                                    clearkey?: ClearkeyKeySystemConfiguration;
                                                                                                                    customerName: string;
                                                                                                                    fairplay?: FairPlayKeySystemConfiguration;
                                                                                                                    friendlyName: string;
                                                                                                                    integration: "titanium";
                                                                                                                    integrationParameters?: { [parameterName: string]: any };
                                                                                                                    playready?: PlayReadyKeySystemConfiguration;
                                                                                                                    portalId: string;
                                                                                                                    preferredKeySystems?: (KeySystemId | string & {})[];
                                                                                                                    queryParameters?: { [key: string]: any };
                                                                                                                    useOipfDrmAgent?: boolean;
                                                                                                                    version?: "2" | "3";
                                                                                                                    widevine?: KeySystemConfiguration;
                                                                                                                }

                                                                                                                Hierarchy (View Summary)

                                                                                                                Index

                                                                                                                Properties

                                                                                                                interface DeviceBasedTitaniumDRMConfiguration {
                                                                                                                    accountName: string;
                                                                                                                    aes128?: AES128KeySystemConfiguration;
                                                                                                                    authToken?: undefined;
                                                                                                                    clearkey?: ClearkeyKeySystemConfiguration;
                                                                                                                    customerName: string;
                                                                                                                    fairplay?: FairPlayKeySystemConfiguration;
                                                                                                                    friendlyName: string;
                                                                                                                    integration: "titanium";
                                                                                                                    integrationParameters?: { [parameterName: string]: any };
                                                                                                                    playready?: PlayReadyKeySystemConfiguration;
                                                                                                                    portalId: string;
                                                                                                                    preferredKeySystems?: (KeySystemId | string & {})[];
                                                                                                                    queryParameters?: { [key: string]: any };
                                                                                                                    useOipfDrmAgent?: boolean;
                                                                                                                    version?: "2" | "3";
                                                                                                                    widevine?: KeySystemConfiguration;
                                                                                                                }

                                                                                                                Hierarchy (View Summary)

                                                                                                                Index

                                                                                                                Properties

                                                                                                                accountName aes128? authToken? clearkey? diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/DimensionChangeEvent.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/DimensionChangeEvent.html index 898c20fc5093..6aabbe8b6e01 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/DimensionChangeEvent.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/DimensionChangeEvent.html @@ -1,5 +1,5 @@ DimensionChangeEvent | THEOplayer Web SDK
                                                                                                                THEOplayer Web SDK
                                                                                                                  Preparing search index...

                                                                                                                  Interface DimensionChangeEvent

                                                                                                                  Fired when the dimensions of the HTML element changes.

                                                                                                                  -
                                                                                                                  interface DimensionChangeEvent {
                                                                                                                      date: Date;
                                                                                                                      height: number;
                                                                                                                      type: "dimensionchange";
                                                                                                                      width: number;
                                                                                                                  }

                                                                                                                  Hierarchy (View Summary)

                                                                                                                  • Event<"dimensionchange">
                                                                                                                    • DimensionChangeEvent
                                                                                                                  Index

                                                                                                                  Properties

                                                                                                                  interface DimensionChangeEvent {
                                                                                                                      date: Date;
                                                                                                                      height: number;
                                                                                                                      type: "dimensionchange";
                                                                                                                      width: number;
                                                                                                                  }

                                                                                                                  Hierarchy (View Summary)

                                                                                                                  • Event<"dimensionchange">
                                                                                                                    • DimensionChangeEvent
                                                                                                                  Index

                                                                                                                  Properties

                                                                                                                  date height type width diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/DistributionLoadStartEvent.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/DistributionLoadStartEvent.html index b8b0920fbd49..fa6afd9e09dc 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/DistributionLoadStartEvent.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/DistributionLoadStartEvent.html @@ -1,5 +1,5 @@ DistributionLoadStartEvent | THEOplayer Web SDK
                                                                                                                  THEOplayer Web SDK
                                                                                                                    Preparing search index...

                                                                                                                    Interface DistributionLoadStartEvent

                                                                                                                    Fired when the loading of a THEOlive distribution starts.

                                                                                                                    -
                                                                                                                    interface DistributionLoadStartEvent {
                                                                                                                        date: Date;
                                                                                                                        distributionId: string;
                                                                                                                        type: "distributionloadstart";
                                                                                                                    }

                                                                                                                    Hierarchy (View Summary)

                                                                                                                    • Event<"distributionloadstart">
                                                                                                                      • DistributionLoadStartEvent
                                                                                                                    Index

                                                                                                                    Properties

                                                                                                                    interface DistributionLoadStartEvent {
                                                                                                                        date: Date;
                                                                                                                        distributionId: string;
                                                                                                                        type: "distributionloadstart";
                                                                                                                    }

                                                                                                                    Hierarchy (View Summary)

                                                                                                                    • Event<"distributionloadstart">
                                                                                                                      • DistributionLoadStartEvent
                                                                                                                    Index

                                                                                                                    Properties

                                                                                                                    date: Date

                                                                                                                    The creation date of the event.

                                                                                                                    diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/DistributionOfflineEvent.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/DistributionOfflineEvent.html index 892d5e0e1799..6cdf9038714c 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/DistributionOfflineEvent.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/DistributionOfflineEvent.html @@ -1,5 +1,5 @@ DistributionOfflineEvent | THEOplayer Web SDK
                                                                                                                    THEOplayer Web SDK
                                                                                                                      Preparing search index...

                                                                                                                      Interface DistributionOfflineEvent

                                                                                                                      Fired when loading a THEOlive distribution that cannot be played, for example because the publication is stopped or is still starting up.

                                                                                                                      -
                                                                                                                      interface DistributionOfflineEvent {
                                                                                                                          date: Date;
                                                                                                                          distributionId: string;
                                                                                                                          type: "distributionoffline";
                                                                                                                      }

                                                                                                                      Hierarchy (View Summary)

                                                                                                                      • Event<"distributionoffline">
                                                                                                                        • DistributionOfflineEvent
                                                                                                                      Index

                                                                                                                      Properties

                                                                                                                      interface DistributionOfflineEvent {
                                                                                                                          date: Date;
                                                                                                                          distributionId: string;
                                                                                                                          type: "distributionoffline";
                                                                                                                      }

                                                                                                                      Hierarchy (View Summary)

                                                                                                                      • Event<"distributionoffline">
                                                                                                                        • DistributionOfflineEvent
                                                                                                                      Index

                                                                                                                      Properties

                                                                                                                      date: Date

                                                                                                                      The creation date of the event.

                                                                                                                      diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/DurationChangeEvent.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/DurationChangeEvent.html index 52006a2f9afe..0875cb99bc6b 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/DurationChangeEvent.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/DurationChangeEvent.html @@ -1,5 +1,5 @@ DurationChangeEvent | THEOplayer Web SDK
                                                                                                                      THEOplayer Web SDK
                                                                                                                        Preparing search index...

                                                                                                                        Interface DurationChangeEvent

                                                                                                                        Fired when ChromelessPlayer.duration changes.

                                                                                                                        -
                                                                                                                        interface DurationChangeEvent {
                                                                                                                            date: Date;
                                                                                                                            duration: number;
                                                                                                                            type: "durationchange";
                                                                                                                        }

                                                                                                                        Hierarchy (View Summary)

                                                                                                                        • Event<"durationchange">
                                                                                                                          • DurationChangeEvent
                                                                                                                        Index

                                                                                                                        Properties

                                                                                                                        interface DurationChangeEvent {
                                                                                                                            date: Date;
                                                                                                                            duration: number;
                                                                                                                            type: "durationchange";
                                                                                                                        }

                                                                                                                        Hierarchy (View Summary)

                                                                                                                        • Event<"durationchange">
                                                                                                                          • DurationChangeEvent
                                                                                                                        Index

                                                                                                                        Properties

                                                                                                                        Properties

                                                                                                                        date: Date

                                                                                                                        The creation date of the event.

                                                                                                                        diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/EmptiedEvent.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/EmptiedEvent.html index bf2871b7ec2c..60e0ba2ca78c 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/EmptiedEvent.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/EmptiedEvent.html @@ -1,5 +1,5 @@ EmptiedEvent | THEOplayer Web SDK
                                                                                                                        THEOplayer Web SDK
                                                                                                                          Preparing search index...

                                                                                                                          Interface EmptiedEvent

                                                                                                                          Fired when the player's source is cleared.

                                                                                                                          -
                                                                                                                          interface EmptiedEvent {
                                                                                                                              currentTime: number;
                                                                                                                              date: Date;
                                                                                                                              readyState: number;
                                                                                                                              type: "emptied";
                                                                                                                          }

                                                                                                                          Hierarchy (View Summary)

                                                                                                                          • Event<"emptied">
                                                                                                                            • EmptiedEvent
                                                                                                                          Index

                                                                                                                          Properties

                                                                                                                          interface EmptiedEvent {
                                                                                                                              currentTime: number;
                                                                                                                              date: Date;
                                                                                                                              readyState: number;
                                                                                                                              type: "emptied";
                                                                                                                          }

                                                                                                                          Hierarchy (View Summary)

                                                                                                                          • Event<"emptied">
                                                                                                                            • EmptiedEvent
                                                                                                                          Index

                                                                                                                          Properties

                                                                                                                          currentTime date readyState type diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/EmsgCue.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/EmsgCue.html index 49970b1224ba..5168fe4f3bcd 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/EmsgCue.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/EmsgCue.html @@ -1,5 +1,5 @@ EmsgCue | THEOplayer Web SDK
                                                                                                                          THEOplayer Web SDK
                                                                                                                            Preparing search index...

                                                                                                                            Interface EmsgCue

                                                                                                                            Represents a cue of an emsg metadata text track.

                                                                                                                            -
                                                                                                                            interface EmsgCue {
                                                                                                                                content: any;
                                                                                                                                emsgID: number;
                                                                                                                                endTime: number;
                                                                                                                                id: string;
                                                                                                                                schemeIDURI: string;
                                                                                                                                startTime: number;
                                                                                                                                track: TextTrack;
                                                                                                                                uid: number;
                                                                                                                                value: string;
                                                                                                                                addEventListener<TType extends keyof TextTrackCueEventMap>(
                                                                                                                                    type: TType | readonly TType[],
                                                                                                                                    listener: EventListener<TextTrackCueEventMap[TType]>,
                                                                                                                                ): void;
                                                                                                                                removeEventListener<TType extends keyof TextTrackCueEventMap>(
                                                                                                                                    type: TType | readonly TType[],
                                                                                                                                    listener: EventListener<TextTrackCueEventMap[TType]>,
                                                                                                                                ): void;
                                                                                                                            }

                                                                                                                            Hierarchy (View Summary)

                                                                                                                            Index

                                                                                                                            Properties

                                                                                                                            interface EmsgCue {
                                                                                                                                content: any;
                                                                                                                                emsgID: number;
                                                                                                                                endTime: number;
                                                                                                                                id: string;
                                                                                                                                schemeIDURI: string;
                                                                                                                                startTime: number;
                                                                                                                                track: TextTrack;
                                                                                                                                uid: number;
                                                                                                                                value: string;
                                                                                                                                addEventListener<TType extends keyof TextTrackCueEventMap>(
                                                                                                                                    type: TType | readonly TType[],
                                                                                                                                    listener: EventListener<TextTrackCueEventMap[TType]>,
                                                                                                                                ): void;
                                                                                                                                removeEventListener<TType extends keyof TextTrackCueEventMap>(
                                                                                                                                    type: TType | readonly TType[],
                                                                                                                                    listener: EventListener<TextTrackCueEventMap[TType]>,
                                                                                                                                ): void;
                                                                                                                            }

                                                                                                                            Hierarchy (View Summary)

                                                                                                                            Index

                                                                                                                            Properties

                                                                                                                            content emsgID endTime id diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/EncryptedEvent.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/EncryptedEvent.html index e643b4da787d..55bea6052bdd 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/EncryptedEvent.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/EncryptedEvent.html @@ -1,5 +1,5 @@ EncryptedEvent | THEOplayer Web SDK
                                                                                                                            THEOplayer Web SDK
                                                                                                                              Preparing search index...

                                                                                                                              Interface EncryptedEvent

                                                                                                                              Fired when the player encounters key system initialization data in the media data.

                                                                                                                              -
                                                                                                                              interface EncryptedEvent {
                                                                                                                                  currentTime: number;
                                                                                                                                  date: Date;
                                                                                                                                  initData: ArrayBuffer;
                                                                                                                                  initDataType: string;
                                                                                                                                  type: "encrypted";
                                                                                                                              }

                                                                                                                              Hierarchy (View Summary)

                                                                                                                              • Event<"encrypted">
                                                                                                                                • EncryptedEvent
                                                                                                                              Index

                                                                                                                              Properties

                                                                                                                              interface EncryptedEvent {
                                                                                                                                  currentTime: number;
                                                                                                                                  date: Date;
                                                                                                                                  initData: ArrayBuffer;
                                                                                                                                  initDataType: string;
                                                                                                                                  type: "encrypted";
                                                                                                                              }

                                                                                                                              Hierarchy (View Summary)

                                                                                                                              • Event<"encrypted">
                                                                                                                                • EncryptedEvent
                                                                                                                              Index

                                                                                                                              Properties

                                                                                                                              currentTime date initData initDataType diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/EndedEvent.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/EndedEvent.html index 6ca4fe792f4d..85b26f57e72d 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/EndedEvent.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/EndedEvent.html @@ -1,5 +1,5 @@ EndedEvent | THEOplayer Web SDK
                                                                                                                              THEOplayer Web SDK
                                                                                                                                Preparing search index...

                                                                                                                                Interface EndedEvent

                                                                                                                                Fired when playback has stopped because the end of the media resource was reached.

                                                                                                                                -
                                                                                                                                interface EndedEvent {
                                                                                                                                    currentTime: number;
                                                                                                                                    date: Date;
                                                                                                                                    type: "ended";
                                                                                                                                }

                                                                                                                                Hierarchy (View Summary)

                                                                                                                                Index

                                                                                                                                Properties

                                                                                                                                interface EndedEvent {
                                                                                                                                    currentTime: number;
                                                                                                                                    date: Date;
                                                                                                                                    type: "ended";
                                                                                                                                }

                                                                                                                                Hierarchy (View Summary)

                                                                                                                                Index

                                                                                                                                Properties

                                                                                                                                Properties

                                                                                                                                currentTime: number

                                                                                                                                The player's current time.

                                                                                                                                diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/EndpointLoadedEvent.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/EndpointLoadedEvent.html index 46aa4414b2ec..2e6c10f8d162 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/EndpointLoadedEvent.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/EndpointLoadedEvent.html @@ -1,6 +1,6 @@ EndpointLoadedEvent | THEOplayer Web SDK
                                                                                                                                THEOplayer Web SDK
                                                                                                                                  Preparing search index...

                                                                                                                                  Interface EndpointLoadedEvent

                                                                                                                                  Fired when the loading of a THEOlive endpoint is complete and playback can start. This event is dispatched on every endpoint load, when an error is encountered and the player recovers by choosing a new one.

                                                                                                                                  -
                                                                                                                                  interface EndpointLoadedEvent {
                                                                                                                                      date: Date;
                                                                                                                                      endpoint: Endpoint;
                                                                                                                                      type: "endpointloaded";
                                                                                                                                  }

                                                                                                                                  Hierarchy (View Summary)

                                                                                                                                  • Event<"endpointloaded">
                                                                                                                                    • EndpointLoadedEvent
                                                                                                                                  Index

                                                                                                                                  Properties

                                                                                                                                  interface EndpointLoadedEvent {
                                                                                                                                      date: Date;
                                                                                                                                      endpoint: Endpoint;
                                                                                                                                      type: "endpointloaded";
                                                                                                                                  }

                                                                                                                                  Hierarchy (View Summary)

                                                                                                                                  • Event<"endpointloaded">
                                                                                                                                    • EndpointLoadedEvent
                                                                                                                                  Index

                                                                                                                                  Properties

                                                                                                                                  Properties

                                                                                                                                  date: Date

                                                                                                                                  The creation date of the event.

                                                                                                                                  diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/EnterBadNetworkModeEvent.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/EnterBadNetworkModeEvent.html index 528cf1800a02..5fdd11c1cde3 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/EnterBadNetworkModeEvent.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/EnterBadNetworkModeEvent.html @@ -1,5 +1,5 @@ EnterBadNetworkModeEvent | THEOplayer Web SDK
                                                                                                                                  THEOplayer Web SDK
                                                                                                                                    Preparing search index...

                                                                                                                                    Interface EnterBadNetworkModeEvent

                                                                                                                                    Fired when the player enters bad network mode.

                                                                                                                                    -
                                                                                                                                    interface EnterBadNetworkModeEvent {
                                                                                                                                        date: Date;
                                                                                                                                        type: "enterbadnetworkmode";
                                                                                                                                    }

                                                                                                                                    Hierarchy (View Summary)

                                                                                                                                    • Event<"enterbadnetworkmode">
                                                                                                                                      • EnterBadNetworkModeEvent
                                                                                                                                    Index

                                                                                                                                    Properties

                                                                                                                                    interface EnterBadNetworkModeEvent {
                                                                                                                                        date: Date;
                                                                                                                                        type: "enterbadnetworkmode";
                                                                                                                                    }

                                                                                                                                    Hierarchy (View Summary)

                                                                                                                                    • Event<"enterbadnetworkmode">
                                                                                                                                      • EnterBadNetworkModeEvent
                                                                                                                                    Index

                                                                                                                                    Properties

                                                                                                                                    Properties

                                                                                                                                    date: Date

                                                                                                                                    The creation date of the event.

                                                                                                                                    type: "enterbadnetworkmode"

                                                                                                                                    The type of the event.

                                                                                                                                    diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/Event.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/Event.html index aa2a3a8e7621..b67e7f06e67f 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/Event.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/Event.html @@ -1,5 +1,5 @@ Event | THEOplayer Web SDK
                                                                                                                                    THEOplayer Web SDK
                                                                                                                                      Preparing search index...

                                                                                                                                      Interface Event<TType>

                                                                                                                                      Fired when an event occurs.

                                                                                                                                      -
                                                                                                                                      interface Event<TType extends string = string> {
                                                                                                                                          date: Date;
                                                                                                                                          type: TType;
                                                                                                                                      }

                                                                                                                                      Type Parameters

                                                                                                                                      • TType extends string = string

                                                                                                                                      Hierarchy (View Summary)

                                                                                                                                      Index

                                                                                                                                      Properties

                                                                                                                                      interface Event<TType extends string = string> {
                                                                                                                                          date: Date;
                                                                                                                                          type: TType;
                                                                                                                                      }

                                                                                                                                      Type Parameters

                                                                                                                                      • TType extends string = string

                                                                                                                                      Hierarchy (View Summary)

                                                                                                                                      Index

                                                                                                                                      Properties

                                                                                                                                      Properties

                                                                                                                                      date: Date

                                                                                                                                      The creation date of the event.

                                                                                                                                      type: TType

                                                                                                                                      The type of the event.

                                                                                                                                      diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/EventStreamCue.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/EventStreamCue.html index e9b50ab5facd..2aef13161588 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/EventStreamCue.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/EventStreamCue.html @@ -1,5 +1,5 @@ EventStreamCue | THEOplayer Web SDK
                                                                                                                                      THEOplayer Web SDK
                                                                                                                                        Preparing search index...

                                                                                                                                        Interface EventStreamCue

                                                                                                                                        Represents a cue of an Event Stream metadata text track.

                                                                                                                                        -
                                                                                                                                        interface EventStreamCue {
                                                                                                                                            attributes: { [attributeName: string]: string };
                                                                                                                                            content: any;
                                                                                                                                            endTime: number;
                                                                                                                                            eventID: string;
                                                                                                                                            id: string;
                                                                                                                                            startTime: number;
                                                                                                                                            track: TextTrack;
                                                                                                                                            uid: number;
                                                                                                                                            addEventListener<TType extends keyof TextTrackCueEventMap>(
                                                                                                                                                type: TType | readonly TType[],
                                                                                                                                                listener: EventListener<TextTrackCueEventMap[TType]>,
                                                                                                                                            ): void;
                                                                                                                                            removeEventListener<TType extends keyof TextTrackCueEventMap>(
                                                                                                                                                type: TType | readonly TType[],
                                                                                                                                                listener: EventListener<TextTrackCueEventMap[TType]>,
                                                                                                                                            ): void;
                                                                                                                                        }

                                                                                                                                        Hierarchy (View Summary)

                                                                                                                                        Index

                                                                                                                                        Properties

                                                                                                                                        interface EventStreamCue {
                                                                                                                                            attributes: { [attributeName: string]: string };
                                                                                                                                            content: any;
                                                                                                                                            endTime: number;
                                                                                                                                            eventID: string;
                                                                                                                                            id: string;
                                                                                                                                            startTime: number;
                                                                                                                                            track: TextTrack;
                                                                                                                                            uid: number;
                                                                                                                                            addEventListener<TType extends keyof TextTrackCueEventMap>(
                                                                                                                                                type: TType | readonly TType[],
                                                                                                                                                listener: EventListener<TextTrackCueEventMap[TType]>,
                                                                                                                                            ): void;
                                                                                                                                            removeEventListener<TType extends keyof TextTrackCueEventMap>(
                                                                                                                                                type: TType | readonly TType[],
                                                                                                                                                listener: EventListener<TextTrackCueEventMap[TType]>,
                                                                                                                                            ): void;
                                                                                                                                        }

                                                                                                                                        Hierarchy (View Summary)

                                                                                                                                        Index

                                                                                                                                        Properties

                                                                                                                                        attributes content endTime eventID diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/EventedList.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/EventedList.html index ca2ef38a451c..9cf695393a82 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/EventedList.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/EventedList.html @@ -1,5 +1,5 @@ EventedList | THEOplayer Web SDK
                                                                                                                                        THEOplayer Web SDK
                                                                                                                                          Preparing search index...

                                                                                                                                          Interface EventedList<T, M>

                                                                                                                                          List of generic items which can dispatch events.

                                                                                                                                          -
                                                                                                                                          interface EventedList<T, M extends EventMap<StringKeyOf<M>>> {
                                                                                                                                              length: number;
                                                                                                                                              addEventListener<TType extends string>(
                                                                                                                                                  type: TType | readonly TType[],
                                                                                                                                                  listener: EventListener<M[TType]>,
                                                                                                                                              ): void;
                                                                                                                                              item(index: number): undefined | T;
                                                                                                                                              removeEventListener<TType extends string>(
                                                                                                                                                  type: TType | readonly TType[],
                                                                                                                                                  listener: EventListener<M[TType]>,
                                                                                                                                              ): void;
                                                                                                                                              [index: number]: T;
                                                                                                                                          }

                                                                                                                                          Type Parameters

                                                                                                                                          Hierarchy (View Summary)

                                                                                                                                          Indexable

                                                                                                                                          • [index: number]: T

                                                                                                                                            The object representing the nth in the list.

                                                                                                                                            +
                                                                                                                                          interface EventedList<T, M extends EventMap<StringKeyOf<M>>> {
                                                                                                                                              length: number;
                                                                                                                                              addEventListener<TType extends string>(
                                                                                                                                                  type: TType | readonly TType[],
                                                                                                                                                  listener: EventListener<M[TType]>,
                                                                                                                                              ): void;
                                                                                                                                              item(index: number): undefined | T;
                                                                                                                                              removeEventListener<TType extends string>(
                                                                                                                                                  type: TType | readonly TType[],
                                                                                                                                                  listener: EventListener<M[TType]>,
                                                                                                                                              ): void;
                                                                                                                                              [index: number]: T;
                                                                                                                                          }

                                                                                                                                          Type Parameters

                                                                                                                                          Hierarchy (View Summary)

                                                                                                                                          Indexable

                                                                                                                                          • [index: number]: T

                                                                                                                                            The object representing the nth in the list.

                                                                                                                                          Index

                                                                                                                                          Properties

                                                                                                                                          Methods

                                                                                                                                          addEventListener item diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ExitBadNetworkModeEvent.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ExitBadNetworkModeEvent.html index 10f756ec7821..f855f2a733ac 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ExitBadNetworkModeEvent.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ExitBadNetworkModeEvent.html @@ -1,5 +1,5 @@ ExitBadNetworkModeEvent | THEOplayer Web SDK
                                                                                                                                          THEOplayer Web SDK
                                                                                                                                            Preparing search index...

                                                                                                                                            Interface ExitBadNetworkModeEvent

                                                                                                                                            Fired when the player exits bad network mode.

                                                                                                                                            -
                                                                                                                                            interface ExitBadNetworkModeEvent {
                                                                                                                                                date: Date;
                                                                                                                                                type: "exitbadnetworkmode";
                                                                                                                                            }

                                                                                                                                            Hierarchy (View Summary)

                                                                                                                                            • Event<"exitbadnetworkmode">
                                                                                                                                              • ExitBadNetworkModeEvent
                                                                                                                                            Index

                                                                                                                                            Properties

                                                                                                                                            interface ExitBadNetworkModeEvent {
                                                                                                                                                date: Date;
                                                                                                                                                type: "exitbadnetworkmode";
                                                                                                                                            }

                                                                                                                                            Hierarchy (View Summary)

                                                                                                                                            • Event<"exitbadnetworkmode">
                                                                                                                                              • ExitBadNetworkModeEvent
                                                                                                                                            Index

                                                                                                                                            Properties

                                                                                                                                            Properties

                                                                                                                                            date: Date

                                                                                                                                            The creation date of the event.

                                                                                                                                            type: "exitbadnetworkmode"

                                                                                                                                            The type of the event.

                                                                                                                                            diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ExpressPlayDRMConfiguration.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ExpressPlayDRMConfiguration.html index 9c3363cc5847..a85866037c77 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ExpressPlayDRMConfiguration.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ExpressPlayDRMConfiguration.html @@ -1,5 +1,5 @@ ExpressPlayDRMConfiguration | THEOplayer Web SDK
                                                                                                                                            THEOplayer Web SDK
                                                                                                                                              Preparing search index...

                                                                                                                                              Interface ExpressPlayDRMConfiguration

                                                                                                                                              Describes the configuration of the ExpressPlay DRM integration.

                                                                                                                                              -
                                                                                                                                              interface ExpressPlayDRMConfiguration {
                                                                                                                                                  aes128?: AES128KeySystemConfiguration;
                                                                                                                                                  clearkey?: ClearkeyKeySystemConfiguration;
                                                                                                                                                  fairplay?: FairPlayKeySystemConfiguration;
                                                                                                                                                  integration: "expressplay";
                                                                                                                                                  integrationParameters?: { [parameterName: string]: any };
                                                                                                                                                  playready?: PlayReadyKeySystemConfiguration;
                                                                                                                                                  preferredKeySystems?: (KeySystemId | string & {})[];
                                                                                                                                                  queryParameters?: { [key: string]: any };
                                                                                                                                                  useOipfDrmAgent?: boolean;
                                                                                                                                                  widevine?: KeySystemConfiguration;
                                                                                                                                              }

                                                                                                                                              Hierarchy (View Summary)

                                                                                                                                              Index

                                                                                                                                              Properties

                                                                                                                                              interface ExpressPlayDRMConfiguration {
                                                                                                                                                  aes128?: AES128KeySystemConfiguration;
                                                                                                                                                  clearkey?: ClearkeyKeySystemConfiguration;
                                                                                                                                                  fairplay?: FairPlayKeySystemConfiguration;
                                                                                                                                                  integration: "expressplay";
                                                                                                                                                  integrationParameters?: { [parameterName: string]: any };
                                                                                                                                                  playready?: PlayReadyKeySystemConfiguration;
                                                                                                                                                  preferredKeySystems?: (KeySystemId | string & {})[];
                                                                                                                                                  queryParameters?: { [key: string]: any };
                                                                                                                                                  useOipfDrmAgent?: boolean;
                                                                                                                                                  widevine?: KeySystemConfiguration;
                                                                                                                                              }

                                                                                                                                              Hierarchy (View Summary)

                                                                                                                                              Index

                                                                                                                                              Properties

                                                                                                                                              aes128? clearkey? fairplay? integration diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/EzdrmDRMConfiguration.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/EzdrmDRMConfiguration.html index a41e6ac936ee..072bbfb6fa17 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/EzdrmDRMConfiguration.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/EzdrmDRMConfiguration.html @@ -2,7 +2,7 @@
                                                                                                                                              const drmConfiguration = {
                                                                                                                                              integration : 'ezdrm',
                                                                                                                                              fairplay: {
                                                                                                                                              certificateURL: 'yourEzdrmCertificateUrl',
                                                                                                                                              licenseAcquisitionURL: 'yourEzdrmLicenseAcquisitionURL'
                                                                                                                                              }
                                                                                                                                              }
                                                                                                                                              -
                                                                                                                                              interface EzdrmDRMConfiguration {
                                                                                                                                                  aes128?: AES128KeySystemConfiguration;
                                                                                                                                                  clearkey?: ClearkeyKeySystemConfiguration;
                                                                                                                                                  fairplay?: FairPlayKeySystemConfiguration;
                                                                                                                                                  integration: "ezdrm";
                                                                                                                                                  integrationParameters?: { [parameterName: string]: any };
                                                                                                                                                  playready?: PlayReadyKeySystemConfiguration;
                                                                                                                                                  preferredKeySystems?: (KeySystemId | string & {})[];
                                                                                                                                                  queryParameters?: { [key: string]: any };
                                                                                                                                                  useOipfDrmAgent?: boolean;
                                                                                                                                                  widevine?: KeySystemConfiguration;
                                                                                                                                              }

                                                                                                                                              Hierarchy (View Summary)

                                                                                                                                              Index

                                                                                                                                              Properties

                                                                                                                                              interface EzdrmDRMConfiguration {
                                                                                                                                                  aes128?: AES128KeySystemConfiguration;
                                                                                                                                                  clearkey?: ClearkeyKeySystemConfiguration;
                                                                                                                                                  fairplay?: FairPlayKeySystemConfiguration;
                                                                                                                                                  integration: "ezdrm";
                                                                                                                                                  integrationParameters?: { [parameterName: string]: any };
                                                                                                                                                  playready?: PlayReadyKeySystemConfiguration;
                                                                                                                                                  preferredKeySystems?: (KeySystemId | string & {})[];
                                                                                                                                                  queryParameters?: { [key: string]: any };
                                                                                                                                                  useOipfDrmAgent?: boolean;
                                                                                                                                                  widevine?: KeySystemConfiguration;
                                                                                                                                              }

                                                                                                                                              Hierarchy (View Summary)

                                                                                                                                              Index

                                                                                                                                              Properties

                                                                                                                                              aes128? clearkey? fairplay? integration diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/FairPlayKeySystemConfiguration.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/FairPlayKeySystemConfiguration.html index 0b5f1e1a52f6..3decb32a286b 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/FairPlayKeySystemConfiguration.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/FairPlayKeySystemConfiguration.html @@ -1,5 +1,5 @@ FairPlayKeySystemConfiguration | THEOplayer Web SDK
                                                                                                                                              THEOplayer Web SDK
                                                                                                                                                Preparing search index...

                                                                                                                                                Interface FairPlayKeySystemConfiguration

                                                                                                                                                Describes the FairPlay key system configuration.

                                                                                                                                                -
                                                                                                                                                interface FairPlayKeySystemConfiguration {
                                                                                                                                                    audioRobustness?: string;
                                                                                                                                                    certificate?: string | BufferSource;
                                                                                                                                                    certificateURL?: string;
                                                                                                                                                    distinctiveIdentifier?: "required" | "optional" | "not-allowed";
                                                                                                                                                    headers?: { [headerName: string]: string };
                                                                                                                                                    licenseAcquisitionURL?: string;
                                                                                                                                                    persistentState?: "required" | "optional" | "not-allowed";
                                                                                                                                                    queryParameters?: { [key: string]: any };
                                                                                                                                                    useCredentials?: boolean;
                                                                                                                                                    videoRobustness?: string;
                                                                                                                                                }

                                                                                                                                                Hierarchy (View Summary)

                                                                                                                                                Index

                                                                                                                                                Properties

                                                                                                                                                interface FairPlayKeySystemConfiguration {
                                                                                                                                                    audioRobustness?: string;
                                                                                                                                                    certificate?: string | BufferSource;
                                                                                                                                                    certificateURL?: string;
                                                                                                                                                    distinctiveIdentifier?: "required" | "optional" | "not-allowed";
                                                                                                                                                    headers?: { [headerName: string]: string };
                                                                                                                                                    licenseAcquisitionURL?: string;
                                                                                                                                                    persistentState?: "required" | "optional" | "not-allowed";
                                                                                                                                                    queryParameters?: { [key: string]: any };
                                                                                                                                                    useCredentials?: boolean;
                                                                                                                                                    videoRobustness?: string;
                                                                                                                                                }

                                                                                                                                                Hierarchy (View Summary)

                                                                                                                                                Index

                                                                                                                                                Properties

                                                                                                                                                audioRobustness? certificate? certificateURL? distinctiveIdentifier? diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/FreeWheelAdDescription.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/FreeWheelAdDescription.html index e472acdb82e2..fd3031d96862 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/FreeWheelAdDescription.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/FreeWheelAdDescription.html @@ -1,6 +1,6 @@ FreeWheelAdDescription | THEOplayer Web SDK
                                                                                                                                                THEOplayer Web SDK
                                                                                                                                                  Preparing search index...

                                                                                                                                                  Interface FreeWheelAdDescription

                                                                                                                                                  Describes a FreeWheel ad break request.


                                                                                                                                                  - Available since v2.42.0.

                                                                                                                                                  -
                                                                                                                                                  interface FreeWheelAdDescription {
                                                                                                                                                      adServerUrl: string;
                                                                                                                                                      assetDuration?: number;
                                                                                                                                                      assetId?: string;
                                                                                                                                                      cuePoints?: FreeWheelCue[];
                                                                                                                                                      customData?: Record<string, string>;
                                                                                                                                                      integration: "freewheel";
                                                                                                                                                      networkId: number;
                                                                                                                                                      profile: string;
                                                                                                                                                      replaceContent?: boolean;
                                                                                                                                                      siteSectionId?: string;
                                                                                                                                                      sources?: string | AdSource;
                                                                                                                                                      timeOffset?: string | number;
                                                                                                                                                  }

                                                                                                                                                  Hierarchy (View Summary)

                                                                                                                                                  Index

                                                                                                                                                  Properties

                                                                                                                                                  interface FreeWheelAdDescription {
                                                                                                                                                      adServerUrl: string;
                                                                                                                                                      assetDuration?: number;
                                                                                                                                                      assetId?: string;
                                                                                                                                                      cuePoints?: FreeWheelCue[];
                                                                                                                                                      customData?: Record<string, string>;
                                                                                                                                                      integration: "freewheel";
                                                                                                                                                      networkId: number;
                                                                                                                                                      profile: string;
                                                                                                                                                      replaceContent?: boolean;
                                                                                                                                                      siteSectionId?: string;
                                                                                                                                                      sources?: string | AdSource;
                                                                                                                                                      timeOffset?: string | number;
                                                                                                                                                  }

                                                                                                                                                  Hierarchy (View Summary)

                                                                                                                                                  Index

                                                                                                                                                  Properties

                                                                                                                                                  adServerUrl assetDuration? assetId? cuePoints? diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/GoogleDAIConfiguration.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/GoogleDAIConfiguration.html index 7d1fc238b161..8e46e4047ff7 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/GoogleDAIConfiguration.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/GoogleDAIConfiguration.html @@ -1,6 +1,6 @@ GoogleDAIConfiguration | THEOplayer Web SDK
                                                                                                                                                  THEOplayer Web SDK
                                                                                                                                                    Preparing search index...

                                                                                                                                                    Interface GoogleDAIConfiguration

                                                                                                                                                    Represents a configuration for server-side ad insertion with the Google DAI pre-integration.


                                                                                                                                                    - Available since v2.30.0.

                                                                                                                                                    -
                                                                                                                                                    interface GoogleDAIConfiguration {
                                                                                                                                                        adTagParameters?: Record<string, string>;
                                                                                                                                                        apiKey: string;
                                                                                                                                                        authToken?: string;
                                                                                                                                                        availabilityType?: DAIAvailabilityType;
                                                                                                                                                        enableNonce?: boolean;
                                                                                                                                                        integration: "google-dai";
                                                                                                                                                        networkCode?: string;
                                                                                                                                                        omidAccessModeRules?: Record<number, string>;
                                                                                                                                                        streamActivityMonitorID?: string;
                                                                                                                                                    }

                                                                                                                                                    Hierarchy (View Summary)

                                                                                                                                                    Index

                                                                                                                                                    Properties

                                                                                                                                                    interface GoogleDAIConfiguration {
                                                                                                                                                        adTagParameters?: Record<string, string>;
                                                                                                                                                        apiKey: string;
                                                                                                                                                        authToken?: string;
                                                                                                                                                        availabilityType?: DAIAvailabilityType;
                                                                                                                                                        enableNonce?: boolean;
                                                                                                                                                        integration: "google-dai";
                                                                                                                                                        networkCode?: string;
                                                                                                                                                        omidAccessModeRules?: Record<number, string>;
                                                                                                                                                        streamActivityMonitorID?: string;
                                                                                                                                                    }

                                                                                                                                                    Hierarchy (View Summary)

                                                                                                                                                    Index

                                                                                                                                                    Properties

                                                                                                                                                    adTagParameters? apiKey authToken? availabilityType? diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/GoogleDAILiveConfiguration.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/GoogleDAILiveConfiguration.html index a9fc2eb465bd..d4a6d1db6567 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/GoogleDAILiveConfiguration.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/GoogleDAILiveConfiguration.html @@ -1,6 +1,6 @@ GoogleDAILiveConfiguration | THEOplayer Web SDK
                                                                                                                                                    THEOplayer Web SDK
                                                                                                                                                      Preparing search index...

                                                                                                                                                      Interface GoogleDAILiveConfiguration

                                                                                                                                                      Represents a configuration for server-side ad insertion with the Google DAI pre-integration for a Live media stream.


                                                                                                                                                      - Available since v2.30.0.

                                                                                                                                                      -
                                                                                                                                                      interface GoogleDAILiveConfiguration {
                                                                                                                                                          adTagParameters?: Record<string, string>;
                                                                                                                                                          apiKey: string;
                                                                                                                                                          assetKey: string;
                                                                                                                                                          authToken?: string;
                                                                                                                                                          availabilityType: "live";
                                                                                                                                                          enableNonce?: boolean;
                                                                                                                                                          integration: "google-dai";
                                                                                                                                                          networkCode?: string;
                                                                                                                                                          omidAccessModeRules?: Record<number, string>;
                                                                                                                                                          streamActivityMonitorID?: string;
                                                                                                                                                      }

                                                                                                                                                      Hierarchy (View Summary)

                                                                                                                                                      Index

                                                                                                                                                      Properties

                                                                                                                                                      interface GoogleDAILiveConfiguration {
                                                                                                                                                          adTagParameters?: Record<string, string>;
                                                                                                                                                          apiKey: string;
                                                                                                                                                          assetKey: string;
                                                                                                                                                          authToken?: string;
                                                                                                                                                          availabilityType: "live";
                                                                                                                                                          enableNonce?: boolean;
                                                                                                                                                          integration: "google-dai";
                                                                                                                                                          networkCode?: string;
                                                                                                                                                          omidAccessModeRules?: Record<number, string>;
                                                                                                                                                          streamActivityMonitorID?: string;
                                                                                                                                                      }

                                                                                                                                                      Hierarchy (View Summary)

                                                                                                                                                      Index

                                                                                                                                                      Properties

                                                                                                                                                      adTagParameters? apiKey assetKey authToken? diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/GoogleDAITypedSource.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/GoogleDAITypedSource.html index 7c074fd81554..5d8372c12c33 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/GoogleDAITypedSource.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/GoogleDAITypedSource.html @@ -1,5 +1,5 @@ GoogleDAITypedSource | THEOplayer Web SDK
                                                                                                                                                      THEOplayer Web SDK
                                                                                                                                                        Preparing search index...

                                                                                                                                                        Interface GoogleDAITypedSource

                                                                                                                                                        Represents a media resource with a Google DAI server-side ad insertion request.

                                                                                                                                                        -
                                                                                                                                                        interface GoogleDAITypedSource {
                                                                                                                                                            abr?: SourceAbrConfiguration;
                                                                                                                                                            contentProtection?: DRMConfiguration;
                                                                                                                                                            crossOrigin?: CrossOriginSetting;
                                                                                                                                                            dash?: DashPlaybackConfiguration;
                                                                                                                                                            drm?: DRMConfiguration;
                                                                                                                                                            hls?: HlsPlaybackConfiguration;
                                                                                                                                                            hlsDateRange?: boolean;
                                                                                                                                                            ignoreEmbeddedTextTrackTypes?: TextTrackType[];
                                                                                                                                                            integration?: SourceIntegrationId;
                                                                                                                                                            latencyConfiguration?: SourceLatencyConfiguration;
                                                                                                                                                            lcevc?: boolean;
                                                                                                                                                            liveOffset?: number;
                                                                                                                                                            lowLatency?: boolean;
                                                                                                                                                            seamlessSwitchStrategy?: SeamlessSwitchStrategy;
                                                                                                                                                            src?: string;
                                                                                                                                                            ssai: GoogleDAILiveConfiguration | GoogleDAIVodConfiguration;
                                                                                                                                                            timeServer?: string;
                                                                                                                                                            type: string;
                                                                                                                                                            useCredentials?: boolean;
                                                                                                                                                            useManagedMediaSource?: boolean;
                                                                                                                                                            useNativePlayback?: boolean;
                                                                                                                                                        }

                                                                                                                                                        Hierarchy (View Summary)

                                                                                                                                                        Index

                                                                                                                                                        Properties

                                                                                                                                                        interface GoogleDAITypedSource {
                                                                                                                                                            abr?: SourceAbrConfiguration;
                                                                                                                                                            contentProtection?: DRMConfiguration;
                                                                                                                                                            crossOrigin?: CrossOriginSetting;
                                                                                                                                                            dash?: DashPlaybackConfiguration;
                                                                                                                                                            drm?: DRMConfiguration;
                                                                                                                                                            hls?: HlsPlaybackConfiguration;
                                                                                                                                                            hlsDateRange?: boolean;
                                                                                                                                                            ignoreEmbeddedTextTrackTypes?: TextTrackType[];
                                                                                                                                                            integration?: SourceIntegrationId;
                                                                                                                                                            latencyConfiguration?: SourceLatencyConfiguration;
                                                                                                                                                            lcevc?: boolean;
                                                                                                                                                            liveOffset?: number;
                                                                                                                                                            lowLatency?: boolean;
                                                                                                                                                            seamlessSwitchStrategy?: SeamlessSwitchStrategy;
                                                                                                                                                            src?: string;
                                                                                                                                                            ssai: GoogleDAILiveConfiguration | GoogleDAIVodConfiguration;
                                                                                                                                                            timeServer?: string;
                                                                                                                                                            type: string;
                                                                                                                                                            useCredentials?: boolean;
                                                                                                                                                            useManagedMediaSource?: boolean;
                                                                                                                                                            useNativePlayback?: boolean;
                                                                                                                                                        }

                                                                                                                                                        Hierarchy (View Summary)

                                                                                                                                                        Index

                                                                                                                                                        Properties

                                                                                                                                                        abr? contentProtection? crossOrigin? dash? diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/GoogleDAIVodConfiguration.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/GoogleDAIVodConfiguration.html index 0556bdca75a9..e450638c8199 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/GoogleDAIVodConfiguration.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/GoogleDAIVodConfiguration.html @@ -1,6 +1,6 @@ GoogleDAIVodConfiguration | THEOplayer Web SDK
                                                                                                                                                        THEOplayer Web SDK
                                                                                                                                                          Preparing search index...

                                                                                                                                                          Interface GoogleDAIVodConfiguration

                                                                                                                                                          Represents a configuration for server-side ad insertion with the Google DAI pre-integration for a VOD media stream.


                                                                                                                                                          - Available since v2.30.0.

                                                                                                                                                          -
                                                                                                                                                          interface GoogleDAIVodConfiguration {
                                                                                                                                                              adTagParameters?: Record<string, string>;
                                                                                                                                                              apiKey: string;
                                                                                                                                                              authToken?: string;
                                                                                                                                                              availabilityType: "vod";
                                                                                                                                                              contentSourceID: string;
                                                                                                                                                              enableNonce?: boolean;
                                                                                                                                                              integration: "google-dai";
                                                                                                                                                              networkCode?: string;
                                                                                                                                                              omidAccessModeRules?: Record<number, string>;
                                                                                                                                                              streamActivityMonitorID?: string;
                                                                                                                                                              videoID: string;
                                                                                                                                                          }

                                                                                                                                                          Hierarchy (View Summary)

                                                                                                                                                          Index

                                                                                                                                                          Properties

                                                                                                                                                          interface GoogleDAIVodConfiguration {
                                                                                                                                                              adTagParameters?: Record<string, string>;
                                                                                                                                                              apiKey: string;
                                                                                                                                                              authToken?: string;
                                                                                                                                                              availabilityType: "vod";
                                                                                                                                                              contentSourceID: string;
                                                                                                                                                              enableNonce?: boolean;
                                                                                                                                                              integration: "google-dai";
                                                                                                                                                              networkCode?: string;
                                                                                                                                                              omidAccessModeRules?: Record<number, string>;
                                                                                                                                                              streamActivityMonitorID?: string;
                                                                                                                                                              videoID: string;
                                                                                                                                                          }

                                                                                                                                                          Hierarchy (View Summary)

                                                                                                                                                          Index

                                                                                                                                                          Properties

                                                                                                                                                          adTagParameters? apiKey authToken? availabilityType diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/GoogleImaAd.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/GoogleImaAd.html index e08959b8cb6e..5c91a2d2cb54 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/GoogleImaAd.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/GoogleImaAd.html @@ -1,6 +1,6 @@ GoogleImaAd | THEOplayer Web SDK
                                                                                                                                                          THEOplayer Web SDK
                                                                                                                                                            Preparing search index...

                                                                                                                                                            Interface GoogleImaAd

                                                                                                                                                            Represents a Google IMA creative compliant to the VAST specification.


                                                                                                                                                            - Available since v2.60.0.

                                                                                                                                                            -
                                                                                                                                                            interface GoogleImaAd {
                                                                                                                                                                adBreak: AdBreak;
                                                                                                                                                                adSystem: undefined | string;
                                                                                                                                                                apiFramework: undefined | string;
                                                                                                                                                                bitrate: number;
                                                                                                                                                                clickThrough: undefined | string;
                                                                                                                                                                companions: CompanionAd[];
                                                                                                                                                                contentType: undefined | string;
                                                                                                                                                                creativeId: undefined | string;
                                                                                                                                                                customData: unknown;
                                                                                                                                                                description: undefined | string;
                                                                                                                                                                duration: undefined | number;
                                                                                                                                                                height: undefined | number;
                                                                                                                                                                id: undefined | string;
                                                                                                                                                                integration?: CustomAdIntegrationKind | AdIntegrationKind;
                                                                                                                                                                isSlate: boolean;
                                                                                                                                                                mediaUrl: undefined | string;
                                                                                                                                                                readyState?: AdReadyState;
                                                                                                                                                                resourceURI: undefined | string;
                                                                                                                                                                skipOffset: undefined | number;
                                                                                                                                                                title: undefined | string;
                                                                                                                                                                traffickingParameters: undefined | { [parameterKey: string]: string };
                                                                                                                                                                traffickingParametersString: undefined | string;
                                                                                                                                                                type: AdType;
                                                                                                                                                                universalAdIds: UniversalAdId[];
                                                                                                                                                                width: undefined | number;
                                                                                                                                                                wrapperAdIds: string[];
                                                                                                                                                                wrapperAdSystems: string[];
                                                                                                                                                                wrapperCreativeIds: string[];
                                                                                                                                                            }

                                                                                                                                                            Hierarchy (View Summary)

                                                                                                                                                            • Ad
                                                                                                                                                              • GoogleImaAd
                                                                                                                                                            Index

                                                                                                                                                            Properties

                                                                                                                                                            interface GoogleImaAd {
                                                                                                                                                                adBreak: AdBreak;
                                                                                                                                                                adSystem: undefined | string;
                                                                                                                                                                apiFramework: undefined | string;
                                                                                                                                                                bitrate: number;
                                                                                                                                                                clickThrough: undefined | string;
                                                                                                                                                                companions: CompanionAd[];
                                                                                                                                                                contentType: undefined | string;
                                                                                                                                                                creativeId: undefined | string;
                                                                                                                                                                customData: unknown;
                                                                                                                                                                description: undefined | string;
                                                                                                                                                                duration: undefined | number;
                                                                                                                                                                height: undefined | number;
                                                                                                                                                                id: undefined | string;
                                                                                                                                                                integration?: CustomAdIntegrationKind | AdIntegrationKind;
                                                                                                                                                                isSlate: boolean;
                                                                                                                                                                mediaUrl: undefined | string;
                                                                                                                                                                readyState?: AdReadyState;
                                                                                                                                                                resourceURI: undefined | string;
                                                                                                                                                                skipOffset: undefined | number;
                                                                                                                                                                title: undefined | string;
                                                                                                                                                                traffickingParameters: undefined | { [parameterKey: string]: string };
                                                                                                                                                                traffickingParametersString: undefined | string;
                                                                                                                                                                type: AdType;
                                                                                                                                                                universalAdIds: UniversalAdId[];
                                                                                                                                                                width: undefined | number;
                                                                                                                                                                wrapperAdIds: string[];
                                                                                                                                                                wrapperAdSystems: string[];
                                                                                                                                                                wrapperCreativeIds: string[];
                                                                                                                                                            }

                                                                                                                                                            Hierarchy (View Summary)

                                                                                                                                                            • Ad
                                                                                                                                                              • GoogleImaAd
                                                                                                                                                            Index

                                                                                                                                                            Properties

                                                                                                                                                            adBreak adSystem apiFramework bitrate diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/HespApi.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/HespApi.html index 29ac5895a05c..397c1c2a5b3c 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/HespApi.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/HespApi.html @@ -1,7 +1,7 @@ HespApi | THEOplayer Web SDK
                                                                                                                                                            THEOplayer Web SDK
                                                                                                                                                              Preparing search index...

                                                                                                                                                              Interface HespApi

                                                                                                                                                              The HESP API.


                                                                                                                                                              - Note: This API is in an experimental stage and may be subject to breaking changes.
                                                                                                                                                              - Only available with the feature 'hesp'.

                                                                                                                                                              -
                                                                                                                                                              interface HespApi {
                                                                                                                                                                  isLive: boolean;
                                                                                                                                                                  manifest: undefined | object;
                                                                                                                                                                  addEventListener<TType extends keyof HespApiEventMap>(
                                                                                                                                                                      type: TType | readonly TType[],
                                                                                                                                                                      listener: EventListener<HespApiEventMap[TType]>,
                                                                                                                                                                  ): void;
                                                                                                                                                                  goLive(): void;
                                                                                                                                                                  removeEventListener<TType extends keyof HespApiEventMap>(
                                                                                                                                                                      type: TType | readonly TType[],
                                                                                                                                                                      listener: EventListener<HespApiEventMap[TType]>,
                                                                                                                                                                  ): void;
                                                                                                                                                              }

                                                                                                                                                              Hierarchy (View Summary)

                                                                                                                                                              Index

                                                                                                                                                              Properties

                                                                                                                                                              interface HespApi {
                                                                                                                                                                  isLive: boolean;
                                                                                                                                                                  manifest: undefined | object;
                                                                                                                                                                  addEventListener<TType extends keyof HespApiEventMap>(
                                                                                                                                                                      type: TType | readonly TType[],
                                                                                                                                                                      listener: EventListener<HespApiEventMap[TType]>,
                                                                                                                                                                  ): void;
                                                                                                                                                                  goLive(): void;
                                                                                                                                                                  removeEventListener<TType extends keyof HespApiEventMap>(
                                                                                                                                                                      type: TType | readonly TType[],
                                                                                                                                                                      listener: EventListener<HespApiEventMap[TType]>,
                                                                                                                                                                  ): void;
                                                                                                                                                              }

                                                                                                                                                              Hierarchy (View Summary)

                                                                                                                                                              Index

                                                                                                                                                              Properties

                                                                                                                                                              Methods

                                                                                                                                                              addEventListener goLive diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/HespTypedSource.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/HespTypedSource.html index fefac4651fc3..e1e881b58bc9 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/HespTypedSource.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/HespTypedSource.html @@ -2,7 +2,7 @@


                                                                                                                                                              - Note: This API is in an experimental stage and may be subject to breaking changes.
                                                                                                                                                              - Only available with the feature 'hesp'.
                                                                                                                                                              - Only applicable when configuring an HESP source.

                                                                                                                                                              -
                                                                                                                                                              interface HespTypedSource {
                                                                                                                                                                  abr?: SourceAbrConfiguration;
                                                                                                                                                                  contentProtection?: DRMConfiguration;
                                                                                                                                                                  crossOrigin?: CrossOriginSetting;
                                                                                                                                                                  dash?: DashPlaybackConfiguration;
                                                                                                                                                                  drm?: DRMConfiguration;
                                                                                                                                                                  hesp?: HespSourceConfiguration;
                                                                                                                                                                  hls?: HlsPlaybackConfiguration;
                                                                                                                                                                  hlsDateRange?: boolean;
                                                                                                                                                                  ignoreEmbeddedTextTrackTypes?: TextTrackType[];
                                                                                                                                                                  integration?: SourceIntegrationId;
                                                                                                                                                                  latencyConfiguration?: SourceLatencyConfiguration;
                                                                                                                                                                  lcevc?: boolean;
                                                                                                                                                                  liveOffset?: number;
                                                                                                                                                                  lowLatency?: boolean;
                                                                                                                                                                  seamlessSwitchStrategy?: SeamlessSwitchStrategy;
                                                                                                                                                                  src?: string;
                                                                                                                                                                  ssai?: ServerSideAdInsertionConfiguration;
                                                                                                                                                                  timeServer?: string;
                                                                                                                                                                  type: "application/vnd.theo.hesp+json";
                                                                                                                                                                  useCredentials?: boolean;
                                                                                                                                                                  useManagedMediaSource?: boolean;
                                                                                                                                                                  useNativePlayback?: boolean;
                                                                                                                                                              }

                                                                                                                                                              Hierarchy (View Summary)

                                                                                                                                                              Index

                                                                                                                                                              Properties

                                                                                                                                                              interface HespTypedSource {
                                                                                                                                                                  abr?: SourceAbrConfiguration;
                                                                                                                                                                  contentProtection?: DRMConfiguration;
                                                                                                                                                                  crossOrigin?: CrossOriginSetting;
                                                                                                                                                                  dash?: DashPlaybackConfiguration;
                                                                                                                                                                  drm?: DRMConfiguration;
                                                                                                                                                                  hesp?: HespSourceConfiguration;
                                                                                                                                                                  hls?: HlsPlaybackConfiguration;
                                                                                                                                                                  hlsDateRange?: boolean;
                                                                                                                                                                  ignoreEmbeddedTextTrackTypes?: TextTrackType[];
                                                                                                                                                                  integration?: SourceIntegrationId;
                                                                                                                                                                  latencyConfiguration?: SourceLatencyConfiguration;
                                                                                                                                                                  lcevc?: boolean;
                                                                                                                                                                  liveOffset?: number;
                                                                                                                                                                  lowLatency?: boolean;
                                                                                                                                                                  seamlessSwitchStrategy?: SeamlessSwitchStrategy;
                                                                                                                                                                  src?: string;
                                                                                                                                                                  ssai?: ServerSideAdInsertionConfiguration;
                                                                                                                                                                  timeServer?: string;
                                                                                                                                                                  type: "application/vnd.theo.hesp+json";
                                                                                                                                                                  useCredentials?: boolean;
                                                                                                                                                                  useManagedMediaSource?: boolean;
                                                                                                                                                                  useNativePlayback?: boolean;
                                                                                                                                                              }

                                                                                                                                                              Hierarchy (View Summary)

                                                                                                                                                              Index

                                                                                                                                                              Properties

                                                                                                                                                              abr? contentProtection? crossOrigin? dash? diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ID3AttachedPicture.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ID3AttachedPicture.html index 5d4a36832180..3ae7dee60f0d 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ID3AttachedPicture.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ID3AttachedPicture.html @@ -1,5 +1,5 @@ ID3AttachedPicture | THEOplayer Web SDK
                                                                                                                                                              THEOplayer Web SDK
                                                                                                                                                                Preparing search index...

                                                                                                                                                                Interface ID3AttachedPicture

                                                                                                                                                                Represents an attached picture ID3 frame.

                                                                                                                                                                -
                                                                                                                                                                interface ID3AttachedPicture {
                                                                                                                                                                    data: string | ArrayBuffer;
                                                                                                                                                                    description: string;
                                                                                                                                                                    id: "APIC" | "PIC";
                                                                                                                                                                    mimeType: string;
                                                                                                                                                                    pictureType: number;
                                                                                                                                                                }

                                                                                                                                                                Hierarchy (View Summary)

                                                                                                                                                                Index

                                                                                                                                                                Properties

                                                                                                                                                                interface ID3AttachedPicture {
                                                                                                                                                                    data: string | ArrayBuffer;
                                                                                                                                                                    description: string;
                                                                                                                                                                    id: "APIC" | "PIC";
                                                                                                                                                                    mimeType: string;
                                                                                                                                                                    pictureType: number;
                                                                                                                                                                }

                                                                                                                                                                Hierarchy (View Summary)

                                                                                                                                                                Index

                                                                                                                                                                Properties

                                                                                                                                                                data description id mimeType diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ID3BaseFrame.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ID3BaseFrame.html index 828e473cd296..581bec386775 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ID3BaseFrame.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ID3BaseFrame.html @@ -1,5 +1,5 @@ ID3BaseFrame | THEOplayer Web SDK
                                                                                                                                                                THEOplayer Web SDK
                                                                                                                                                                  Preparing search index...
                                                                                                                                                                  diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ID3Comments.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ID3Comments.html index a0b239032c57..0772e819a248 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ID3Comments.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ID3Comments.html @@ -1,5 +1,5 @@ ID3Comments | THEOplayer Web SDK
                                                                                                                                                                  THEOplayer Web SDK
                                                                                                                                                                    Preparing search index...

                                                                                                                                                                    Interface ID3Comments

                                                                                                                                                                    Represents a comments ID3 frame.

                                                                                                                                                                    -
                                                                                                                                                                    interface ID3Comments {
                                                                                                                                                                        description: string;
                                                                                                                                                                        id: "COMM" | "COM";
                                                                                                                                                                        language: string;
                                                                                                                                                                        text: string;
                                                                                                                                                                    }

                                                                                                                                                                    Hierarchy (View Summary)

                                                                                                                                                                    Index

                                                                                                                                                                    Properties

                                                                                                                                                                    interface ID3Comments {
                                                                                                                                                                        description: string;
                                                                                                                                                                        id: "COMM" | "COM";
                                                                                                                                                                        language: string;
                                                                                                                                                                        text: string;
                                                                                                                                                                    }

                                                                                                                                                                    Hierarchy (View Summary)

                                                                                                                                                                    Index

                                                                                                                                                                    Properties

                                                                                                                                                                    description id language text diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ID3CommercialFrame.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ID3CommercialFrame.html index 27a36718a89e..698f2e92983e 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ID3CommercialFrame.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ID3CommercialFrame.html @@ -1,5 +1,5 @@ ID3CommercialFrame | THEOplayer Web SDK
                                                                                                                                                                    THEOplayer Web SDK
                                                                                                                                                                      Preparing search index...

                                                                                                                                                                      Interface ID3CommercialFrame

                                                                                                                                                                      Represents a commercial ID3 frame.

                                                                                                                                                                      -
                                                                                                                                                                      interface ID3CommercialFrame {
                                                                                                                                                                          contactURL: string;
                                                                                                                                                                          description: string;
                                                                                                                                                                          id: "COMR";
                                                                                                                                                                          nameOfSeller: string;
                                                                                                                                                                          pictureMimeType?: string;
                                                                                                                                                                          price: string;
                                                                                                                                                                          receivedAs: number;
                                                                                                                                                                          sellerLogo?: ArrayBuffer;
                                                                                                                                                                          validUntil: string;
                                                                                                                                                                      }

                                                                                                                                                                      Hierarchy (View Summary)

                                                                                                                                                                      Index

                                                                                                                                                                      Properties

                                                                                                                                                                      interface ID3CommercialFrame {
                                                                                                                                                                          contactURL: string;
                                                                                                                                                                          description: string;
                                                                                                                                                                          id: "COMR";
                                                                                                                                                                          nameOfSeller: string;
                                                                                                                                                                          pictureMimeType?: string;
                                                                                                                                                                          price: string;
                                                                                                                                                                          receivedAs: number;
                                                                                                                                                                          sellerLogo?: ArrayBuffer;
                                                                                                                                                                          validUntil: string;
                                                                                                                                                                      }

                                                                                                                                                                      Hierarchy (View Summary)

                                                                                                                                                                      Index

                                                                                                                                                                      Properties

                                                                                                                                                                      contactURL description id nameOfSeller diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ID3Cue.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ID3Cue.html index 822ea62d3b1d..98383a1964b5 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ID3Cue.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ID3Cue.html @@ -1,5 +1,5 @@ ID3Cue | THEOplayer Web SDK
                                                                                                                                                                      THEOplayer Web SDK
                                                                                                                                                                        Preparing search index...

                                                                                                                                                                        Interface ID3Cue

                                                                                                                                                                        Represents a cue of an ID3 metadata text track.

                                                                                                                                                                        -
                                                                                                                                                                        interface ID3Cue {
                                                                                                                                                                            content: ID3Frame;
                                                                                                                                                                            endTime: number;
                                                                                                                                                                            id: string;
                                                                                                                                                                            startTime: number;
                                                                                                                                                                            track: TextTrack;
                                                                                                                                                                            uid: number;
                                                                                                                                                                            addEventListener<TType extends keyof TextTrackCueEventMap>(
                                                                                                                                                                                type: TType | readonly TType[],
                                                                                                                                                                                listener: EventListener<TextTrackCueEventMap[TType]>,
                                                                                                                                                                            ): void;
                                                                                                                                                                            removeEventListener<TType extends keyof TextTrackCueEventMap>(
                                                                                                                                                                                type: TType | readonly TType[],
                                                                                                                                                                                listener: EventListener<TextTrackCueEventMap[TType]>,
                                                                                                                                                                            ): void;
                                                                                                                                                                        }

                                                                                                                                                                        Hierarchy (View Summary)

                                                                                                                                                                        Index

                                                                                                                                                                        Properties

                                                                                                                                                                        interface ID3Cue {
                                                                                                                                                                            content: ID3Frame;
                                                                                                                                                                            endTime: number;
                                                                                                                                                                            id: string;
                                                                                                                                                                            startTime: number;
                                                                                                                                                                            track: TextTrack;
                                                                                                                                                                            uid: number;
                                                                                                                                                                            addEventListener<TType extends keyof TextTrackCueEventMap>(
                                                                                                                                                                                type: TType | readonly TType[],
                                                                                                                                                                                listener: EventListener<TextTrackCueEventMap[TType]>,
                                                                                                                                                                            ): void;
                                                                                                                                                                            removeEventListener<TType extends keyof TextTrackCueEventMap>(
                                                                                                                                                                                type: TType | readonly TType[],
                                                                                                                                                                                listener: EventListener<TextTrackCueEventMap[TType]>,
                                                                                                                                                                            ): void;
                                                                                                                                                                        }

                                                                                                                                                                        Hierarchy (View Summary)

                                                                                                                                                                        Index

                                                                                                                                                                        Properties

                                                                                                                                                                        content endTime id startTime diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ID3GenericEncapsulatedObject.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ID3GenericEncapsulatedObject.html index 6a730fd6e549..4ad9c0433bf5 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ID3GenericEncapsulatedObject.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ID3GenericEncapsulatedObject.html @@ -1,5 +1,5 @@ ID3GenericEncapsulatedObject | THEOplayer Web SDK
                                                                                                                                                                        THEOplayer Web SDK
                                                                                                                                                                          Preparing search index...

                                                                                                                                                                          Interface ID3GenericEncapsulatedObject

                                                                                                                                                                          Represents a general encapsulated object ID3 frame.

                                                                                                                                                                          -
                                                                                                                                                                          interface ID3GenericEncapsulatedObject {
                                                                                                                                                                              data: ArrayBuffer;
                                                                                                                                                                              description: string;
                                                                                                                                                                              fileName: string;
                                                                                                                                                                              id: "GEOB" | "GEO";
                                                                                                                                                                              mimeType: string;
                                                                                                                                                                          }

                                                                                                                                                                          Hierarchy (View Summary)

                                                                                                                                                                          Index

                                                                                                                                                                          Properties

                                                                                                                                                                          interface ID3GenericEncapsulatedObject {
                                                                                                                                                                              data: ArrayBuffer;
                                                                                                                                                                              description: string;
                                                                                                                                                                              fileName: string;
                                                                                                                                                                              id: "GEOB" | "GEO";
                                                                                                                                                                              mimeType: string;
                                                                                                                                                                          }

                                                                                                                                                                          Hierarchy (View Summary)

                                                                                                                                                                          Index

                                                                                                                                                                          Properties

                                                                                                                                                                          data description fileName id diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ID3InvolvedPeopleList.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ID3InvolvedPeopleList.html index e0520bbd8bee..d54e2fa9aaf6 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ID3InvolvedPeopleList.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ID3InvolvedPeopleList.html @@ -1,5 +1,5 @@ ID3InvolvedPeopleList | THEOplayer Web SDK
                                                                                                                                                                          THEOplayer Web SDK
                                                                                                                                                                            Preparing search index...

                                                                                                                                                                            Interface ID3InvolvedPeopleList

                                                                                                                                                                            Represents an involved people list ID3 frame.

                                                                                                                                                                            -
                                                                                                                                                                            interface ID3InvolvedPeopleList {
                                                                                                                                                                                entries: { involvee: string; involvement: string }[];
                                                                                                                                                                                id: "IPLS" | "IPL";
                                                                                                                                                                            }

                                                                                                                                                                            Hierarchy (View Summary)

                                                                                                                                                                            Index

                                                                                                                                                                            Properties

                                                                                                                                                                            interface ID3InvolvedPeopleList {
                                                                                                                                                                                entries: { involvee: string; involvement: string }[];
                                                                                                                                                                                id: "IPLS" | "IPL";
                                                                                                                                                                            }

                                                                                                                                                                            Hierarchy (View Summary)

                                                                                                                                                                            Index

                                                                                                                                                                            Properties

                                                                                                                                                                            Properties

                                                                                                                                                                            entries: { involvee: string; involvement: string }[]

                                                                                                                                                                            List of the involved people.

                                                                                                                                                                            id: "IPLS" | "IPL"

                                                                                                                                                                            The identifier of the frame.

                                                                                                                                                                            diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ID3PositionSynchronisationFrame.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ID3PositionSynchronisationFrame.html index da3f49ec18b7..fa564676ebad 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ID3PositionSynchronisationFrame.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ID3PositionSynchronisationFrame.html @@ -1,5 +1,5 @@ ID3PositionSynchronisationFrame | THEOplayer Web SDK
                                                                                                                                                                            THEOplayer Web SDK
                                                                                                                                                                              Preparing search index...

                                                                                                                                                                              Interface ID3PositionSynchronisationFrame

                                                                                                                                                                              Represents an position synchronisation ID3 frame.

                                                                                                                                                                              -
                                                                                                                                                                              interface ID3PositionSynchronisationFrame {
                                                                                                                                                                                  format: number;
                                                                                                                                                                                  id: "POSS";
                                                                                                                                                                                  position: number;
                                                                                                                                                                              }

                                                                                                                                                                              Hierarchy (View Summary)

                                                                                                                                                                              Index

                                                                                                                                                                              Properties

                                                                                                                                                                              interface ID3PositionSynchronisationFrame {
                                                                                                                                                                                  format: number;
                                                                                                                                                                                  id: "POSS";
                                                                                                                                                                                  position: number;
                                                                                                                                                                              }

                                                                                                                                                                              Hierarchy (View Summary)

                                                                                                                                                                              Index

                                                                                                                                                                              Properties

                                                                                                                                                                              Properties

                                                                                                                                                                              format: number

                                                                                                                                                                              The format of the timestamp, represented by a value from the following list: diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ID3PrivateFrame.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ID3PrivateFrame.html index 7130926a4ec0..8fa04361da19 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ID3PrivateFrame.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ID3PrivateFrame.html @@ -1,5 +1,5 @@ ID3PrivateFrame | THEOplayer Web SDK

                                                                                                                                                                              THEOplayer Web SDK
                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                Interface ID3PrivateFrame

                                                                                                                                                                                Represents a private ID3 frame.

                                                                                                                                                                                -
                                                                                                                                                                                interface ID3PrivateFrame {
                                                                                                                                                                                    data: ArrayBuffer;
                                                                                                                                                                                    id: "PRIV";
                                                                                                                                                                                    ownerIdentifier: string;
                                                                                                                                                                                }

                                                                                                                                                                                Hierarchy (View Summary)

                                                                                                                                                                                Index

                                                                                                                                                                                Properties

                                                                                                                                                                                interface ID3PrivateFrame {
                                                                                                                                                                                    data: ArrayBuffer;
                                                                                                                                                                                    id: "PRIV";
                                                                                                                                                                                    ownerIdentifier: string;
                                                                                                                                                                                }

                                                                                                                                                                                Hierarchy (View Summary)

                                                                                                                                                                                Index

                                                                                                                                                                                Properties

                                                                                                                                                                                The data of the frame.

                                                                                                                                                                                diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ID3SynchronizedLyricsText.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ID3SynchronizedLyricsText.html index 5240a8e4d7d7..5403c5ca029c 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ID3SynchronizedLyricsText.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ID3SynchronizedLyricsText.html @@ -1,5 +1,5 @@ ID3SynchronizedLyricsText | THEOplayer Web SDK
                                                                                                                                                                                THEOplayer Web SDK
                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                  Interface ID3SynchronizedLyricsText

                                                                                                                                                                                  Represents a synchronised lyrics/text ID3 frame.

                                                                                                                                                                                  -
                                                                                                                                                                                  interface ID3SynchronizedLyricsText {
                                                                                                                                                                                      contentType: number;
                                                                                                                                                                                      description: string;
                                                                                                                                                                                      entries: { text: string; timestamp: number }[];
                                                                                                                                                                                      format: number;
                                                                                                                                                                                      id: "SYLT" | "SLT";
                                                                                                                                                                                      language: string;
                                                                                                                                                                                  }

                                                                                                                                                                                  Hierarchy (View Summary)

                                                                                                                                                                                  Index

                                                                                                                                                                                  Properties

                                                                                                                                                                                  interface ID3SynchronizedLyricsText {
                                                                                                                                                                                      contentType: number;
                                                                                                                                                                                      description: string;
                                                                                                                                                                                      entries: { text: string; timestamp: number }[];
                                                                                                                                                                                      format: number;
                                                                                                                                                                                      id: "SYLT" | "SLT";
                                                                                                                                                                                      language: string;
                                                                                                                                                                                  }

                                                                                                                                                                                  Hierarchy (View Summary)

                                                                                                                                                                                  Index

                                                                                                                                                                                  Properties

                                                                                                                                                                                  contentType description entries format diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ID3TermsOfUse.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ID3TermsOfUse.html index 25e6f40b00e4..c92ed8e3b38b 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ID3TermsOfUse.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ID3TermsOfUse.html @@ -1,5 +1,5 @@ ID3TermsOfUse | THEOplayer Web SDK
                                                                                                                                                                                  THEOplayer Web SDK
                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                    Interface ID3TermsOfUse

                                                                                                                                                                                    Represents a terms of use ID3 frame.

                                                                                                                                                                                    -
                                                                                                                                                                                    interface ID3TermsOfUse {
                                                                                                                                                                                        id: "USER";
                                                                                                                                                                                        language: string;
                                                                                                                                                                                        text: string;
                                                                                                                                                                                    }

                                                                                                                                                                                    Hierarchy (View Summary)

                                                                                                                                                                                    Index

                                                                                                                                                                                    Properties

                                                                                                                                                                                    id +
                                                                                                                                                                                    interface ID3TermsOfUse {
                                                                                                                                                                                        id: "USER";
                                                                                                                                                                                        language: string;
                                                                                                                                                                                        text: string;
                                                                                                                                                                                    }

                                                                                                                                                                                    Hierarchy (View Summary)

                                                                                                                                                                                    Index

                                                                                                                                                                                    Properties

                                                                                                                                                                                    Properties

                                                                                                                                                                                    id: "USER"

                                                                                                                                                                                    The identifier of the frame.

                                                                                                                                                                                    diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ID3Text.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ID3Text.html index bc63952cf803..f19f3b368f2e 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ID3Text.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ID3Text.html @@ -1,5 +1,5 @@ ID3Text | THEOplayer Web SDK
                                                                                                                                                                                    THEOplayer Web SDK
                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                      Interface ID3Text

                                                                                                                                                                                      Represents a text information ID3 frame.

                                                                                                                                                                                      -
                                                                                                                                                                                      interface ID3Text {
                                                                                                                                                                                          id: string;
                                                                                                                                                                                          text: string;
                                                                                                                                                                                      }

                                                                                                                                                                                      Hierarchy (View Summary)

                                                                                                                                                                                      Index

                                                                                                                                                                                      Properties

                                                                                                                                                                                      id +
                                                                                                                                                                                      interface ID3Text {
                                                                                                                                                                                          id: string;
                                                                                                                                                                                          text: string;
                                                                                                                                                                                      }

                                                                                                                                                                                      Hierarchy (View Summary)

                                                                                                                                                                                      Index

                                                                                                                                                                                      Properties

                                                                                                                                                                                      Properties

                                                                                                                                                                                      id: string

                                                                                                                                                                                      The identifier of the frame.


                                                                                                                                                                                      - Applicable values are "T000" to "TZZZ" and "T00" to "TZZ", excluding "TXX" and "TXXX".

                                                                                                                                                                                      diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ID3UniqueFileIdentifier.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ID3UniqueFileIdentifier.html index 3439ba5cae62..814e33516d2d 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ID3UniqueFileIdentifier.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ID3UniqueFileIdentifier.html @@ -1,5 +1,5 @@ ID3UniqueFileIdentifier | THEOplayer Web SDK
                                                                                                                                                                                      THEOplayer Web SDK
                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                        Interface ID3UniqueFileIdentifier

                                                                                                                                                                                        Represents a unique file identifier ID3 frame.

                                                                                                                                                                                        -
                                                                                                                                                                                        interface ID3UniqueFileIdentifier {
                                                                                                                                                                                            id: "UFID" | "UFI";
                                                                                                                                                                                            identifier: ArrayBuffer;
                                                                                                                                                                                            ownerIdentifier: string;
                                                                                                                                                                                        }

                                                                                                                                                                                        Hierarchy (View Summary)

                                                                                                                                                                                        Index

                                                                                                                                                                                        Properties

                                                                                                                                                                                        id +
                                                                                                                                                                                        interface ID3UniqueFileIdentifier {
                                                                                                                                                                                            id: "UFID" | "UFI";
                                                                                                                                                                                            identifier: ArrayBuffer;
                                                                                                                                                                                            ownerIdentifier: string;
                                                                                                                                                                                        }

                                                                                                                                                                                        Hierarchy (View Summary)

                                                                                                                                                                                        Index

                                                                                                                                                                                        Properties

                                                                                                                                                                                        id: "UFID" | "UFI"

                                                                                                                                                                                        The identifier of the frame.

                                                                                                                                                                                        diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ID3Unknown.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ID3Unknown.html index 266e8ac9acde..74a5bfb5c21f 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ID3Unknown.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ID3Unknown.html @@ -1,5 +1,5 @@ ID3Unknown | THEOplayer Web SDK
                                                                                                                                                                                        THEOplayer Web SDK
                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                          Interface ID3Unknown

                                                                                                                                                                                          Represents an unknown ID3 frame.

                                                                                                                                                                                          -
                                                                                                                                                                                          interface ID3Unknown {
                                                                                                                                                                                              data: undefined | ArrayBuffer;
                                                                                                                                                                                              id: string;
                                                                                                                                                                                          }

                                                                                                                                                                                          Hierarchy (View Summary)

                                                                                                                                                                                          Index

                                                                                                                                                                                          Properties

                                                                                                                                                                                          interface ID3Unknown {
                                                                                                                                                                                              data: undefined | ArrayBuffer;
                                                                                                                                                                                              id: string;
                                                                                                                                                                                          }

                                                                                                                                                                                          Hierarchy (View Summary)

                                                                                                                                                                                          Index

                                                                                                                                                                                          Properties

                                                                                                                                                                                          Properties

                                                                                                                                                                                          data: undefined | ArrayBuffer

                                                                                                                                                                                          The raw data of the frame.

                                                                                                                                                                                          id: string

                                                                                                                                                                                          The identifier of the frame.

                                                                                                                                                                                          diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ID3UnsynchronisedLyricsTextTranscription.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ID3UnsynchronisedLyricsTextTranscription.html index b517544b4f74..367f1c42e07e 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ID3UnsynchronisedLyricsTextTranscription.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ID3UnsynchronisedLyricsTextTranscription.html @@ -1,5 +1,5 @@ ID3UnsynchronisedLyricsTextTranscription | THEOplayer Web SDK
                                                                                                                                                                                          THEOplayer Web SDK
                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                            Interface ID3UnsynchronisedLyricsTextTranscription

                                                                                                                                                                                            Represents a unsynchronised lyrics/text transcription ID3 frame.

                                                                                                                                                                                            -
                                                                                                                                                                                            interface ID3UnsynchronisedLyricsTextTranscription {
                                                                                                                                                                                                description: string;
                                                                                                                                                                                                id: "USLT" | "ULT";
                                                                                                                                                                                                language: string;
                                                                                                                                                                                                text: string;
                                                                                                                                                                                            }

                                                                                                                                                                                            Hierarchy (View Summary)

                                                                                                                                                                                            Index

                                                                                                                                                                                            Properties

                                                                                                                                                                                            interface ID3UnsynchronisedLyricsTextTranscription {
                                                                                                                                                                                                description: string;
                                                                                                                                                                                                id: "USLT" | "ULT";
                                                                                                                                                                                                language: string;
                                                                                                                                                                                                text: string;
                                                                                                                                                                                            }

                                                                                                                                                                                            Hierarchy (View Summary)

                                                                                                                                                                                            Index

                                                                                                                                                                                            Properties

                                                                                                                                                                                            description id language text diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ID3UrlLink.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ID3UrlLink.html index eaf91d0b3a7d..7e49a99dc26e 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ID3UrlLink.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ID3UrlLink.html @@ -1,5 +1,5 @@ ID3UrlLink | THEOplayer Web SDK
                                                                                                                                                                                            THEOplayer Web SDK
                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                              Interface ID3UrlLink

                                                                                                                                                                                              Represents a URL link ID3 frame.

                                                                                                                                                                                              -
                                                                                                                                                                                              interface ID3UrlLink {
                                                                                                                                                                                                  id: string;
                                                                                                                                                                                                  url: string;
                                                                                                                                                                                              }

                                                                                                                                                                                              Hierarchy (View Summary)

                                                                                                                                                                                              Index

                                                                                                                                                                                              Properties

                                                                                                                                                                                              id +
                                                                                                                                                                                              interface ID3UrlLink {
                                                                                                                                                                                                  id: string;
                                                                                                                                                                                                  url: string;
                                                                                                                                                                                              }

                                                                                                                                                                                              Hierarchy (View Summary)

                                                                                                                                                                                              Index

                                                                                                                                                                                              Properties

                                                                                                                                                                                              Properties

                                                                                                                                                                                              id: string

                                                                                                                                                                                              The identifier of the frame.


                                                                                                                                                                                              - Applicable values are "W000" to "WZZZ" and "W00" to "WZZ", excluding "WXX" and "WXXX".

                                                                                                                                                                                              diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ID3UserDefinedText.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ID3UserDefinedText.html index 048737e9302e..1ee97f1ff4ac 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ID3UserDefinedText.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ID3UserDefinedText.html @@ -1,5 +1,5 @@ ID3UserDefinedText | THEOplayer Web SDK
                                                                                                                                                                                              THEOplayer Web SDK
                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                Interface ID3UserDefinedText

                                                                                                                                                                                                Represents a used defined text ID3 frame.

                                                                                                                                                                                                -
                                                                                                                                                                                                interface ID3UserDefinedText {
                                                                                                                                                                                                    description: string;
                                                                                                                                                                                                    id: "TXXX" | "TXX";
                                                                                                                                                                                                    text: string;
                                                                                                                                                                                                }

                                                                                                                                                                                                Hierarchy (View Summary)

                                                                                                                                                                                                Index

                                                                                                                                                                                                Properties

                                                                                                                                                                                                interface ID3UserDefinedText {
                                                                                                                                                                                                    description: string;
                                                                                                                                                                                                    id: "TXXX" | "TXX";
                                                                                                                                                                                                    text: string;
                                                                                                                                                                                                }

                                                                                                                                                                                                Hierarchy (View Summary)

                                                                                                                                                                                                Index

                                                                                                                                                                                                Properties

                                                                                                                                                                                                Properties

                                                                                                                                                                                                description: string

                                                                                                                                                                                                The description of the text.

                                                                                                                                                                                                diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ID3UserDefinedUrlLink.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ID3UserDefinedUrlLink.html index f7a81574e52b..23f93e48000a 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ID3UserDefinedUrlLink.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ID3UserDefinedUrlLink.html @@ -1,5 +1,5 @@ ID3UserDefinedUrlLink | THEOplayer Web SDK
                                                                                                                                                                                                THEOplayer Web SDK
                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                  Interface ID3UserDefinedUrlLink

                                                                                                                                                                                                  Represents a user defined URL link ID3 frame.

                                                                                                                                                                                                  -
                                                                                                                                                                                                  interface ID3UserDefinedUrlLink {
                                                                                                                                                                                                      description: string;
                                                                                                                                                                                                      id: "WXXX" | "WXX";
                                                                                                                                                                                                      url: string;
                                                                                                                                                                                                  }

                                                                                                                                                                                                  Hierarchy (View Summary)

                                                                                                                                                                                                  Index

                                                                                                                                                                                                  Properties

                                                                                                                                                                                                  interface ID3UserDefinedUrlLink {
                                                                                                                                                                                                      description: string;
                                                                                                                                                                                                      id: "WXXX" | "WXX";
                                                                                                                                                                                                      url: string;
                                                                                                                                                                                                  }

                                                                                                                                                                                                  Hierarchy (View Summary)

                                                                                                                                                                                                  Index

                                                                                                                                                                                                  Properties

                                                                                                                                                                                                  Properties

                                                                                                                                                                                                  description: string

                                                                                                                                                                                                  The description of the URL.

                                                                                                                                                                                                  diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ID3Yospace.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ID3Yospace.html index 781f849b369c..7410c7d3d5a4 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ID3Yospace.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ID3Yospace.html @@ -1,5 +1,5 @@ ID3Yospace | THEOplayer Web SDK
                                                                                                                                                                                                  THEOplayer Web SDK
                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                    Interface ID3Yospace

                                                                                                                                                                                                    Represents a Yospace ID3 frame.

                                                                                                                                                                                                    -
                                                                                                                                                                                                    interface ID3Yospace {
                                                                                                                                                                                                        id: YospaceId;
                                                                                                                                                                                                        text: string;
                                                                                                                                                                                                    }

                                                                                                                                                                                                    Hierarchy (View Summary)

                                                                                                                                                                                                    Index

                                                                                                                                                                                                    Properties

                                                                                                                                                                                                    id +
                                                                                                                                                                                                    interface ID3Yospace {
                                                                                                                                                                                                        id: YospaceId;
                                                                                                                                                                                                        text: string;
                                                                                                                                                                                                    }

                                                                                                                                                                                                    Hierarchy (View Summary)

                                                                                                                                                                                                    Index

                                                                                                                                                                                                    Properties

                                                                                                                                                                                                    Properties

                                                                                                                                                                                                    The identifier of the frame.

                                                                                                                                                                                                    text: string

                                                                                                                                                                                                    The content of the frame.

                                                                                                                                                                                                    diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/IMAAdDescription.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/IMAAdDescription.html index df88be48f339..3f9333e4f3ce 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/IMAAdDescription.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/IMAAdDescription.html @@ -1,5 +1,5 @@ IMAAdDescription | THEOplayer Web SDK
                                                                                                                                                                                                    THEOplayer Web SDK
                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                      Interface IMAAdDescription

                                                                                                                                                                                                      Describes a Google IMA ad break request.

                                                                                                                                                                                                      -
                                                                                                                                                                                                      interface IMAAdDescription {
                                                                                                                                                                                                          integration: "google-ima";
                                                                                                                                                                                                          omidAccessModeRules?: Record<number, string>;
                                                                                                                                                                                                          replaceContent?: boolean;
                                                                                                                                                                                                          sources: string | AdSource;
                                                                                                                                                                                                          timeOffset?: string | number;
                                                                                                                                                                                                      }

                                                                                                                                                                                                      Hierarchy (View Summary)

                                                                                                                                                                                                      Index

                                                                                                                                                                                                      Properties

                                                                                                                                                                                                      interface IMAAdDescription {
                                                                                                                                                                                                          integration: "google-ima";
                                                                                                                                                                                                          omidAccessModeRules?: Record<number, string>;
                                                                                                                                                                                                          replaceContent?: boolean;
                                                                                                                                                                                                          sources: string | AdSource;
                                                                                                                                                                                                          timeOffset?: string | number;
                                                                                                                                                                                                      }

                                                                                                                                                                                                      Hierarchy (View Summary)

                                                                                                                                                                                                      Index

                                                                                                                                                                                                      Properties

                                                                                                                                                                                                      integration omidAccessModeRules? replaceContent? sources diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/IntentToFallbackEvent.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/IntentToFallbackEvent.html index f8afaf10da44..9e42a245581d 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/IntentToFallbackEvent.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/IntentToFallbackEvent.html @@ -1,6 +1,6 @@ IntentToFallbackEvent | THEOplayer Web SDK
                                                                                                                                                                                                      THEOplayer Web SDK
                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                        Interface IntentToFallbackEvent

                                                                                                                                                                                                        Fired when the player cannot play the current primary publication and would like to fallback. If a fallback has been configured it will fallback, otherwise only the event is fired.

                                                                                                                                                                                                        -
                                                                                                                                                                                                        interface IntentToFallbackEvent {
                                                                                                                                                                                                            date: Date;
                                                                                                                                                                                                            reason?: THEOplayerError;
                                                                                                                                                                                                            type: "intenttofallback";
                                                                                                                                                                                                        }

                                                                                                                                                                                                        Hierarchy (View Summary)

                                                                                                                                                                                                        • Event<"intenttofallback">
                                                                                                                                                                                                          • IntentToFallbackEvent
                                                                                                                                                                                                        Index

                                                                                                                                                                                                        Properties

                                                                                                                                                                                                        interface IntentToFallbackEvent {
                                                                                                                                                                                                            date: Date;
                                                                                                                                                                                                            reason?: THEOplayerError;
                                                                                                                                                                                                            type: "intenttofallback";
                                                                                                                                                                                                        }

                                                                                                                                                                                                        Hierarchy (View Summary)

                                                                                                                                                                                                        • Event<"intenttofallback">
                                                                                                                                                                                                          • IntentToFallbackEvent
                                                                                                                                                                                                        Index

                                                                                                                                                                                                        Properties

                                                                                                                                                                                                        Properties

                                                                                                                                                                                                        date: Date

                                                                                                                                                                                                        The creation date of the event.

                                                                                                                                                                                                        diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/InterceptableRequest.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/InterceptableRequest.html index 187d80775acf..baae726f1728 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/InterceptableRequest.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/InterceptableRequest.html @@ -1,5 +1,5 @@ InterceptableRequest | THEOplayer Web SDK
                                                                                                                                                                                                        THEOplayer Web SDK
                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                          Interface InterceptableRequest

                                                                                                                                                                                                          Represents an intercepted HTTP request which can be modified.

                                                                                                                                                                                                          -
                                                                                                                                                                                                          interface InterceptableRequest {
                                                                                                                                                                                                              body: RequestBody;
                                                                                                                                                                                                              closed: boolean;
                                                                                                                                                                                                              headers: HTTPHeaders;
                                                                                                                                                                                                              mediaType: MediaType;
                                                                                                                                                                                                              method: RequestMethod;
                                                                                                                                                                                                              responseType: ResponseType;
                                                                                                                                                                                                              subType: RequestSubType;
                                                                                                                                                                                                              type: RequestType;
                                                                                                                                                                                                              url: string;
                                                                                                                                                                                                              useCredentials: boolean;
                                                                                                                                                                                                              redirect(request: RequestLike): void;
                                                                                                                                                                                                              respondWith(response: ResponseInit): void;
                                                                                                                                                                                                              waitUntil(fn: WaitUntilCallback): void;
                                                                                                                                                                                                              waitUntil(promise: PromiseLike<any>): void;
                                                                                                                                                                                                          }

                                                                                                                                                                                                          Hierarchy (View Summary)

                                                                                                                                                                                                          Index

                                                                                                                                                                                                          Properties

                                                                                                                                                                                                          interface InterceptableRequest {
                                                                                                                                                                                                              body: RequestBody;
                                                                                                                                                                                                              closed: boolean;
                                                                                                                                                                                                              headers: HTTPHeaders;
                                                                                                                                                                                                              mediaType: MediaType;
                                                                                                                                                                                                              method: RequestMethod;
                                                                                                                                                                                                              responseType: ResponseType;
                                                                                                                                                                                                              subType: RequestSubType;
                                                                                                                                                                                                              type: RequestType;
                                                                                                                                                                                                              url: string;
                                                                                                                                                                                                              useCredentials: boolean;
                                                                                                                                                                                                              redirect(request: RequestLike): void;
                                                                                                                                                                                                              respondWith(response: ResponseInit): void;
                                                                                                                                                                                                              waitUntil(fn: WaitUntilCallback): void;
                                                                                                                                                                                                              waitUntil(promise: PromiseLike<any>): void;
                                                                                                                                                                                                          }

                                                                                                                                                                                                          Hierarchy (View Summary)

                                                                                                                                                                                                          Index

                                                                                                                                                                                                          Properties

                                                                                                                                                                                                          body closed headers mediaType diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/Interstitial.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/Interstitial.html index 0e4f55a6e907..93d493106365 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/Interstitial.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/Interstitial.html @@ -1,5 +1,5 @@ Interstitial | THEOplayer Web SDK
                                                                                                                                                                                                          THEOplayer Web SDK
                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                            Interface Interstitial

                                                                                                                                                                                                            The THEOads interstitial.

                                                                                                                                                                                                            -
                                                                                                                                                                                                            interface Interstitial {
                                                                                                                                                                                                                adTagParameters: Record<string, string>;
                                                                                                                                                                                                                duration: undefined | number;
                                                                                                                                                                                                                id: string;
                                                                                                                                                                                                                startTime: number;
                                                                                                                                                                                                                type: InterstitialType;
                                                                                                                                                                                                            }

                                                                                                                                                                                                            Hierarchy (View Summary)

                                                                                                                                                                                                            Index

                                                                                                                                                                                                            Properties

                                                                                                                                                                                                            interface Interstitial {
                                                                                                                                                                                                                adTagParameters: Record<string, string>;
                                                                                                                                                                                                                duration: undefined | number;
                                                                                                                                                                                                                id: string;
                                                                                                                                                                                                                startTime: number;
                                                                                                                                                                                                                type: InterstitialType;
                                                                                                                                                                                                            }

                                                                                                                                                                                                            Hierarchy (View Summary)

                                                                                                                                                                                                            Index

                                                                                                                                                                                                            Properties

                                                                                                                                                                                                            adTagParameters duration id startTime diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/InterstitialEvent.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/InterstitialEvent.html index e3965dcf0b52..89511238254b 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/InterstitialEvent.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/InterstitialEvent.html @@ -1,5 +1,5 @@ InterstitialEvent | THEOplayer Web SDK
                                                                                                                                                                                                            THEOplayer Web SDK
                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                              Interface InterstitialEvent<TType>

                                                                                                                                                                                                              Base type for events related to an interstitial.

                                                                                                                                                                                                              -
                                                                                                                                                                                                              interface InterstitialEvent<TType extends string> {
                                                                                                                                                                                                                  date: Date;
                                                                                                                                                                                                                  interstitial: Interstitial;
                                                                                                                                                                                                                  type: TType;
                                                                                                                                                                                                              }

                                                                                                                                                                                                              Type Parameters

                                                                                                                                                                                                              • TType extends string

                                                                                                                                                                                                              Hierarchy (View Summary)

                                                                                                                                                                                                              Index

                                                                                                                                                                                                              Properties

                                                                                                                                                                                                              interface InterstitialEvent<TType extends string> {
                                                                                                                                                                                                                  date: Date;
                                                                                                                                                                                                                  interstitial: Interstitial;
                                                                                                                                                                                                                  type: TType;
                                                                                                                                                                                                              }

                                                                                                                                                                                                              Type Parameters

                                                                                                                                                                                                              • TType extends string

                                                                                                                                                                                                              Hierarchy (View Summary)

                                                                                                                                                                                                              Index

                                                                                                                                                                                                              Properties

                                                                                                                                                                                                              date: Date

                                                                                                                                                                                                              The creation date of the event.

                                                                                                                                                                                                              diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/IrdetoDRMConfiguration.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/IrdetoDRMConfiguration.html index b35e6ec95531..949a18e35b00 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/IrdetoDRMConfiguration.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/IrdetoDRMConfiguration.html @@ -2,7 +2,7 @@
                                                                                                                                                                                                              const drmConfiguration = {
                                                                                                                                                                                                              integration : 'irdeto',
                                                                                                                                                                                                              fairplay: {
                                                                                                                                                                                                              certificateURL: 'yourIrdetoCertificateUrl',
                                                                                                                                                                                                              licenseAcquisitionURL: 'yourIrdetoLicenseAcquisitionURL'
                                                                                                                                                                                                              }
                                                                                                                                                                                                              crmId: 'yourIrdetoCrmId',
                                                                                                                                                                                                              accountId: 'yourIrdetoCrmId',
                                                                                                                                                                                                              contentId: 'yourIrdetokeyId',
                                                                                                                                                                                                              accountId: 'yourIrdetoCrmId',
                                                                                                                                                                                                              applicationId: 'yourIrdeotApplicationId',
                                                                                                                                                                                                              }
                                                                                                                                                                                                              -
                                                                                                                                                                                                              interface IrdetoDRMConfiguration {
                                                                                                                                                                                                                  accountId: string;
                                                                                                                                                                                                                  aes128?: AES128KeySystemConfiguration;
                                                                                                                                                                                                                  applicationId?: string;
                                                                                                                                                                                                                  clearkey?: ClearkeyKeySystemConfiguration;
                                                                                                                                                                                                                  contentId: string;
                                                                                                                                                                                                                  crmId: string;
                                                                                                                                                                                                                  fairplay?: FairPlayKeySystemConfiguration;
                                                                                                                                                                                                                  integration: "irdeto";
                                                                                                                                                                                                                  integrationParameters?: { [parameterName: string]: any };
                                                                                                                                                                                                                  keyId?: string;
                                                                                                                                                                                                                  playready?: PlayReadyKeySystemConfiguration;
                                                                                                                                                                                                                  preferredKeySystems?: (KeySystemId | string & {})[];
                                                                                                                                                                                                                  queryParameters?: { [key: string]: any };
                                                                                                                                                                                                                  sessionId?: string;
                                                                                                                                                                                                                  ticket?: string;
                                                                                                                                                                                                                  useOipfDrmAgent?: boolean;
                                                                                                                                                                                                                  widevine?: KeySystemConfiguration;
                                                                                                                                                                                                              }

                                                                                                                                                                                                              Hierarchy (View Summary)

                                                                                                                                                                                                              Index

                                                                                                                                                                                                              Properties

                                                                                                                                                                                                              interface IrdetoDRMConfiguration {
                                                                                                                                                                                                                  accountId: string;
                                                                                                                                                                                                                  aes128?: AES128KeySystemConfiguration;
                                                                                                                                                                                                                  applicationId?: string;
                                                                                                                                                                                                                  clearkey?: ClearkeyKeySystemConfiguration;
                                                                                                                                                                                                                  contentId: string;
                                                                                                                                                                                                                  crmId: string;
                                                                                                                                                                                                                  fairplay?: FairPlayKeySystemConfiguration;
                                                                                                                                                                                                                  integration: "irdeto";
                                                                                                                                                                                                                  integrationParameters?: { [parameterName: string]: any };
                                                                                                                                                                                                                  keyId?: string;
                                                                                                                                                                                                                  playready?: PlayReadyKeySystemConfiguration;
                                                                                                                                                                                                                  preferredKeySystems?: (KeySystemId | string & {})[];
                                                                                                                                                                                                                  queryParameters?: { [key: string]: any };
                                                                                                                                                                                                                  sessionId?: string;
                                                                                                                                                                                                                  ticket?: string;
                                                                                                                                                                                                                  useOipfDrmAgent?: boolean;
                                                                                                                                                                                                                  widevine?: KeySystemConfiguration;
                                                                                                                                                                                                              }

                                                                                                                                                                                                              Hierarchy (View Summary)

                                                                                                                                                                                                              Index

                                                                                                                                                                                                              Properties

                                                                                                                                                                                                              accountId aes128? applicationId? clearkey? diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/KeyOSDRMConfiguration.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/KeyOSDRMConfiguration.html index 249ec9c44a23..0195489114b2 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/KeyOSDRMConfiguration.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/KeyOSDRMConfiguration.html @@ -7,7 +7,7 @@
                                                                                                                                                                                                              const drmConfiguration = {
                                                                                                                                                                                                              integration : 'keyos',
                                                                                                                                                                                                              customdata : 'PEtleU9T...blhNTD4=',
                                                                                                                                                                                                              playready : {
                                                                                                                                                                                                              licenseAcquisitionURL : 'customplayready.url',
                                                                                                                                                                                                              customdata : 'CUSTOM...='
                                                                                                                                                                                                              }
                                                                                                                                                                                                              }
                                                                                                                                                                                                              -
                                                                                                                                                                                                              interface KeyOSDRMConfiguration {
                                                                                                                                                                                                                  aes128?: AES128KeySystemConfiguration;
                                                                                                                                                                                                                  clearkey?: ClearkeyKeySystemConfiguration;
                                                                                                                                                                                                                  customdata?: string;
                                                                                                                                                                                                                  fairplay?: KeyOSFairplayKeySystemConfiguration;
                                                                                                                                                                                                                  integration: "keyos";
                                                                                                                                                                                                                  integrationParameters?: { [parameterName: string]: any };
                                                                                                                                                                                                                  playready?: KeyOSKeySystemConfiguration;
                                                                                                                                                                                                                  preferredKeySystems?: (KeySystemId | string & {})[];
                                                                                                                                                                                                                  queryParameters?: { [key: string]: any };
                                                                                                                                                                                                                  useOipfDrmAgent?: boolean;
                                                                                                                                                                                                                  widevine?: KeyOSKeySystemConfiguration;
                                                                                                                                                                                                              }

                                                                                                                                                                                                              Hierarchy (View Summary)

                                                                                                                                                                                                              Index

                                                                                                                                                                                                              Properties

                                                                                                                                                                                                              interface KeyOSDRMConfiguration {
                                                                                                                                                                                                                  aes128?: AES128KeySystemConfiguration;
                                                                                                                                                                                                                  clearkey?: ClearkeyKeySystemConfiguration;
                                                                                                                                                                                                                  customdata?: string;
                                                                                                                                                                                                                  fairplay?: KeyOSFairplayKeySystemConfiguration;
                                                                                                                                                                                                                  integration: "keyos";
                                                                                                                                                                                                                  integrationParameters?: { [parameterName: string]: any };
                                                                                                                                                                                                                  playready?: KeyOSKeySystemConfiguration;
                                                                                                                                                                                                                  preferredKeySystems?: (KeySystemId | string & {})[];
                                                                                                                                                                                                                  queryParameters?: { [key: string]: any };
                                                                                                                                                                                                                  useOipfDrmAgent?: boolean;
                                                                                                                                                                                                                  widevine?: KeyOSKeySystemConfiguration;
                                                                                                                                                                                                              }

                                                                                                                                                                                                              Hierarchy (View Summary)

                                                                                                                                                                                                              Index

                                                                                                                                                                                                              Properties

                                                                                                                                                                                                              aes128? clearkey? customdata? fairplay? diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/KeyOSFairplayKeySystemConfiguration.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/KeyOSFairplayKeySystemConfiguration.html index 6bfe9bef53dc..6fab0b326484 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/KeyOSFairplayKeySystemConfiguration.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/KeyOSFairplayKeySystemConfiguration.html @@ -1,5 +1,5 @@ KeyOSFairplayKeySystemConfiguration | THEOplayer Web SDK
                                                                                                                                                                                                              THEOplayer Web SDK
                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                Interface KeyOSFairplayKeySystemConfiguration

                                                                                                                                                                                                                Describes the KeyOS FairPlay key system configuration.

                                                                                                                                                                                                                -
                                                                                                                                                                                                                interface KeyOSFairplayKeySystemConfiguration {
                                                                                                                                                                                                                    audioRobustness?: string;
                                                                                                                                                                                                                    certificate?: string | BufferSource;
                                                                                                                                                                                                                    certificateURL?: string;
                                                                                                                                                                                                                    customdata?: string;
                                                                                                                                                                                                                    distinctiveIdentifier?: "required" | "optional" | "not-allowed";
                                                                                                                                                                                                                    headers?: { [headerName: string]: string };
                                                                                                                                                                                                                    licenseAcquisitionURL?: string;
                                                                                                                                                                                                                    persistentState?: "required" | "optional" | "not-allowed";
                                                                                                                                                                                                                    queryParameters?: { [key: string]: any };
                                                                                                                                                                                                                    useCredentials?: boolean;
                                                                                                                                                                                                                    videoRobustness?: string;
                                                                                                                                                                                                                }

                                                                                                                                                                                                                Hierarchy (View Summary)

                                                                                                                                                                                                                Index

                                                                                                                                                                                                                Properties

                                                                                                                                                                                                                interface KeyOSFairplayKeySystemConfiguration {
                                                                                                                                                                                                                    audioRobustness?: string;
                                                                                                                                                                                                                    certificate?: string | BufferSource;
                                                                                                                                                                                                                    certificateURL?: string;
                                                                                                                                                                                                                    customdata?: string;
                                                                                                                                                                                                                    distinctiveIdentifier?: "required" | "optional" | "not-allowed";
                                                                                                                                                                                                                    headers?: { [headerName: string]: string };
                                                                                                                                                                                                                    licenseAcquisitionURL?: string;
                                                                                                                                                                                                                    persistentState?: "required" | "optional" | "not-allowed";
                                                                                                                                                                                                                    queryParameters?: { [key: string]: any };
                                                                                                                                                                                                                    useCredentials?: boolean;
                                                                                                                                                                                                                    videoRobustness?: string;
                                                                                                                                                                                                                }

                                                                                                                                                                                                                Hierarchy (View Summary)

                                                                                                                                                                                                                Index

                                                                                                                                                                                                                Properties

                                                                                                                                                                                                                audioRobustness? certificate? certificateURL? customdata? diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/KeyOSKeySystemConfiguration.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/KeyOSKeySystemConfiguration.html index 38327a4697e3..aeed467d81de 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/KeyOSKeySystemConfiguration.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/KeyOSKeySystemConfiguration.html @@ -1,5 +1,5 @@ KeyOSKeySystemConfiguration | THEOplayer Web SDK
                                                                                                                                                                                                                THEOplayer Web SDK
                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                  Interface KeyOSKeySystemConfiguration

                                                                                                                                                                                                                  Describes the KeyOS key system configuration.

                                                                                                                                                                                                                  -
                                                                                                                                                                                                                  interface KeyOSKeySystemConfiguration {
                                                                                                                                                                                                                      audioRobustness?: string;
                                                                                                                                                                                                                      certificate?: string | BufferSource;
                                                                                                                                                                                                                      customdata?: string;
                                                                                                                                                                                                                      distinctiveIdentifier?: "required" | "optional" | "not-allowed";
                                                                                                                                                                                                                      headers?: { [headerName: string]: string };
                                                                                                                                                                                                                      licenseAcquisitionURL?: string;
                                                                                                                                                                                                                      persistentState?: "required" | "optional" | "not-allowed";
                                                                                                                                                                                                                      queryParameters?: { [key: string]: any };
                                                                                                                                                                                                                      useCredentials?: boolean;
                                                                                                                                                                                                                      videoRobustness?: string;
                                                                                                                                                                                                                  }

                                                                                                                                                                                                                  Hierarchy (View Summary)

                                                                                                                                                                                                                  Index

                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                  interface KeyOSKeySystemConfiguration {
                                                                                                                                                                                                                      audioRobustness?: string;
                                                                                                                                                                                                                      certificate?: string | BufferSource;
                                                                                                                                                                                                                      customdata?: string;
                                                                                                                                                                                                                      distinctiveIdentifier?: "required" | "optional" | "not-allowed";
                                                                                                                                                                                                                      headers?: { [headerName: string]: string };
                                                                                                                                                                                                                      licenseAcquisitionURL?: string;
                                                                                                                                                                                                                      persistentState?: "required" | "optional" | "not-allowed";
                                                                                                                                                                                                                      queryParameters?: { [key: string]: any };
                                                                                                                                                                                                                      useCredentials?: boolean;
                                                                                                                                                                                                                      videoRobustness?: string;
                                                                                                                                                                                                                  }

                                                                                                                                                                                                                  Hierarchy (View Summary)

                                                                                                                                                                                                                  Index

                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                  audioRobustness? certificate? customdata? distinctiveIdentifier? diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/KeySystemConfiguration.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/KeySystemConfiguration.html index 2c56b16c0349..f97d13bde63c 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/KeySystemConfiguration.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/KeySystemConfiguration.html @@ -1,5 +1,5 @@ KeySystemConfiguration | THEOplayer Web SDK
                                                                                                                                                                                                                  THEOplayer Web SDK
                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                    Interface KeySystemConfiguration

                                                                                                                                                                                                                    Describes the key system configuration.

                                                                                                                                                                                                                    -
                                                                                                                                                                                                                    interface KeySystemConfiguration {
                                                                                                                                                                                                                        audioRobustness?: string;
                                                                                                                                                                                                                        certificate?: string | BufferSource;
                                                                                                                                                                                                                        distinctiveIdentifier?: "required" | "optional" | "not-allowed";
                                                                                                                                                                                                                        headers?: { [headerName: string]: string };
                                                                                                                                                                                                                        licenseAcquisitionURL?: string;
                                                                                                                                                                                                                        persistentState?: "required" | "optional" | "not-allowed";
                                                                                                                                                                                                                        queryParameters?: { [key: string]: any };
                                                                                                                                                                                                                        useCredentials?: boolean;
                                                                                                                                                                                                                        videoRobustness?: string;
                                                                                                                                                                                                                    }

                                                                                                                                                                                                                    Hierarchy (View Summary)

                                                                                                                                                                                                                    Index

                                                                                                                                                                                                                    Properties

                                                                                                                                                                                                                    interface KeySystemConfiguration {
                                                                                                                                                                                                                        audioRobustness?: string;
                                                                                                                                                                                                                        certificate?: string | BufferSource;
                                                                                                                                                                                                                        distinctiveIdentifier?: "required" | "optional" | "not-allowed";
                                                                                                                                                                                                                        headers?: { [headerName: string]: string };
                                                                                                                                                                                                                        licenseAcquisitionURL?: string;
                                                                                                                                                                                                                        persistentState?: "required" | "optional" | "not-allowed";
                                                                                                                                                                                                                        queryParameters?: { [key: string]: any };
                                                                                                                                                                                                                        useCredentials?: boolean;
                                                                                                                                                                                                                        videoRobustness?: string;
                                                                                                                                                                                                                    }

                                                                                                                                                                                                                    Hierarchy (View Summary)

                                                                                                                                                                                                                    Index

                                                                                                                                                                                                                    Properties

                                                                                                                                                                                                                    audioRobustness? certificate? distinctiveIdentifier? headers? diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/LayoutChangeEvent.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/LayoutChangeEvent.html index d98c9d998699..4288296df571 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/LayoutChangeEvent.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/LayoutChangeEvent.html @@ -1,5 +1,5 @@ LayoutChangeEvent | THEOplayer Web SDK
                                                                                                                                                                                                                    THEOplayer Web SDK
                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                      Interface LayoutChangeEvent

                                                                                                                                                                                                                      Fired when MultiViewPlayer.layout changes.

                                                                                                                                                                                                                      -
                                                                                                                                                                                                                      interface LayoutChangeEvent {
                                                                                                                                                                                                                          date: Date;
                                                                                                                                                                                                                          layout: MultiViewPlayerLayout;
                                                                                                                                                                                                                          type: "layoutchange";
                                                                                                                                                                                                                      }

                                                                                                                                                                                                                      Hierarchy (View Summary)

                                                                                                                                                                                                                      • Event<"layoutchange">
                                                                                                                                                                                                                        • LayoutChangeEvent
                                                                                                                                                                                                                      Index

                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                      interface LayoutChangeEvent {
                                                                                                                                                                                                                          date: Date;
                                                                                                                                                                                                                          layout: MultiViewPlayerLayout;
                                                                                                                                                                                                                          type: "layoutchange";
                                                                                                                                                                                                                      }

                                                                                                                                                                                                                      Hierarchy (View Summary)

                                                                                                                                                                                                                      • Event<"layoutchange">
                                                                                                                                                                                                                        • LayoutChangeEvent
                                                                                                                                                                                                                      Index

                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                      date: Date

                                                                                                                                                                                                                      The creation date of the event.

                                                                                                                                                                                                                      diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/LicenseRequest.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/LicenseRequest.html index 14a94af8d722..9cbb78ec5470 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/LicenseRequest.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/LicenseRequest.html @@ -1,5 +1,5 @@ LicenseRequest | THEOplayer Web SDK
                                                                                                                                                                                                                      THEOplayer Web SDK
                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                        Interface LicenseRequest

                                                                                                                                                                                                                        A request for a license.

                                                                                                                                                                                                                        -
                                                                                                                                                                                                                        interface LicenseRequest {
                                                                                                                                                                                                                            body: null | Uint8Array<ArrayBuffer>;
                                                                                                                                                                                                                            fairplaySkdUrl: undefined | string;
                                                                                                                                                                                                                            headers: { [headerName: string]: string };
                                                                                                                                                                                                                            method: string;
                                                                                                                                                                                                                            url: string;
                                                                                                                                                                                                                            useCredentials: boolean;
                                                                                                                                                                                                                        }

                                                                                                                                                                                                                        Hierarchy (View Summary)

                                                                                                                                                                                                                        Index

                                                                                                                                                                                                                        Properties

                                                                                                                                                                                                                        interface LicenseRequest {
                                                                                                                                                                                                                            body: null | Uint8Array<ArrayBuffer>;
                                                                                                                                                                                                                            fairplaySkdUrl: undefined | string;
                                                                                                                                                                                                                            headers: { [headerName: string]: string };
                                                                                                                                                                                                                            method: string;
                                                                                                                                                                                                                            url: string;
                                                                                                                                                                                                                            useCredentials: boolean;
                                                                                                                                                                                                                        }

                                                                                                                                                                                                                        Hierarchy (View Summary)

                                                                                                                                                                                                                        Index

                                                                                                                                                                                                                        Properties

                                                                                                                                                                                                                        body fairplaySkdUrl headers method diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/LicenseResponse.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/LicenseResponse.html index 894696ff6380..3b911dccb37f 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/LicenseResponse.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/LicenseResponse.html @@ -1,5 +1,5 @@ LicenseResponse | THEOplayer Web SDK
                                                                                                                                                                                                                        THEOplayer Web SDK
                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                          Interface LicenseResponse

                                                                                                                                                                                                                          The response of a license request.

                                                                                                                                                                                                                          -
                                                                                                                                                                                                                          interface LicenseResponse {
                                                                                                                                                                                                                              body: Uint8Array;
                                                                                                                                                                                                                              headers: { [headerName: string]: string };
                                                                                                                                                                                                                              request: LicenseRequest;
                                                                                                                                                                                                                              status: number;
                                                                                                                                                                                                                              statusText: string;
                                                                                                                                                                                                                              url: string;
                                                                                                                                                                                                                          }

                                                                                                                                                                                                                          Hierarchy (View Summary)

                                                                                                                                                                                                                          Index

                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                          interface LicenseResponse {
                                                                                                                                                                                                                              body: Uint8Array;
                                                                                                                                                                                                                              headers: { [headerName: string]: string };
                                                                                                                                                                                                                              request: LicenseRequest;
                                                                                                                                                                                                                              status: number;
                                                                                                                                                                                                                              statusText: string;
                                                                                                                                                                                                                              url: string;
                                                                                                                                                                                                                          }

                                                                                                                                                                                                                          Hierarchy (View Summary)

                                                                                                                                                                                                                          Index

                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                          body headers request status diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/LinearAd.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/LinearAd.html index 56b324789d57..1d7a5aed66b0 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/LinearAd.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/LinearAd.html @@ -1,5 +1,5 @@ LinearAd | THEOplayer Web SDK
                                                                                                                                                                                                                          THEOplayer Web SDK
                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                            Interface LinearAd

                                                                                                                                                                                                                            Represents a linear ad in the VAST specification.

                                                                                                                                                                                                                            -
                                                                                                                                                                                                                            interface LinearAd {
                                                                                                                                                                                                                                adBreak: AdBreak;
                                                                                                                                                                                                                                adSystem: undefined | string;
                                                                                                                                                                                                                                clickThrough: undefined | string;
                                                                                                                                                                                                                                closedCaptionFiles: ClosedCaptionFile[];
                                                                                                                                                                                                                                companions: CompanionAd[];
                                                                                                                                                                                                                                creativeId: undefined | string;
                                                                                                                                                                                                                                customData: unknown;
                                                                                                                                                                                                                                duration: number;
                                                                                                                                                                                                                                extensions: VastExtension[];
                                                                                                                                                                                                                                height: undefined | number;
                                                                                                                                                                                                                                id: undefined | string;
                                                                                                                                                                                                                                integration?: CustomAdIntegrationKind | AdIntegrationKind;
                                                                                                                                                                                                                                isSlate: boolean;
                                                                                                                                                                                                                                mediaFiles: MediaFile[];
                                                                                                                                                                                                                                mediaUrl?: string;
                                                                                                                                                                                                                                readyState?: AdReadyState;
                                                                                                                                                                                                                                resourceURI: undefined | string;
                                                                                                                                                                                                                                skipOffset: undefined | number;
                                                                                                                                                                                                                                type: AdType;
                                                                                                                                                                                                                                universalAdIds: UniversalAdId[];
                                                                                                                                                                                                                                width: undefined | number;
                                                                                                                                                                                                                            }

                                                                                                                                                                                                                            Hierarchy (View Summary)

                                                                                                                                                                                                                            • Ad
                                                                                                                                                                                                                              • LinearAd
                                                                                                                                                                                                                            Index

                                                                                                                                                                                                                            Properties

                                                                                                                                                                                                                            interface LinearAd {
                                                                                                                                                                                                                                adBreak: AdBreak;
                                                                                                                                                                                                                                adSystem: undefined | string;
                                                                                                                                                                                                                                clickThrough: undefined | string;
                                                                                                                                                                                                                                closedCaptionFiles: ClosedCaptionFile[];
                                                                                                                                                                                                                                companions: CompanionAd[];
                                                                                                                                                                                                                                creativeId: undefined | string;
                                                                                                                                                                                                                                customData: unknown;
                                                                                                                                                                                                                                duration: number;
                                                                                                                                                                                                                                extensions: VastExtension[];
                                                                                                                                                                                                                                height: undefined | number;
                                                                                                                                                                                                                                id: undefined | string;
                                                                                                                                                                                                                                integration?: CustomAdIntegrationKind | AdIntegrationKind;
                                                                                                                                                                                                                                isSlate: boolean;
                                                                                                                                                                                                                                mediaFiles: MediaFile[];
                                                                                                                                                                                                                                mediaUrl?: string;
                                                                                                                                                                                                                                readyState?: AdReadyState;
                                                                                                                                                                                                                                resourceURI: undefined | string;
                                                                                                                                                                                                                                skipOffset: undefined | number;
                                                                                                                                                                                                                                type: AdType;
                                                                                                                                                                                                                                universalAdIds: UniversalAdId[];
                                                                                                                                                                                                                                width: undefined | number;
                                                                                                                                                                                                                            }

                                                                                                                                                                                                                            Hierarchy (View Summary)

                                                                                                                                                                                                                            • Ad
                                                                                                                                                                                                                              • LinearAd
                                                                                                                                                                                                                            Index

                                                                                                                                                                                                                            Properties

                                                                                                                                                                                                                            adBreak adSystem clickThrough closedCaptionFiles diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/List.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/List.html index 6a3018c6af26..0e56797f17ce 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/List.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/List.html @@ -1,5 +1,5 @@ List | THEOplayer Web SDK
                                                                                                                                                                                                                            THEOplayer Web SDK
                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                              Interface List<T>

                                                                                                                                                                                                                              List of generic items.

                                                                                                                                                                                                                              -
                                                                                                                                                                                                                              interface List<T> {
                                                                                                                                                                                                                                  length: number;
                                                                                                                                                                                                                                  item(index: number): undefined | T;
                                                                                                                                                                                                                                  [index: number]: T;
                                                                                                                                                                                                                              }

                                                                                                                                                                                                                              Type Parameters

                                                                                                                                                                                                                              • T

                                                                                                                                                                                                                              Hierarchy (View Summary)

                                                                                                                                                                                                                              Indexable

                                                                                                                                                                                                                              • [index: number]: T

                                                                                                                                                                                                                                The object representing the nth in the list.

                                                                                                                                                                                                                                +
                                                                                                                                                                                                                              interface List<T> {
                                                                                                                                                                                                                                  length: number;
                                                                                                                                                                                                                                  item(index: number): undefined | T;
                                                                                                                                                                                                                                  [index: number]: T;
                                                                                                                                                                                                                              }

                                                                                                                                                                                                                              Type Parameters

                                                                                                                                                                                                                              • T

                                                                                                                                                                                                                              Hierarchy (View Summary)

                                                                                                                                                                                                                              Indexable

                                                                                                                                                                                                                              • [index: number]: T

                                                                                                                                                                                                                                The object representing the nth in the list.

                                                                                                                                                                                                                              Index

                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                              Methods

                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                              length: number

                                                                                                                                                                                                                              The number of items in the list.

                                                                                                                                                                                                                              diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/LoadedDataEvent.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/LoadedDataEvent.html index ee692218217c..bcbb90adfe58 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/LoadedDataEvent.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/LoadedDataEvent.html @@ -1,5 +1,5 @@ LoadedDataEvent | THEOplayer Web SDK
                                                                                                                                                                                                                              THEOplayer Web SDK
                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                Interface LoadedDataEvent

                                                                                                                                                                                                                                Fired when the player can render the media data at the current playback position for the first time.

                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                interface LoadedDataEvent {
                                                                                                                                                                                                                                    currentTime: number;
                                                                                                                                                                                                                                    date: Date;
                                                                                                                                                                                                                                    readyState: number;
                                                                                                                                                                                                                                    type: "loadeddata";
                                                                                                                                                                                                                                }

                                                                                                                                                                                                                                Hierarchy (View Summary)

                                                                                                                                                                                                                                • Event<"loadeddata">
                                                                                                                                                                                                                                  • LoadedDataEvent
                                                                                                                                                                                                                                Index

                                                                                                                                                                                                                                Properties

                                                                                                                                                                                                                                interface LoadedDataEvent {
                                                                                                                                                                                                                                    currentTime: number;
                                                                                                                                                                                                                                    date: Date;
                                                                                                                                                                                                                                    readyState: number;
                                                                                                                                                                                                                                    type: "loadeddata";
                                                                                                                                                                                                                                }

                                                                                                                                                                                                                                Hierarchy (View Summary)

                                                                                                                                                                                                                                • Event<"loadeddata">
                                                                                                                                                                                                                                  • LoadedDataEvent
                                                                                                                                                                                                                                Index

                                                                                                                                                                                                                                Properties

                                                                                                                                                                                                                                currentTime date readyState type diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/LoadedMetadataEvent.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/LoadedMetadataEvent.html index e1a6d7ea41b7..d163f88ef03c 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/LoadedMetadataEvent.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/LoadedMetadataEvent.html @@ -1,5 +1,5 @@ LoadedMetadataEvent | THEOplayer Web SDK
                                                                                                                                                                                                                                THEOplayer Web SDK
                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                  Interface LoadedMetadataEvent

                                                                                                                                                                                                                                  Fired when the player determines the duration and dimensions of the media resource.

                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                  interface LoadedMetadataEvent {
                                                                                                                                                                                                                                      currentTime: number;
                                                                                                                                                                                                                                      date: Date;
                                                                                                                                                                                                                                      readyState: number;
                                                                                                                                                                                                                                      type: "loadedmetadata";
                                                                                                                                                                                                                                  }

                                                                                                                                                                                                                                  Hierarchy (View Summary)

                                                                                                                                                                                                                                  • Event<"loadedmetadata">
                                                                                                                                                                                                                                    • LoadedMetadataEvent
                                                                                                                                                                                                                                  Index

                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                  interface LoadedMetadataEvent {
                                                                                                                                                                                                                                      currentTime: number;
                                                                                                                                                                                                                                      date: Date;
                                                                                                                                                                                                                                      readyState: number;
                                                                                                                                                                                                                                      type: "loadedmetadata";
                                                                                                                                                                                                                                  }

                                                                                                                                                                                                                                  Hierarchy (View Summary)

                                                                                                                                                                                                                                  • Event<"loadedmetadata">
                                                                                                                                                                                                                                    • LoadedMetadataEvent
                                                                                                                                                                                                                                  Index

                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                  currentTime date readyState type diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ManifestErrorEvent.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ManifestErrorEvent.html index ba66e30c726f..57317728f7f0 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ManifestErrorEvent.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ManifestErrorEvent.html @@ -1,12 +1,14 @@ ManifestErrorEvent | THEOplayer Web SDK
                                                                                                                                                                                                                                  THEOplayer Web SDK
                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                    Interface ManifestErrorEvent

                                                                                                                                                                                                                                    Fired when a manifest cannot be loaded.

                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                    interface ManifestErrorEvent {
                                                                                                                                                                                                                                        date: Date;
                                                                                                                                                                                                                                        retryCount: number;
                                                                                                                                                                                                                                        statusCode: undefined | number;
                                                                                                                                                                                                                                        statusMessage: undefined | string;
                                                                                                                                                                                                                                        type: "manifesterror";
                                                                                                                                                                                                                                    }

                                                                                                                                                                                                                                    Hierarchy (View Summary)

                                                                                                                                                                                                                                    • Event<"manifesterror">
                                                                                                                                                                                                                                      • ManifestErrorEvent
                                                                                                                                                                                                                                    Index

                                                                                                                                                                                                                                    Properties

                                                                                                                                                                                                                                    interface ManifestErrorEvent {
                                                                                                                                                                                                                                        date: Date;
                                                                                                                                                                                                                                        retryCount: number;
                                                                                                                                                                                                                                        serviceLocation: undefined | string;
                                                                                                                                                                                                                                        statusCode: undefined | number;
                                                                                                                                                                                                                                        statusMessage: undefined | string;
                                                                                                                                                                                                                                        type: "manifesterror";
                                                                                                                                                                                                                                    }

                                                                                                                                                                                                                                    Hierarchy (View Summary)

                                                                                                                                                                                                                                    • Event<"manifesterror">
                                                                                                                                                                                                                                      • ManifestErrorEvent
                                                                                                                                                                                                                                    Index

                                                                                                                                                                                                                                    Properties

                                                                                                                                                                                                                                    date: Date

                                                                                                                                                                                                                                    The creation date of the event.

                                                                                                                                                                                                                                    retryCount: number

                                                                                                                                                                                                                                    The number of times the loading of a manifest has been tried.

                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    serviceLocation: undefined | string

                                                                                                                                                                                                                                    The service location from which the manifest was requested, if available.

                                                                                                                                                                                                                                    statusCode: undefined | number

                                                                                                                                                                                                                                    The HTTP status code corresponding to the network error returned by the network request.

                                                                                                                                                                                                                                    statusMessage: undefined | string

                                                                                                                                                                                                                                    The network status message describing the error that occurred while requesting the manifest.

                                                                                                                                                                                                                                    type: "manifesterror"

                                                                                                                                                                                                                                    The type of the event.

                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/MeasurableNetworkEstimator.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/MeasurableNetworkEstimator.html index 303d080dc0d3..9c7b4dea6a22 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/MeasurableNetworkEstimator.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/MeasurableNetworkEstimator.html @@ -1,5 +1,5 @@ MeasurableNetworkEstimator | THEOplayer Web SDK
                                                                                                                                                                                                                                    THEOplayer Web SDK
                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                      Interface MeasurableNetworkEstimator

                                                                                                                                                                                                                                      A NetworkEstimator that allows measuring the current network state.

                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                      interface MeasurableNetworkEstimator {
                                                                                                                                                                                                                                          bandwidth: number;
                                                                                                                                                                                                                                          roundTripTime: number;
                                                                                                                                                                                                                                          createMeasurer(request: Request): undefined | RequestMeasurer;
                                                                                                                                                                                                                                      }

                                                                                                                                                                                                                                      Hierarchy (View Summary)

                                                                                                                                                                                                                                      Index

                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                      interface MeasurableNetworkEstimator {
                                                                                                                                                                                                                                          bandwidth: number;
                                                                                                                                                                                                                                          roundTripTime: number;
                                                                                                                                                                                                                                          createMeasurer(request: Request): undefined | RequestMeasurer;
                                                                                                                                                                                                                                      }

                                                                                                                                                                                                                                      Hierarchy (View Summary)

                                                                                                                                                                                                                                      Index

                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                      bandwidth: number

                                                                                                                                                                                                                                      The estimated network bandwidth in bit/s.

                                                                                                                                                                                                                                      diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/MediaMelonConfiguration.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/MediaMelonConfiguration.html index 5b7bb9eeaaa1..958fac7ee73c 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/MediaMelonConfiguration.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/MediaMelonConfiguration.html @@ -1,5 +1,5 @@ MediaMelonConfiguration | THEOplayer Web SDK
                                                                                                                                                                                                                                      THEOplayer Web SDK
                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                        Interface MediaMelonConfiguration

                                                                                                                                                                                                                                        Describes the configuration of the Media Melon integration.

                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                        interface MediaMelonConfiguration {
                                                                                                                                                                                                                                            assetID?: string;
                                                                                                                                                                                                                                            customerID: string;
                                                                                                                                                                                                                                            domainName?: string;
                                                                                                                                                                                                                                            metaURL?: string;
                                                                                                                                                                                                                                            playerName: string;
                                                                                                                                                                                                                                            subscriberID?: string;
                                                                                                                                                                                                                                        }

                                                                                                                                                                                                                                        Hierarchy (View Summary)

                                                                                                                                                                                                                                        Index

                                                                                                                                                                                                                                        Properties

                                                                                                                                                                                                                                        interface MediaMelonConfiguration {
                                                                                                                                                                                                                                            assetID?: string;
                                                                                                                                                                                                                                            customerID: string;
                                                                                                                                                                                                                                            domainName?: string;
                                                                                                                                                                                                                                            metaURL?: string;
                                                                                                                                                                                                                                            playerName: string;
                                                                                                                                                                                                                                            subscriberID?: string;
                                                                                                                                                                                                                                        }

                                                                                                                                                                                                                                        Hierarchy (View Summary)

                                                                                                                                                                                                                                        Index

                                                                                                                                                                                                                                        Properties

                                                                                                                                                                                                                                        assetID? customerID domainName? metaURL? diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/MediaTailorSource.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/MediaTailorSource.html index 7448495bed0b..a8c9fe3a8044 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/MediaTailorSource.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/MediaTailorSource.html @@ -1,5 +1,5 @@ MediaTailorSource | THEOplayer Web SDK
                                                                                                                                                                                                                                        THEOplayer Web SDK
                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                          Interface MediaTailorSource

                                                                                                                                                                                                                                          Represents a source for the MediaTailor integration.

                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                          interface MediaTailorSource {
                                                                                                                                                                                                                                              abr?: SourceAbrConfiguration;
                                                                                                                                                                                                                                              adsParams?: Record<string, string>;
                                                                                                                                                                                                                                              contentProtection?: DRMConfiguration;
                                                                                                                                                                                                                                              crossOrigin?: CrossOriginSetting;
                                                                                                                                                                                                                                              dash?: DashPlaybackConfiguration;
                                                                                                                                                                                                                                              drm?: DRMConfiguration;
                                                                                                                                                                                                                                              hls?: HlsPlaybackConfiguration;
                                                                                                                                                                                                                                              hlsDateRange?: boolean;
                                                                                                                                                                                                                                              ignoreEmbeddedTextTrackTypes?: TextTrackType[];
                                                                                                                                                                                                                                              integration: "mediatailor";
                                                                                                                                                                                                                                              latencyConfiguration?: SourceLatencyConfiguration;
                                                                                                                                                                                                                                              lcevc?: boolean;
                                                                                                                                                                                                                                              liveOffset?: number;
                                                                                                                                                                                                                                              lowLatency?: boolean;
                                                                                                                                                                                                                                              seamlessSwitchStrategy?: SeamlessSwitchStrategy;
                                                                                                                                                                                                                                              src?: string;
                                                                                                                                                                                                                                              ssai?: ServerSideAdInsertionConfiguration;
                                                                                                                                                                                                                                              timeServer?: string;
                                                                                                                                                                                                                                              type?: string;
                                                                                                                                                                                                                                              useCredentials?: boolean;
                                                                                                                                                                                                                                              useManagedMediaSource?: boolean;
                                                                                                                                                                                                                                              useNativePlayback?: boolean;
                                                                                                                                                                                                                                          }

                                                                                                                                                                                                                                          Hierarchy (View Summary)

                                                                                                                                                                                                                                          Index

                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                          interface MediaTailorSource {
                                                                                                                                                                                                                                              abr?: SourceAbrConfiguration;
                                                                                                                                                                                                                                              adsParams?: Record<string, string>;
                                                                                                                                                                                                                                              contentProtection?: DRMConfiguration;
                                                                                                                                                                                                                                              crossOrigin?: CrossOriginSetting;
                                                                                                                                                                                                                                              dash?: DashPlaybackConfiguration;
                                                                                                                                                                                                                                              drm?: DRMConfiguration;
                                                                                                                                                                                                                                              hls?: HlsPlaybackConfiguration;
                                                                                                                                                                                                                                              hlsDateRange?: boolean;
                                                                                                                                                                                                                                              ignoreEmbeddedTextTrackTypes?: TextTrackType[];
                                                                                                                                                                                                                                              integration: "mediatailor";
                                                                                                                                                                                                                                              latencyConfiguration?: SourceLatencyConfiguration;
                                                                                                                                                                                                                                              lcevc?: boolean;
                                                                                                                                                                                                                                              liveOffset?: number;
                                                                                                                                                                                                                                              lowLatency?: boolean;
                                                                                                                                                                                                                                              seamlessSwitchStrategy?: SeamlessSwitchStrategy;
                                                                                                                                                                                                                                              src?: string;
                                                                                                                                                                                                                                              ssai?: ServerSideAdInsertionConfiguration;
                                                                                                                                                                                                                                              timeServer?: string;
                                                                                                                                                                                                                                              type?: string;
                                                                                                                                                                                                                                              useCredentials?: boolean;
                                                                                                                                                                                                                                              useManagedMediaSource?: boolean;
                                                                                                                                                                                                                                              useNativePlayback?: boolean;
                                                                                                                                                                                                                                          }

                                                                                                                                                                                                                                          Hierarchy (View Summary)

                                                                                                                                                                                                                                          Index

                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                          abr? adsParams? contentProtection? crossOrigin? diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/MediaTrack.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/MediaTrack.html index 96122d3d5186..855a90a5371c 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/MediaTrack.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/MediaTrack.html @@ -1,5 +1,5 @@ MediaTrack | THEOplayer Web SDK
                                                                                                                                                                                                                                          THEOplayer Web SDK
                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                            Interface MediaTrack

                                                                                                                                                                                                                                            Represents a media track (audio or video) of a media resource.

                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                            interface MediaTrack {
                                                                                                                                                                                                                                                accessibility: AccessibilityRole[];
                                                                                                                                                                                                                                                activeQuality: undefined | Quality;
                                                                                                                                                                                                                                                enabled: boolean;
                                                                                                                                                                                                                                                id: string;
                                                                                                                                                                                                                                                kind: string;
                                                                                                                                                                                                                                                label: string;
                                                                                                                                                                                                                                                language: string;
                                                                                                                                                                                                                                                qualities: QualityList;
                                                                                                                                                                                                                                                targetQuality: undefined | Quality | Quality[];
                                                                                                                                                                                                                                                uid: number;
                                                                                                                                                                                                                                                addEventListener<TType extends StringKeyOf<MediaTrackEventMap>>(
                                                                                                                                                                                                                                                    type: TType | readonly TType[],
                                                                                                                                                                                                                                                    listener: EventListener<MediaTrackEventMap[TType]>,
                                                                                                                                                                                                                                                ): void;
                                                                                                                                                                                                                                                removeEventListener<TType extends StringKeyOf<MediaTrackEventMap>>(
                                                                                                                                                                                                                                                    type: TType | readonly TType[],
                                                                                                                                                                                                                                                    listener: EventListener<MediaTrackEventMap[TType]>,
                                                                                                                                                                                                                                                ): void;
                                                                                                                                                                                                                                            }

                                                                                                                                                                                                                                            Hierarchy (View Summary)

                                                                                                                                                                                                                                            Index

                                                                                                                                                                                                                                            Properties

                                                                                                                                                                                                                                            interface MediaTrack {
                                                                                                                                                                                                                                                accessibility: AccessibilityRole[];
                                                                                                                                                                                                                                                activeQuality: undefined | Quality;
                                                                                                                                                                                                                                                enabled: boolean;
                                                                                                                                                                                                                                                id: string;
                                                                                                                                                                                                                                                kind: string;
                                                                                                                                                                                                                                                label: string;
                                                                                                                                                                                                                                                language: string;
                                                                                                                                                                                                                                                qualities: QualityList;
                                                                                                                                                                                                                                                targetQuality: undefined | Quality | Quality[];
                                                                                                                                                                                                                                                uid: number;
                                                                                                                                                                                                                                                addEventListener<TType extends StringKeyOf<MediaTrackEventMap>>(
                                                                                                                                                                                                                                                    type: TType | readonly TType[],
                                                                                                                                                                                                                                                    listener: EventListener<MediaTrackEventMap[TType]>,
                                                                                                                                                                                                                                                ): void;
                                                                                                                                                                                                                                                removeEventListener<TType extends StringKeyOf<MediaTrackEventMap>>(
                                                                                                                                                                                                                                                    type: TType | readonly TType[],
                                                                                                                                                                                                                                                    listener: EventListener<MediaTrackEventMap[TType]>,
                                                                                                                                                                                                                                                ): void;
                                                                                                                                                                                                                                            }

                                                                                                                                                                                                                                            Hierarchy (View Summary)

                                                                                                                                                                                                                                            Index

                                                                                                                                                                                                                                            Properties

                                                                                                                                                                                                                                            accessibility activeQuality enabled id diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/MediaTrackEventMap.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/MediaTrackEventMap.html index 871e97de5ce3..dbdebacf304a 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/MediaTrackEventMap.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/MediaTrackEventMap.html @@ -1,5 +1,5 @@ MediaTrackEventMap | THEOplayer Web SDK
                                                                                                                                                                                                                                            THEOplayer Web SDK
                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                              Interface MediaTrackEventMap

                                                                                                                                                                                                                                              The events fired by a MediaTrack.

                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                              interface MediaTrackEventMap {
                                                                                                                                                                                                                                                  activequalitychanged: QualityEvent<"activequalitychanged">;
                                                                                                                                                                                                                                                  change: TrackChangeEvent;
                                                                                                                                                                                                                                                  qualityunavailable: QualityEvent<"qualityunavailable">;
                                                                                                                                                                                                                                                  targetqualitychanged: TargetQualityChangedEvent;
                                                                                                                                                                                                                                                  update: TrackUpdateEvent;
                                                                                                                                                                                                                                              }

                                                                                                                                                                                                                                              Hierarchy (View Summary)

                                                                                                                                                                                                                                              Index

                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                              interface MediaTrackEventMap {
                                                                                                                                                                                                                                                  activequalitychanged: QualityEvent<"activequalitychanged">;
                                                                                                                                                                                                                                                  change: TrackChangeEvent;
                                                                                                                                                                                                                                                  qualityunavailable: QualityEvent<"qualityunavailable">;
                                                                                                                                                                                                                                                  targetqualitychanged: TargetQualityChangedEvent;
                                                                                                                                                                                                                                                  update: TrackUpdateEvent;
                                                                                                                                                                                                                                              }

                                                                                                                                                                                                                                              Hierarchy (View Summary)

                                                                                                                                                                                                                                              Index

                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                              activequalitychanged change qualityunavailable targetqualitychanged diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/MediaTrackList.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/MediaTrackList.html index 57bdcfeed903..b0212666863e 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/MediaTrackList.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/MediaTrackList.html @@ -1,5 +1,5 @@ MediaTrackList | THEOplayer Web SDK
                                                                                                                                                                                                                                              THEOplayer Web SDK
                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                Interface MediaTrackList

                                                                                                                                                                                                                                                List of media tracks.

                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                interface MediaTrackList {
                                                                                                                                                                                                                                                    length: number;
                                                                                                                                                                                                                                                    addEventListener<TType extends keyof TrackListEventMap>(
                                                                                                                                                                                                                                                        type: TType | readonly TType[],
                                                                                                                                                                                                                                                        listener: EventListener<TrackListEventMap[TType]>,
                                                                                                                                                                                                                                                    ): void;
                                                                                                                                                                                                                                                    item(index: number): MediaTrack;
                                                                                                                                                                                                                                                    removeEventListener<TType extends keyof TrackListEventMap>(
                                                                                                                                                                                                                                                        type: TType | readonly TType[],
                                                                                                                                                                                                                                                        listener: EventListener<TrackListEventMap[TType]>,
                                                                                                                                                                                                                                                    ): void;
                                                                                                                                                                                                                                                    readonly [index: number]: MediaTrack;
                                                                                                                                                                                                                                                }

                                                                                                                                                                                                                                                Hierarchy (View Summary)

                                                                                                                                                                                                                                                Indexable

                                                                                                                                                                                                                                                • readonly [index: number]: MediaTrack

                                                                                                                                                                                                                                                  Index signature to get the media track at the requested index in the list.

                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                interface MediaTrackList {
                                                                                                                                                                                                                                                    length: number;
                                                                                                                                                                                                                                                    addEventListener<TType extends keyof TrackListEventMap>(
                                                                                                                                                                                                                                                        type: TType | readonly TType[],
                                                                                                                                                                                                                                                        listener: EventListener<TrackListEventMap[TType]>,
                                                                                                                                                                                                                                                    ): void;
                                                                                                                                                                                                                                                    item(index: number): MediaTrack;
                                                                                                                                                                                                                                                    removeEventListener<TType extends keyof TrackListEventMap>(
                                                                                                                                                                                                                                                        type: TType | readonly TType[],
                                                                                                                                                                                                                                                        listener: EventListener<TrackListEventMap[TType]>,
                                                                                                                                                                                                                                                    ): void;
                                                                                                                                                                                                                                                    readonly [index: number]: MediaTrack;
                                                                                                                                                                                                                                                }

                                                                                                                                                                                                                                                Hierarchy (View Summary)

                                                                                                                                                                                                                                                Indexable

                                                                                                                                                                                                                                                • readonly [index: number]: MediaTrack

                                                                                                                                                                                                                                                  Index signature to get the media track at the requested index in the list.

                                                                                                                                                                                                                                                Index

                                                                                                                                                                                                                                                Properties

                                                                                                                                                                                                                                                Methods

                                                                                                                                                                                                                                                addEventListener item diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/MetadataDescription.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/MetadataDescription.html index 66f77439a12d..d58e01063842 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/MetadataDescription.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/MetadataDescription.html @@ -1,5 +1,5 @@ MetadataDescription | THEOplayer Web SDK
                                                                                                                                                                                                                                                THEOplayer Web SDK
                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                  Interface MetadataDescription

                                                                                                                                                                                                                                                  Describes the metadata of a Chromecast source.


                                                                                                                                                                                                                                                  - Available since v2.21.0.

                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                  interface MetadataDescription {
                                                                                                                                                                                                                                                      title?: string;
                                                                                                                                                                                                                                                      [metadataKey: string]: any;
                                                                                                                                                                                                                                                  }

                                                                                                                                                                                                                                                  Hierarchy (View Summary)

                                                                                                                                                                                                                                                  Indexable

                                                                                                                                                                                                                                                  • [metadataKey: string]: any
                                                                                                                                                                                                                                                  Index

                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                  interface MetadataDescription {
                                                                                                                                                                                                                                                      title?: string;
                                                                                                                                                                                                                                                      [metadataKey: string]: any;
                                                                                                                                                                                                                                                  }

                                                                                                                                                                                                                                                  Hierarchy (View Summary)

                                                                                                                                                                                                                                                  Indexable

                                                                                                                                                                                                                                                  • [metadataKey: string]: any
                                                                                                                                                                                                                                                  Index

                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                  title?: string

                                                                                                                                                                                                                                                  The title of the content.

                                                                                                                                                                                                                                                  diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/Millicast.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/Millicast.html index a38281512f55..980bbd657fa7 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/Millicast.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/Millicast.html @@ -1,5 +1,5 @@ Millicast | THEOplayer Web SDK
                                                                                                                                                                                                                                                  THEOplayer Web SDK
                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                    Interface Millicast

                                                                                                                                                                                                                                                    The Millicast API.

                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                    interface Millicast {
                                                                                                                                                                                                                                                        addEventListener<TType extends "stats">(
                                                                                                                                                                                                                                                            type: TType | readonly TType[],
                                                                                                                                                                                                                                                            listener: EventListener<MillicastEventMap[TType]>,
                                                                                                                                                                                                                                                        ): void;
                                                                                                                                                                                                                                                        diagnose(config: Record<string, any>): Record<string, any>;
                                                                                                                                                                                                                                                        removeEventListener<TType extends "stats">(
                                                                                                                                                                                                                                                            type: TType | readonly TType[],
                                                                                                                                                                                                                                                            listener: EventListener<MillicastEventMap[TType]>,
                                                                                                                                                                                                                                                        ): void;
                                                                                                                                                                                                                                                    }

                                                                                                                                                                                                                                                    Hierarchy (View Summary)

                                                                                                                                                                                                                                                    Index

                                                                                                                                                                                                                                                    Methods

                                                                                                                                                                                                                                                    interface Millicast {
                                                                                                                                                                                                                                                        addEventListener<TType extends "stats">(
                                                                                                                                                                                                                                                            type: TType | readonly TType[],
                                                                                                                                                                                                                                                            listener: EventListener<MillicastEventMap[TType]>,
                                                                                                                                                                                                                                                        ): void;
                                                                                                                                                                                                                                                        diagnose(config: Record<string, any>): Record<string, any>;
                                                                                                                                                                                                                                                        removeEventListener<TType extends "stats">(
                                                                                                                                                                                                                                                            type: TType | readonly TType[],
                                                                                                                                                                                                                                                            listener: EventListener<MillicastEventMap[TType]>,
                                                                                                                                                                                                                                                        ): void;
                                                                                                                                                                                                                                                    }

                                                                                                                                                                                                                                                    Hierarchy (View Summary)

                                                                                                                                                                                                                                                    Index

                                                                                                                                                                                                                                                    Methods

                                                                                                                                                                                                                                                    • Add the given listener for the given event type(s).

                                                                                                                                                                                                                                                      diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/MillicastMetadataCue.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/MillicastMetadataCue.html index e84fabe07330..dded93adcd66 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/MillicastMetadataCue.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/MillicastMetadataCue.html @@ -1,7 +1,7 @@ MillicastMetadataCue | THEOplayer Web SDK
                                                                                                                                                                                                                                                      THEOplayer Web SDK
                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                        Interface MillicastMetadataCue

                                                                                                                                                                                                                                                        Represents a metadata cue of a Millicast source.

                                                                                                                                                                                                                                                        In order to receive Millicast metadata, you must set metadata to true in MillicastSource.connectOptions.

                                                                                                                                                                                                                                                        interface MillicastMetadataCue {
                                                                                                                                                                                                                                                            content: undefined;
                                                                                                                                                                                                                                                            endTime: number;
                                                                                                                                                                                                                                                            id: string;
                                                                                                                                                                                                                                                            mid: string;
                                                                                                                                                                                                                                                            startTime: number;
                                                                                                                                                                                                                                                            timecode: undefined | Date;
                                                                                                                                                                                                                                                            track: TextTrack;
                                                                                                                                                                                                                                                            uid: number;
                                                                                                                                                                                                                                                            unregistered: undefined | object | Uint8Array<ArrayBuffer>;
                                                                                                                                                                                                                                                            uuid: undefined | string;
                                                                                                                                                                                                                                                            addEventListener<TType extends keyof TextTrackCueEventMap>(
                                                                                                                                                                                                                                                                type: TType | readonly TType[],
                                                                                                                                                                                                                                                                listener: EventListener<TextTrackCueEventMap[TType]>,
                                                                                                                                                                                                                                                            ): void;
                                                                                                                                                                                                                                                            removeEventListener<TType extends keyof TextTrackCueEventMap>(
                                                                                                                                                                                                                                                                type: TType | readonly TType[],
                                                                                                                                                                                                                                                                listener: EventListener<TextTrackCueEventMap[TType]>,
                                                                                                                                                                                                                                                            ): void;
                                                                                                                                                                                                                                                        }

                                                                                                                                                                                                                                                        Hierarchy (View Summary)

                                                                                                                                                                                                                                                        Index

                                                                                                                                                                                                                                                        Properties

                                                                                                                                                                                                                                                        interface MillicastMetadataCue {
                                                                                                                                                                                                                                                            content: undefined;
                                                                                                                                                                                                                                                            endTime: number;
                                                                                                                                                                                                                                                            id: string;
                                                                                                                                                                                                                                                            mid: string;
                                                                                                                                                                                                                                                            startTime: number;
                                                                                                                                                                                                                                                            timecode: undefined | Date;
                                                                                                                                                                                                                                                            track: TextTrack;
                                                                                                                                                                                                                                                            uid: number;
                                                                                                                                                                                                                                                            unregistered: undefined | object | Uint8Array<ArrayBuffer>;
                                                                                                                                                                                                                                                            uuid: undefined | string;
                                                                                                                                                                                                                                                            addEventListener<TType extends keyof TextTrackCueEventMap>(
                                                                                                                                                                                                                                                                type: TType | readonly TType[],
                                                                                                                                                                                                                                                                listener: EventListener<TextTrackCueEventMap[TType]>,
                                                                                                                                                                                                                                                            ): void;
                                                                                                                                                                                                                                                            removeEventListener<TType extends keyof TextTrackCueEventMap>(
                                                                                                                                                                                                                                                                type: TType | readonly TType[],
                                                                                                                                                                                                                                                                listener: EventListener<TextTrackCueEventMap[TType]>,
                                                                                                                                                                                                                                                            ): void;
                                                                                                                                                                                                                                                        }

                                                                                                                                                                                                                                                        Hierarchy (View Summary)

                                                                                                                                                                                                                                                        Index

                                                                                                                                                                                                                                                        Properties

                                                                                                                                                                                                                                                        content endTime id mid diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/MillicastSource.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/MillicastSource.html index 6551283c6d2d..a97cb021f4ef 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/MillicastSource.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/MillicastSource.html @@ -1,5 +1,5 @@ MillicastSource | THEOplayer Web SDK
                                                                                                                                                                                                                                                        THEOplayer Web SDK
                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                          Interface MillicastSource

                                                                                                                                                                                                                                                          Represents a source for a Millicast live stream.

                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                          interface MillicastSource {
                                                                                                                                                                                                                                                              abr?: SourceAbrConfiguration;
                                                                                                                                                                                                                                                              apiUrl?: string;
                                                                                                                                                                                                                                                              connectOptions?: Record<string, any>;
                                                                                                                                                                                                                                                              contentProtection?: DRMConfiguration;
                                                                                                                                                                                                                                                              crossOrigin?: CrossOriginSetting;
                                                                                                                                                                                                                                                              dash?: DashPlaybackConfiguration;
                                                                                                                                                                                                                                                              drm?: DRMConfiguration;
                                                                                                                                                                                                                                                              hls?: HlsPlaybackConfiguration;
                                                                                                                                                                                                                                                              hlsDateRange?: boolean;
                                                                                                                                                                                                                                                              ignoreEmbeddedTextTrackTypes?: TextTrackType[];
                                                                                                                                                                                                                                                              integration?: SourceIntegrationId;
                                                                                                                                                                                                                                                              latencyConfiguration?: SourceLatencyConfiguration;
                                                                                                                                                                                                                                                              lcevc?: boolean;
                                                                                                                                                                                                                                                              liveOffset?: number;
                                                                                                                                                                                                                                                              lowLatency?: boolean;
                                                                                                                                                                                                                                                              seamlessSwitchStrategy?: SeamlessSwitchStrategy;
                                                                                                                                                                                                                                                              src: string;
                                                                                                                                                                                                                                                              ssai?: ServerSideAdInsertionConfiguration;
                                                                                                                                                                                                                                                              statsIntervalMs?: number;
                                                                                                                                                                                                                                                              streamAccountId: string;
                                                                                                                                                                                                                                                              subscriberToken?: string;
                                                                                                                                                                                                                                                              timeServer?: string;
                                                                                                                                                                                                                                                              type: "millicast";
                                                                                                                                                                                                                                                              useCredentials?: boolean;
                                                                                                                                                                                                                                                              useManagedMediaSource?: boolean;
                                                                                                                                                                                                                                                              useNativePlayback?: boolean;
                                                                                                                                                                                                                                                          }

                                                                                                                                                                                                                                                          Hierarchy (View Summary)

                                                                                                                                                                                                                                                          Index

                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                          interface MillicastSource {
                                                                                                                                                                                                                                                              abr?: SourceAbrConfiguration;
                                                                                                                                                                                                                                                              apiUrl?: string;
                                                                                                                                                                                                                                                              connectOptions?: Record<string, any>;
                                                                                                                                                                                                                                                              contentProtection?: DRMConfiguration;
                                                                                                                                                                                                                                                              crossOrigin?: CrossOriginSetting;
                                                                                                                                                                                                                                                              dash?: DashPlaybackConfiguration;
                                                                                                                                                                                                                                                              drm?: DRMConfiguration;
                                                                                                                                                                                                                                                              hls?: HlsPlaybackConfiguration;
                                                                                                                                                                                                                                                              hlsDateRange?: boolean;
                                                                                                                                                                                                                                                              ignoreEmbeddedTextTrackTypes?: TextTrackType[];
                                                                                                                                                                                                                                                              integration?: SourceIntegrationId;
                                                                                                                                                                                                                                                              latencyConfiguration?: SourceLatencyConfiguration;
                                                                                                                                                                                                                                                              lcevc?: boolean;
                                                                                                                                                                                                                                                              liveOffset?: number;
                                                                                                                                                                                                                                                              lowLatency?: boolean;
                                                                                                                                                                                                                                                              seamlessSwitchStrategy?: SeamlessSwitchStrategy;
                                                                                                                                                                                                                                                              src: string;
                                                                                                                                                                                                                                                              ssai?: ServerSideAdInsertionConfiguration;
                                                                                                                                                                                                                                                              statsIntervalMs?: number;
                                                                                                                                                                                                                                                              streamAccountId: string;
                                                                                                                                                                                                                                                              subscriberToken?: string;
                                                                                                                                                                                                                                                              timeServer?: string;
                                                                                                                                                                                                                                                              type: "millicast";
                                                                                                                                                                                                                                                              useCredentials?: boolean;
                                                                                                                                                                                                                                                              useManagedMediaSource?: boolean;
                                                                                                                                                                                                                                                              useNativePlayback?: boolean;
                                                                                                                                                                                                                                                          }

                                                                                                                                                                                                                                                          Hierarchy (View Summary)

                                                                                                                                                                                                                                                          Index

                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                          abr? apiUrl? connectOptions? contentProtection? diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/MillicastStatsEvent.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/MillicastStatsEvent.html index f514c31e62e2..cb30b162aefe 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/MillicastStatsEvent.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/MillicastStatsEvent.html @@ -2,7 +2,7 @@ Dispatched only when the Millicast source is loaded and at an interval configured using MillicastSource.statsIntervalMs. See the Millicast SDK API reference for details on the connection stats included in the event.

                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                          interface MillicastStatsEvent {
                                                                                                                                                                                                                                                              date: Date;
                                                                                                                                                                                                                                                              stats: Record<string, any>;
                                                                                                                                                                                                                                                              type: "stats";
                                                                                                                                                                                                                                                          }

                                                                                                                                                                                                                                                          Hierarchy (View Summary)

                                                                                                                                                                                                                                                          • Event<"stats">
                                                                                                                                                                                                                                                            • MillicastStatsEvent
                                                                                                                                                                                                                                                          Index

                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                          interface MillicastStatsEvent {
                                                                                                                                                                                                                                                              date: Date;
                                                                                                                                                                                                                                                              stats: Record<string, any>;
                                                                                                                                                                                                                                                              type: "stats";
                                                                                                                                                                                                                                                          }

                                                                                                                                                                                                                                                          Hierarchy (View Summary)

                                                                                                                                                                                                                                                          • Event<"stats">
                                                                                                                                                                                                                                                            • MillicastStatsEvent
                                                                                                                                                                                                                                                          Index

                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                          date: Date

                                                                                                                                                                                                                                                          The creation date of the event.

                                                                                                                                                                                                                                                          diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/MoatConfiguration.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/MoatConfiguration.html index 5a78586b4cec..1621db5f7939 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/MoatConfiguration.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/MoatConfiguration.html @@ -1,6 +1,6 @@ MoatConfiguration | THEOplayer Web SDK
                                                                                                                                                                                                                                                          THEOplayer Web SDK
                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                            Interface MoatConfiguration

                                                                                                                                                                                                                                                            Describes configuration of the Moat integration.


                                                                                                                                                                                                                                                            - Available since v2.27.0.

                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                            interface MoatConfiguration {
                                                                                                                                                                                                                                                                integration: "moat";
                                                                                                                                                                                                                                                                partnerCode: string;
                                                                                                                                                                                                                                                            }

                                                                                                                                                                                                                                                            Hierarchy (View Summary)

                                                                                                                                                                                                                                                            Index

                                                                                                                                                                                                                                                            Properties

                                                                                                                                                                                                                                                            interface MoatConfiguration {
                                                                                                                                                                                                                                                                integration: "moat";
                                                                                                                                                                                                                                                                partnerCode: string;
                                                                                                                                                                                                                                                            }

                                                                                                                                                                                                                                                            Hierarchy (View Summary)

                                                                                                                                                                                                                                                            Index

                                                                                                                                                                                                                                                            Properties

                                                                                                                                                                                                                                                            integration: "moat"

                                                                                                                                                                                                                                                            The identifier of the analytics integration.

                                                                                                                                                                                                                                                            partnerCode: string

                                                                                                                                                                                                                                                            The Moat partner code.

                                                                                                                                                                                                                                                            diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/Network.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/Network.html index cc5976530193..cbec97edf76b 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/Network.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/Network.html @@ -1,6 +1,6 @@ Network | THEOplayer Web SDK
                                                                                                                                                                                                                                                            THEOplayer Web SDK
                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                              Interface Network

                                                                                                                                                                                                                                                              The network API.


                                                                                                                                                                                                                                                              - Available since v2.21.0.

                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                              interface Network {
                                                                                                                                                                                                                                                                  estimator: NetworkEstimator;
                                                                                                                                                                                                                                                                  online: boolean;
                                                                                                                                                                                                                                                                  addEventListener<TType extends keyof NetworkEventMap>(
                                                                                                                                                                                                                                                                      type: TType | readonly TType[],
                                                                                                                                                                                                                                                                      listener: EventListener<NetworkEventMap[TType]>,
                                                                                                                                                                                                                                                                  ): void;
                                                                                                                                                                                                                                                                  addRequestInterceptor(interceptor: RequestInterceptor): void;
                                                                                                                                                                                                                                                                  addResponseInterceptor(interceptor: ResponseInterceptor): void;
                                                                                                                                                                                                                                                                  removeEventListener<TType extends keyof NetworkEventMap>(
                                                                                                                                                                                                                                                                      type: TType | readonly TType[],
                                                                                                                                                                                                                                                                      listener: EventListener<NetworkEventMap[TType]>,
                                                                                                                                                                                                                                                                  ): void;
                                                                                                                                                                                                                                                                  removeRequestInterceptor(interceptor: RequestInterceptor): void;
                                                                                                                                                                                                                                                                  removeResponseInterceptor(interceptor: ResponseInterceptor): void;
                                                                                                                                                                                                                                                                  setEstimator(estimator: undefined | MeasurableNetworkEstimator): void;
                                                                                                                                                                                                                                                              }

                                                                                                                                                                                                                                                              Hierarchy (View Summary)

                                                                                                                                                                                                                                                              Index

                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                              interface Network {
                                                                                                                                                                                                                                                                  estimator: NetworkEstimator;
                                                                                                                                                                                                                                                                  online: boolean;
                                                                                                                                                                                                                                                                  addEventListener<TType extends keyof NetworkEventMap>(
                                                                                                                                                                                                                                                                      type: TType | readonly TType[],
                                                                                                                                                                                                                                                                      listener: EventListener<NetworkEventMap[TType]>,
                                                                                                                                                                                                                                                                  ): void;
                                                                                                                                                                                                                                                                  addRequestInterceptor(interceptor: RequestInterceptor): void;
                                                                                                                                                                                                                                                                  addResponseInterceptor(interceptor: ResponseInterceptor): void;
                                                                                                                                                                                                                                                                  removeEventListener<TType extends keyof NetworkEventMap>(
                                                                                                                                                                                                                                                                      type: TType | readonly TType[],
                                                                                                                                                                                                                                                                      listener: EventListener<NetworkEventMap[TType]>,
                                                                                                                                                                                                                                                                  ): void;
                                                                                                                                                                                                                                                                  removeRequestInterceptor(interceptor: RequestInterceptor): void;
                                                                                                                                                                                                                                                                  removeResponseInterceptor(interceptor: ResponseInterceptor): void;
                                                                                                                                                                                                                                                                  setEstimator(estimator: undefined | MeasurableNetworkEstimator): void;
                                                                                                                                                                                                                                                              }

                                                                                                                                                                                                                                                              Hierarchy (View Summary)

                                                                                                                                                                                                                                                              Index

                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                              Methods

                                                                                                                                                                                                                                                              addEventListener addRequestInterceptor diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/NetworkEstimator.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/NetworkEstimator.html index 3d197a8a88a1..580d829e6d1f 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/NetworkEstimator.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/NetworkEstimator.html @@ -1,5 +1,5 @@ NetworkEstimator | THEOplayer Web SDK
                                                                                                                                                                                                                                                              THEOplayer Web SDK
                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                Interface NetworkEstimator

                                                                                                                                                                                                                                                                Provides estimates on the current network state.

                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                interface NetworkEstimator {
                                                                                                                                                                                                                                                                    bandwidth: number;
                                                                                                                                                                                                                                                                    roundTripTime: number;
                                                                                                                                                                                                                                                                }

                                                                                                                                                                                                                                                                Hierarchy (View Summary)

                                                                                                                                                                                                                                                                Index

                                                                                                                                                                                                                                                                Properties

                                                                                                                                                                                                                                                                interface NetworkEstimator {
                                                                                                                                                                                                                                                                    bandwidth: number;
                                                                                                                                                                                                                                                                    roundTripTime: number;
                                                                                                                                                                                                                                                                }

                                                                                                                                                                                                                                                                Hierarchy (View Summary)

                                                                                                                                                                                                                                                                Index

                                                                                                                                                                                                                                                                Properties

                                                                                                                                                                                                                                                                bandwidth: number

                                                                                                                                                                                                                                                                The estimated network bandwidth in bit/s.

                                                                                                                                                                                                                                                                roundTripTime: number

                                                                                                                                                                                                                                                                The estimated HTTP request round trip time.

                                                                                                                                                                                                                                                                diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/NetworkEstimatorController.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/NetworkEstimatorController.html index 6201edee09f4..f827f79067ee 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/NetworkEstimatorController.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/NetworkEstimatorController.html @@ -1,6 +1,6 @@ NetworkEstimatorController | THEOplayer Web SDK
                                                                                                                                                                                                                                                                THEOplayer Web SDK
                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                  Interface NetworkEstimatorController

                                                                                                                                                                                                                                                                  Network estimator API which can be used to get or set the active MeasurableNetworkEstimator.


                                                                                                                                                                                                                                                                  - EXPERIMENTAL: Setting an external MeasurableNetworkEstimator implementation will only affect playback of HLS streams.

                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                  interface NetworkEstimatorController {
                                                                                                                                                                                                                                                                      estimator: NetworkEstimator;
                                                                                                                                                                                                                                                                      setEstimator(estimator: undefined | MeasurableNetworkEstimator): void;
                                                                                                                                                                                                                                                                  }

                                                                                                                                                                                                                                                                  Hierarchy (View Summary)

                                                                                                                                                                                                                                                                  Index

                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                  interface NetworkEstimatorController {
                                                                                                                                                                                                                                                                      estimator: NetworkEstimator;
                                                                                                                                                                                                                                                                      setEstimator(estimator: undefined | MeasurableNetworkEstimator): void;
                                                                                                                                                                                                                                                                  }

                                                                                                                                                                                                                                                                  Hierarchy (View Summary)

                                                                                                                                                                                                                                                                  Index

                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                  Methods

                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                  estimator: NetworkEstimator

                                                                                                                                                                                                                                                                  Returns the active MeasurableNetworkEstimator. An internal implementation is provided by default.

                                                                                                                                                                                                                                                                  Methods

                                                                                                                                                                                                                                                                  • Set a MeasurableNetworkEstimator implementation for internal use by the player.

                                                                                                                                                                                                                                                                    diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/NetworkInterceptorController.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/NetworkInterceptorController.html index 7c793336342e..a2ffaf05bf63 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/NetworkInterceptorController.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/NetworkInterceptorController.html @@ -1,7 +1,7 @@ NetworkInterceptorController | THEOplayer Web SDK
                                                                                                                                                                                                                                                                    THEOplayer Web SDK
                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                      Interface NetworkInterceptorController

                                                                                                                                                                                                                                                                      Network interceptor API which can be used to intercept network requests and responses.


                                                                                                                                                                                                                                                                      - Request interceptors will be executed in the order they were added.
                                                                                                                                                                                                                                                                      - InterceptableRequest.respondWith can be called at most once, otherwise an error will be thrown.

                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                      interface NetworkInterceptorController {
                                                                                                                                                                                                                                                                          addRequestInterceptor(interceptor: RequestInterceptor): void;
                                                                                                                                                                                                                                                                          addResponseInterceptor(interceptor: ResponseInterceptor): void;
                                                                                                                                                                                                                                                                          removeRequestInterceptor(interceptor: RequestInterceptor): void;
                                                                                                                                                                                                                                                                          removeResponseInterceptor(interceptor: ResponseInterceptor): void;
                                                                                                                                                                                                                                                                      }

                                                                                                                                                                                                                                                                      Hierarchy (View Summary)

                                                                                                                                                                                                                                                                      • NetworkInterceptorController
                                                                                                                                                                                                                                                                      Index
                                                                                                                                                                                                                                                                      interface NetworkInterceptorController {
                                                                                                                                                                                                                                                                          addRequestInterceptor(interceptor: RequestInterceptor): void;
                                                                                                                                                                                                                                                                          addResponseInterceptor(interceptor: ResponseInterceptor): void;
                                                                                                                                                                                                                                                                          removeRequestInterceptor(interceptor: RequestInterceptor): void;
                                                                                                                                                                                                                                                                          removeResponseInterceptor(interceptor: ResponseInterceptor): void;
                                                                                                                                                                                                                                                                      }

                                                                                                                                                                                                                                                                      Hierarchy (View Summary)

                                                                                                                                                                                                                                                                      • NetworkInterceptorController
                                                                                                                                                                                                                                                                      Index

                                                                                                                                                                                                                                                                      Methods

                                                                                                                                                                                                                                                                      addRequestInterceptor addResponseInterceptor removeRequestInterceptor removeResponseInterceptor diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/NonLinearAd.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/NonLinearAd.html index f862eb2f86f2..fcdaa9e3ec54 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/NonLinearAd.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/NonLinearAd.html @@ -1,5 +1,5 @@ NonLinearAd | THEOplayer Web SDK
                                                                                                                                                                                                                                                                      THEOplayer Web SDK
                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                        Interface NonLinearAd

                                                                                                                                                                                                                                                                        Represents a non-linear ad in the VAST specification.

                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        interface NonLinearAd {
                                                                                                                                                                                                                                                                            adBreak: AdBreak;
                                                                                                                                                                                                                                                                            adSystem: undefined | string;
                                                                                                                                                                                                                                                                            altText: undefined | string;
                                                                                                                                                                                                                                                                            clickThrough: undefined | string;
                                                                                                                                                                                                                                                                            companions: CompanionAd[];
                                                                                                                                                                                                                                                                            contentHTML: undefined | string;
                                                                                                                                                                                                                                                                            creativeId: undefined | string;
                                                                                                                                                                                                                                                                            customData: unknown;
                                                                                                                                                                                                                                                                            duration: undefined | number;
                                                                                                                                                                                                                                                                            height: undefined | number;
                                                                                                                                                                                                                                                                            id: undefined | string;
                                                                                                                                                                                                                                                                            integration?: CustomAdIntegrationKind | AdIntegrationKind;
                                                                                                                                                                                                                                                                            isSlate: boolean;
                                                                                                                                                                                                                                                                            readyState?: AdReadyState;
                                                                                                                                                                                                                                                                            resourceURI: undefined | string;
                                                                                                                                                                                                                                                                            skipOffset: undefined | number;
                                                                                                                                                                                                                                                                            type: AdType;
                                                                                                                                                                                                                                                                            universalAdIds: UniversalAdId[];
                                                                                                                                                                                                                                                                            width: undefined | number;
                                                                                                                                                                                                                                                                        }

                                                                                                                                                                                                                                                                        Hierarchy (View Summary)

                                                                                                                                                                                                                                                                        • Ad
                                                                                                                                                                                                                                                                          • NonLinearAd
                                                                                                                                                                                                                                                                        Index

                                                                                                                                                                                                                                                                        Properties

                                                                                                                                                                                                                                                                        interface NonLinearAd {
                                                                                                                                                                                                                                                                            adBreak: AdBreak;
                                                                                                                                                                                                                                                                            adSystem: undefined | string;
                                                                                                                                                                                                                                                                            altText: undefined | string;
                                                                                                                                                                                                                                                                            clickThrough: undefined | string;
                                                                                                                                                                                                                                                                            companions: CompanionAd[];
                                                                                                                                                                                                                                                                            contentHTML: undefined | string;
                                                                                                                                                                                                                                                                            creativeId: undefined | string;
                                                                                                                                                                                                                                                                            customData: unknown;
                                                                                                                                                                                                                                                                            duration: undefined | number;
                                                                                                                                                                                                                                                                            height: undefined | number;
                                                                                                                                                                                                                                                                            id: undefined | string;
                                                                                                                                                                                                                                                                            integration?: CustomAdIntegrationKind | AdIntegrationKind;
                                                                                                                                                                                                                                                                            isSlate: boolean;
                                                                                                                                                                                                                                                                            readyState?: AdReadyState;
                                                                                                                                                                                                                                                                            resourceURI: undefined | string;
                                                                                                                                                                                                                                                                            skipOffset: undefined | number;
                                                                                                                                                                                                                                                                            type: AdType;
                                                                                                                                                                                                                                                                            universalAdIds: UniversalAdId[];
                                                                                                                                                                                                                                                                            width: undefined | number;
                                                                                                                                                                                                                                                                        }

                                                                                                                                                                                                                                                                        Hierarchy (View Summary)

                                                                                                                                                                                                                                                                        • Ad
                                                                                                                                                                                                                                                                          • NonLinearAd
                                                                                                                                                                                                                                                                        Index

                                                                                                                                                                                                                                                                        Properties

                                                                                                                                                                                                                                                                        adBreak adSystem altText clickThrough diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/OverlayInterstitial.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/OverlayInterstitial.html index 243ee398b946..7178c39f48be 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/OverlayInterstitial.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/OverlayInterstitial.html @@ -1,5 +1,5 @@ OverlayInterstitial | THEOplayer Web SDK
                                                                                                                                                                                                                                                                        THEOplayer Web SDK
                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                          Interface OverlayInterstitial

                                                                                                                                                                                                                                                                          The THEOads interstitial that corresponds with overlay playback.

                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                          interface OverlayInterstitial {
                                                                                                                                                                                                                                                                              adTagParameters: Record<string, string>;
                                                                                                                                                                                                                                                                              clickThrough: undefined | string;
                                                                                                                                                                                                                                                                              duration: undefined | number;
                                                                                                                                                                                                                                                                              id: string;
                                                                                                                                                                                                                                                                              imageUrl: undefined | string;
                                                                                                                                                                                                                                                                              position: OverlayPosition;
                                                                                                                                                                                                                                                                              size: OverlaySize;
                                                                                                                                                                                                                                                                              startTime: number;
                                                                                                                                                                                                                                                                              type: "overlay";
                                                                                                                                                                                                                                                                          }

                                                                                                                                                                                                                                                                          Hierarchy (View Summary)

                                                                                                                                                                                                                                                                          Index

                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                          interface OverlayInterstitial {
                                                                                                                                                                                                                                                                              adTagParameters: Record<string, string>;
                                                                                                                                                                                                                                                                              clickThrough: undefined | string;
                                                                                                                                                                                                                                                                              duration: undefined | number;
                                                                                                                                                                                                                                                                              id: string;
                                                                                                                                                                                                                                                                              imageUrl: undefined | string;
                                                                                                                                                                                                                                                                              position: OverlayPosition;
                                                                                                                                                                                                                                                                              size: OverlaySize;
                                                                                                                                                                                                                                                                              startTime: number;
                                                                                                                                                                                                                                                                              type: "overlay";
                                                                                                                                                                                                                                                                          }

                                                                                                                                                                                                                                                                          Hierarchy (View Summary)

                                                                                                                                                                                                                                                                          Index

                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                          adTagParameters clickThrough duration id diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/PauseEvent.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/PauseEvent.html index 7c928d126aeb..d3f5b8457c13 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/PauseEvent.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/PauseEvent.html @@ -1,5 +1,5 @@ PauseEvent | THEOplayer Web SDK
                                                                                                                                                                                                                                                                          THEOplayer Web SDK
                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                            Interface PauseEvent

                                                                                                                                                                                                                                                                            Fired when ChromelessPlayer.paused changes to true.

                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                            interface PauseEvent {
                                                                                                                                                                                                                                                                                currentTime: number;
                                                                                                                                                                                                                                                                                date: Date;
                                                                                                                                                                                                                                                                                type: "pause";
                                                                                                                                                                                                                                                                            }

                                                                                                                                                                                                                                                                            Hierarchy (View Summary)

                                                                                                                                                                                                                                                                            Index

                                                                                                                                                                                                                                                                            Properties

                                                                                                                                                                                                                                                                            interface PauseEvent {
                                                                                                                                                                                                                                                                                currentTime: number;
                                                                                                                                                                                                                                                                                date: Date;
                                                                                                                                                                                                                                                                                type: "pause";
                                                                                                                                                                                                                                                                            }

                                                                                                                                                                                                                                                                            Hierarchy (View Summary)

                                                                                                                                                                                                                                                                            Index

                                                                                                                                                                                                                                                                            Properties

                                                                                                                                                                                                                                                                            Properties

                                                                                                                                                                                                                                                                            currentTime: number

                                                                                                                                                                                                                                                                            The player's current time.

                                                                                                                                                                                                                                                                            diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/PlayEvent.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/PlayEvent.html index bb89487de484..9c156da840fc 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/PlayEvent.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/PlayEvent.html @@ -1,5 +1,5 @@ PlayEvent | THEOplayer Web SDK
                                                                                                                                                                                                                                                                            THEOplayer Web SDK
                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                              Interface PlayEvent

                                                                                                                                                                                                                                                                              Fired when ChromelessPlayer.paused changes to false.

                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                              interface PlayEvent {
                                                                                                                                                                                                                                                                                  currentTime: number;
                                                                                                                                                                                                                                                                                  date: Date;
                                                                                                                                                                                                                                                                                  type: "play";
                                                                                                                                                                                                                                                                              }

                                                                                                                                                                                                                                                                              Hierarchy (View Summary)

                                                                                                                                                                                                                                                                              Index

                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                              interface PlayEvent {
                                                                                                                                                                                                                                                                                  currentTime: number;
                                                                                                                                                                                                                                                                                  date: Date;
                                                                                                                                                                                                                                                                                  type: "play";
                                                                                                                                                                                                                                                                              }

                                                                                                                                                                                                                                                                              Hierarchy (View Summary)

                                                                                                                                                                                                                                                                              Index

                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                              currentTime: number

                                                                                                                                                                                                                                                                              The player's current time.

                                                                                                                                                                                                                                                                              diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/PlayReadyKeySystemConfiguration.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/PlayReadyKeySystemConfiguration.html index d2b9a5d996f9..39f4c2dee0ff 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/PlayReadyKeySystemConfiguration.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/PlayReadyKeySystemConfiguration.html @@ -1,5 +1,5 @@ PlayReadyKeySystemConfiguration | THEOplayer Web SDK
                                                                                                                                                                                                                                                                              THEOplayer Web SDK
                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                Interface PlayReadyKeySystemConfiguration

                                                                                                                                                                                                                                                                                Describes the PlayReady key system configuration.

                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                interface PlayReadyKeySystemConfiguration {
                                                                                                                                                                                                                                                                                    audioRobustness?: string;
                                                                                                                                                                                                                                                                                    certificate?: string | BufferSource;
                                                                                                                                                                                                                                                                                    customData?: string;
                                                                                                                                                                                                                                                                                    distinctiveIdentifier?: "required" | "optional" | "not-allowed";
                                                                                                                                                                                                                                                                                    headers?: { [headerName: string]: string };
                                                                                                                                                                                                                                                                                    licenseAcquisitionURL?: string;
                                                                                                                                                                                                                                                                                    persistentState?: "required" | "optional" | "not-allowed";
                                                                                                                                                                                                                                                                                    queryParameters?: { [key: string]: any };
                                                                                                                                                                                                                                                                                    useCredentials?: boolean;
                                                                                                                                                                                                                                                                                    videoRobustness?: string;
                                                                                                                                                                                                                                                                                }

                                                                                                                                                                                                                                                                                Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                Index

                                                                                                                                                                                                                                                                                Properties

                                                                                                                                                                                                                                                                                interface PlayReadyKeySystemConfiguration {
                                                                                                                                                                                                                                                                                    audioRobustness?: string;
                                                                                                                                                                                                                                                                                    certificate?: string | BufferSource;
                                                                                                                                                                                                                                                                                    customData?: string;
                                                                                                                                                                                                                                                                                    distinctiveIdentifier?: "required" | "optional" | "not-allowed";
                                                                                                                                                                                                                                                                                    headers?: { [headerName: string]: string };
                                                                                                                                                                                                                                                                                    licenseAcquisitionURL?: string;
                                                                                                                                                                                                                                                                                    persistentState?: "required" | "optional" | "not-allowed";
                                                                                                                                                                                                                                                                                    queryParameters?: { [key: string]: any };
                                                                                                                                                                                                                                                                                    useCredentials?: boolean;
                                                                                                                                                                                                                                                                                    videoRobustness?: string;
                                                                                                                                                                                                                                                                                }

                                                                                                                                                                                                                                                                                Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                Index

                                                                                                                                                                                                                                                                                Properties

                                                                                                                                                                                                                                                                                audioRobustness? certificate? customData? distinctiveIdentifier? diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/PlayerConfiguration.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/PlayerConfiguration.html index adc7cb431247..04b35bbf8b87 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/PlayerConfiguration.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/PlayerConfiguration.html @@ -1,5 +1,5 @@ PlayerConfiguration | THEOplayer Web SDK
                                                                                                                                                                                                                                                                                THEOplayer Web SDK
                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                  Interface PlayerConfiguration

                                                                                                                                                                                                                                                                                  Describes a player's configuration.

                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  interface PlayerConfiguration {
                                                                                                                                                                                                                                                                                      abr?: SourceAbrConfiguration;
                                                                                                                                                                                                                                                                                      ads?: AdsConfiguration;
                                                                                                                                                                                                                                                                                      allowMixedContent?: boolean;
                                                                                                                                                                                                                                                                                      allowNativeFullscreen?: boolean;
                                                                                                                                                                                                                                                                                      analytics?: AnalyticsDescription[];
                                                                                                                                                                                                                                                                                      cast?: CastConfiguration;
                                                                                                                                                                                                                                                                                      hideDeprecationWarnings?: boolean;
                                                                                                                                                                                                                                                                                      hlsDateRange?: boolean;
                                                                                                                                                                                                                                                                                      isEmbeddable?: boolean;
                                                                                                                                                                                                                                                                                      libraryLocation?: string;
                                                                                                                                                                                                                                                                                      license?: string;
                                                                                                                                                                                                                                                                                      licenseUrl?: string;
                                                                                                                                                                                                                                                                                      liveOffset?: number;
                                                                                                                                                                                                                                                                                      mutedAutoplay?: MutedAutoplayConfiguration;
                                                                                                                                                                                                                                                                                      persistVolume?: boolean;
                                                                                                                                                                                                                                                                                      ps5?: PlayStation5Configuration;
                                                                                                                                                                                                                                                                                      retainPlaybackRateOnSourceChange?: boolean;
                                                                                                                                                                                                                                                                                      retryConfiguration?: RetryConfiguration;
                                                                                                                                                                                                                                                                                      theoLive?: TheoLiveConfiguration;
                                                                                                                                                                                                                                                                                      uplynk?: UplynkConfiguration;
                                                                                                                                                                                                                                                                                  }

                                                                                                                                                                                                                                                                                  Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                  Index

                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                  interface PlayerConfiguration {
                                                                                                                                                                                                                                                                                      abr?: SourceAbrConfiguration;
                                                                                                                                                                                                                                                                                      ads?: AdsConfiguration;
                                                                                                                                                                                                                                                                                      allowMixedContent?: boolean;
                                                                                                                                                                                                                                                                                      allowNativeFullscreen?: boolean;
                                                                                                                                                                                                                                                                                      analytics?: AnalyticsDescription[];
                                                                                                                                                                                                                                                                                      cast?: CastConfiguration;
                                                                                                                                                                                                                                                                                      hideDeprecationWarnings?: boolean;
                                                                                                                                                                                                                                                                                      hlsDateRange?: boolean;
                                                                                                                                                                                                                                                                                      isEmbeddable?: boolean;
                                                                                                                                                                                                                                                                                      libraryLocation?: string;
                                                                                                                                                                                                                                                                                      license?: string;
                                                                                                                                                                                                                                                                                      licenseUrl?: string;
                                                                                                                                                                                                                                                                                      liveOffset?: number;
                                                                                                                                                                                                                                                                                      mutedAutoplay?: MutedAutoplayConfiguration;
                                                                                                                                                                                                                                                                                      persistVolume?: boolean;
                                                                                                                                                                                                                                                                                      ps5?: PlayStation5Configuration;
                                                                                                                                                                                                                                                                                      retainPlaybackRateOnSourceChange?: boolean;
                                                                                                                                                                                                                                                                                      retryConfiguration?: RetryConfiguration;
                                                                                                                                                                                                                                                                                      theoLive?: TheoLiveConfiguration;
                                                                                                                                                                                                                                                                                      uplynk?: UplynkConfiguration;
                                                                                                                                                                                                                                                                                  }

                                                                                                                                                                                                                                                                                  Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                  Index

                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                  abr? ads? allowMixedContent? allowNativeFullscreen? diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/PlayerEventMap.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/PlayerEventMap.html index be09a293b08e..5c45e31d97dd 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/PlayerEventMap.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/PlayerEventMap.html @@ -1,8 +1,13 @@ PlayerEventMap | THEOplayer Web SDK
                                                                                                                                                                                                                                                                                  THEOplayer Web SDK
                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                    Interface PlayerEventMap

                                                                                                                                                                                                                                                                                    The events fired by the ChromelessPlayer.

                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                    Index

                                                                                                                                                                                                                                                                                    Properties

                                                                                                                                                                                                                                                                                    interface PlayerEventMap {
                                                                                                                                                                                                                                                                                        canplay: CanPlayEvent;
                                                                                                                                                                                                                                                                                        canplaythrough: CanPlayThroughEvent;
                                                                                                                                                                                                                                                                                        contentprotectionerror: ContentProtectionErrorEvent;
                                                                                                                                                                                                                                                                                        contentprotectionsuccess: Event<"contentprotectionsuccess">;
                                                                                                                                                                                                                                                                                        contentsteeringerror: ContentSteeringErrorEvent;
                                                                                                                                                                                                                                                                                        contentsteeringlocationchange: ContentSteeringLocationChangeEvent;
                                                                                                                                                                                                                                                                                        contentsteeringstart: ContentSteeringStartEvent;
                                                                                                                                                                                                                                                                                        contentsteeringstop: ContentSteeringStopEvent;
                                                                                                                                                                                                                                                                                        contentsteeringupdate: ContentSteeringUpdateEvent;
                                                                                                                                                                                                                                                                                        currentsourcechange: CurrentSourceChangeEvent;
                                                                                                                                                                                                                                                                                        destroy: Event<"destroy">;
                                                                                                                                                                                                                                                                                        dimensionchange: DimensionChangeEvent;
                                                                                                                                                                                                                                                                                        durationchange: DurationChangeEvent;
                                                                                                                                                                                                                                                                                        emptied: EmptiedEvent;
                                                                                                                                                                                                                                                                                        encrypted: EncryptedEvent;
                                                                                                                                                                                                                                                                                        ended: EndedEvent;
                                                                                                                                                                                                                                                                                        error: ErrorEvent;
                                                                                                                                                                                                                                                                                        loadeddata: LoadedDataEvent;
                                                                                                                                                                                                                                                                                        loadedmetadata: LoadedMetadataEvent;
                                                                                                                                                                                                                                                                                        loadstart: Event<"loadstart">;
                                                                                                                                                                                                                                                                                        manifesterror: Event<"manifesterror">;
                                                                                                                                                                                                                                                                                        manifestupdate: Event<"manifestupdate">;
                                                                                                                                                                                                                                                                                        pause: PauseEvent;
                                                                                                                                                                                                                                                                                        play: PlayEvent;
                                                                                                                                                                                                                                                                                        playing: PlayingEvent;
                                                                                                                                                                                                                                                                                        progress: ProgressEvent;
                                                                                                                                                                                                                                                                                        ratechange: RateChangeEvent;
                                                                                                                                                                                                                                                                                        readystatechange: ReadyStateChangeEvent;
                                                                                                                                                                                                                                                                                        representationchange: RepresentationChangeEvent;
                                                                                                                                                                                                                                                                                        resize: Event<"resize">;
                                                                                                                                                                                                                                                                                        seeked: SeekedEvent;
                                                                                                                                                                                                                                                                                        seeking: SeekingEvent;
                                                                                                                                                                                                                                                                                        segmenterror: Event<"segmenterror">;
                                                                                                                                                                                                                                                                                        segmentnotfound: Event<"segmentnotfound">;
                                                                                                                                                                                                                                                                                        sourcechange: SourceChangeEvent;
                                                                                                                                                                                                                                                                                        timeupdate: TimeUpdateEvent;
                                                                                                                                                                                                                                                                                        volumechange: VolumeChangeEvent;
                                                                                                                                                                                                                                                                                        waiting: WaitingEvent;
                                                                                                                                                                                                                                                                                    }
                                                                                                                                                                                                                                                                                    Index

                                                                                                                                                                                                                                                                                    Properties

                                                                                                                                                                                                                                                                                    contentprotectionsuccess: Event<"contentprotectionsuccess">

                                                                                                                                                                                                                                                                                    Fired when the key is usable for decryption.


                                                                                                                                                                                                                                                                                    - A key is usable if the CDM is certain the key can decrypt one or more blocks of media data.
                                                                                                                                                                                                                                                                                    - See Encrypted Media Extension - usable for decryption.

                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                    currentsourcechange: CurrentSourceChangeEvent

                                                                                                                                                                                                                                                                                    Fired when the current source, which is chosen from ChromelessPlayer.source.sources, changes.

                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                    contentsteeringerror: ContentSteeringErrorEvent

                                                                                                                                                                                                                                                                                    Fired when an error occurs during content steering.

                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                    contentsteeringlocationchange: ContentSteeringLocationChangeEvent

                                                                                                                                                                                                                                                                                    Fired during content steering when the service location changes.

                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                    contentsteeringstart: ContentSteeringStartEvent

                                                                                                                                                                                                                                                                                    Fired when content steering starts.

                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                    contentsteeringstop: ContentSteeringStopEvent

                                                                                                                                                                                                                                                                                    Fired when content steering stops.

                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                    contentsteeringupdate: ContentSteeringUpdateEvent

                                                                                                                                                                                                                                                                                    Fired when the player receives updated service locations from the content steering server.

                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                    currentsourcechange: CurrentSourceChangeEvent

                                                                                                                                                                                                                                                                                    Fired when the current source, which is chosen from ChromelessPlayer.source.sources, changes.

                                                                                                                                                                                                                                                                                    destroy: Event<"destroy">

                                                                                                                                                                                                                                                                                    Fired when the player is destroyed.


                                                                                                                                                                                                                                                                                    - Available since v2.33.3.

                                                                                                                                                                                                                                                                                    dimensionchange: DimensionChangeEvent

                                                                                                                                                                                                                                                                                    Fired when the dimensions of the HTML element changes.

                                                                                                                                                                                                                                                                                    @@ -86,4 +96,4 @@
                                                                                                                                                                                                                                                                                    timeupdate: TimeUpdateEvent

                                                                                                                                                                                                                                                                                    Fired when the current playback position changed as part of normal playback or in an especially interesting way, for example discontinuously.

                                                                                                                                                                                                                                                                                    volumechange: VolumeChangeEvent

                                                                                                                                                                                                                                                                                    Fired when ChromelessPlayer.volume changes.

                                                                                                                                                                                                                                                                                    waiting: WaitingEvent

                                                                                                                                                                                                                                                                                    Fired when playback has stopped because the next frame is not available, but the player expects that frame to become available in due course.

                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                    diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/PlayerList.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/PlayerList.html index 939ba4291dd2..4c0443c3fe1e 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/PlayerList.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/PlayerList.html @@ -1,5 +1,5 @@ PlayerList | THEOplayer Web SDK
                                                                                                                                                                                                                                                                                    THEOplayer Web SDK
                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                      Interface PlayerList

                                                                                                                                                                                                                                                                                      List of players.

                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                      interface PlayerList {
                                                                                                                                                                                                                                                                                          length: number;
                                                                                                                                                                                                                                                                                          getPlayerByUID(UID: number): undefined | ChromelessPlayer;
                                                                                                                                                                                                                                                                                          [index: number]: ChromelessPlayer;
                                                                                                                                                                                                                                                                                      }

                                                                                                                                                                                                                                                                                      Hierarchy

                                                                                                                                                                                                                                                                                      Indexable

                                                                                                                                                                                                                                                                                      Index

                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                      interface PlayerList {
                                                                                                                                                                                                                                                                                          length: number;
                                                                                                                                                                                                                                                                                          getPlayerByUID(UID: number): undefined | ChromelessPlayer;
                                                                                                                                                                                                                                                                                          [index: number]: ChromelessPlayer;
                                                                                                                                                                                                                                                                                      }

                                                                                                                                                                                                                                                                                      Hierarchy

                                                                                                                                                                                                                                                                                      Indexable

                                                                                                                                                                                                                                                                                      Index

                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                      Methods

                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                      length: number

                                                                                                                                                                                                                                                                                      Length of the list.

                                                                                                                                                                                                                                                                                      Methods

                                                                                                                                                                                                                                                                                      • Return the player with corresponding UID, if any.

                                                                                                                                                                                                                                                                                        diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/PlayingEvent.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/PlayingEvent.html index 3e7d22682fe5..0447e9d51c3a 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/PlayingEvent.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/PlayingEvent.html @@ -1,5 +1,5 @@ PlayingEvent | THEOplayer Web SDK
                                                                                                                                                                                                                                                                                        THEOplayer Web SDK
                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                          Interface PlayingEvent

                                                                                                                                                                                                                                                                                          Fired when playback is ready to start after having been paused or delayed due to lack of media data.

                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                          interface PlayingEvent {
                                                                                                                                                                                                                                                                                              currentTime: number;
                                                                                                                                                                                                                                                                                              date: Date;
                                                                                                                                                                                                                                                                                              type: "playing";
                                                                                                                                                                                                                                                                                          }

                                                                                                                                                                                                                                                                                          Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                          • Event<"playing">
                                                                                                                                                                                                                                                                                            • PlayingEvent
                                                                                                                                                                                                                                                                                          Index

                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                          interface PlayingEvent {
                                                                                                                                                                                                                                                                                              currentTime: number;
                                                                                                                                                                                                                                                                                              date: Date;
                                                                                                                                                                                                                                                                                              type: "playing";
                                                                                                                                                                                                                                                                                          }

                                                                                                                                                                                                                                                                                          Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                          • Event<"playing">
                                                                                                                                                                                                                                                                                            • PlayingEvent
                                                                                                                                                                                                                                                                                          Index

                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                          currentTime: number

                                                                                                                                                                                                                                                                                          The player's current time.

                                                                                                                                                                                                                                                                                          diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/Presentation.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/Presentation.html index 0617067c12dc..f865793cd631 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/Presentation.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/Presentation.html @@ -1,5 +1,5 @@ Presentation | THEOplayer Web SDK
                                                                                                                                                                                                                                                                                          THEOplayer Web SDK
                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                            Interface Presentation

                                                                                                                                                                                                                                                                                            The presentation API.

                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                            interface Presentation {
                                                                                                                                                                                                                                                                                                currentMode: PresentationMode;
                                                                                                                                                                                                                                                                                                addEventListener<TType extends keyof PresentationEventMap>(
                                                                                                                                                                                                                                                                                                    type: TType | readonly TType[],
                                                                                                                                                                                                                                                                                                    listener: EventListener<PresentationEventMap[TType]>,
                                                                                                                                                                                                                                                                                                ): void;
                                                                                                                                                                                                                                                                                                removeEventListener<TType extends keyof PresentationEventMap>(
                                                                                                                                                                                                                                                                                                    type: TType | readonly TType[],
                                                                                                                                                                                                                                                                                                    listener: EventListener<PresentationEventMap[TType]>,
                                                                                                                                                                                                                                                                                                ): void;
                                                                                                                                                                                                                                                                                                requestMode(mode: PresentationMode): void;
                                                                                                                                                                                                                                                                                                supportsMode(mode: PresentationMode): boolean;
                                                                                                                                                                                                                                                                                            }

                                                                                                                                                                                                                                                                                            Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                            Index

                                                                                                                                                                                                                                                                                            Properties

                                                                                                                                                                                                                                                                                            interface Presentation {
                                                                                                                                                                                                                                                                                                currentMode: PresentationMode;
                                                                                                                                                                                                                                                                                                addEventListener<TType extends keyof PresentationEventMap>(
                                                                                                                                                                                                                                                                                                    type: TType | readonly TType[],
                                                                                                                                                                                                                                                                                                    listener: EventListener<PresentationEventMap[TType]>,
                                                                                                                                                                                                                                                                                                ): void;
                                                                                                                                                                                                                                                                                                removeEventListener<TType extends keyof PresentationEventMap>(
                                                                                                                                                                                                                                                                                                    type: TType | readonly TType[],
                                                                                                                                                                                                                                                                                                    listener: EventListener<PresentationEventMap[TType]>,
                                                                                                                                                                                                                                                                                                ): void;
                                                                                                                                                                                                                                                                                                requestMode(mode: PresentationMode): void;
                                                                                                                                                                                                                                                                                                supportsMode(mode: PresentationMode): boolean;
                                                                                                                                                                                                                                                                                            }

                                                                                                                                                                                                                                                                                            Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                            Index

                                                                                                                                                                                                                                                                                            Properties

                                                                                                                                                                                                                                                                                            Methods

                                                                                                                                                                                                                                                                                            addEventListener removeEventListener requestMode diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/PresentationModeChangeEvent.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/PresentationModeChangeEvent.html index 9f4dc3e76863..072ed83fea28 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/PresentationModeChangeEvent.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/PresentationModeChangeEvent.html @@ -1,5 +1,5 @@ PresentationModeChangeEvent | THEOplayer Web SDK
                                                                                                                                                                                                                                                                                            THEOplayer Web SDK
                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                              Interface PresentationModeChangeEvent

                                                                                                                                                                                                                                                                                              Fired when the presentation mode changes.

                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                              interface PresentationModeChangeEvent {
                                                                                                                                                                                                                                                                                                  date: Date;
                                                                                                                                                                                                                                                                                                  presentationMode: PresentationMode;
                                                                                                                                                                                                                                                                                                  type: "presentationmodechange";
                                                                                                                                                                                                                                                                                              }

                                                                                                                                                                                                                                                                                              Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                              • Event<"presentationmodechange">
                                                                                                                                                                                                                                                                                                • PresentationModeChangeEvent
                                                                                                                                                                                                                                                                                              Index

                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                              interface PresentationModeChangeEvent {
                                                                                                                                                                                                                                                                                                  date: Date;
                                                                                                                                                                                                                                                                                                  presentationMode: PresentationMode;
                                                                                                                                                                                                                                                                                                  type: "presentationmodechange";
                                                                                                                                                                                                                                                                                              }

                                                                                                                                                                                                                                                                                              Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                              • Event<"presentationmodechange">
                                                                                                                                                                                                                                                                                                • PresentationModeChangeEvent
                                                                                                                                                                                                                                                                                              Index

                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                              date: Date

                                                                                                                                                                                                                                                                                              The creation date of the event.

                                                                                                                                                                                                                                                                                              diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ProgressEvent.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ProgressEvent.html index 50bf1eebbbf7..2303dff05bd2 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ProgressEvent.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ProgressEvent.html @@ -1,5 +1,5 @@ ProgressEvent | THEOplayer Web SDK
                                                                                                                                                                                                                                                                                              THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                Interface ProgressEvent

                                                                                                                                                                                                                                                                                                Fired when the player loaded media data.

                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                interface ProgressEvent {
                                                                                                                                                                                                                                                                                                    currentTime: number;
                                                                                                                                                                                                                                                                                                    date: Date;
                                                                                                                                                                                                                                                                                                    type: "progress";
                                                                                                                                                                                                                                                                                                }

                                                                                                                                                                                                                                                                                                Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                • Event<"progress">
                                                                                                                                                                                                                                                                                                  • ProgressEvent
                                                                                                                                                                                                                                                                                                Index

                                                                                                                                                                                                                                                                                                Properties

                                                                                                                                                                                                                                                                                                interface ProgressEvent {
                                                                                                                                                                                                                                                                                                    currentTime: number;
                                                                                                                                                                                                                                                                                                    date: Date;
                                                                                                                                                                                                                                                                                                    type: "progress";
                                                                                                                                                                                                                                                                                                }

                                                                                                                                                                                                                                                                                                Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                • Event<"progress">
                                                                                                                                                                                                                                                                                                  • ProgressEvent
                                                                                                                                                                                                                                                                                                Index

                                                                                                                                                                                                                                                                                                Properties

                                                                                                                                                                                                                                                                                                Properties

                                                                                                                                                                                                                                                                                                currentTime: number

                                                                                                                                                                                                                                                                                                The player's current time.

                                                                                                                                                                                                                                                                                                diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/Quality.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/Quality.html index 4d351cb56d8e..ad824bb3ec9a 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/Quality.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/Quality.html @@ -1,5 +1,5 @@ Quality | THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                  Interface Quality

                                                                                                                                                                                                                                                                                                  Represents a quality of a media track.

                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                  interface Quality {
                                                                                                                                                                                                                                                                                                      available: boolean;
                                                                                                                                                                                                                                                                                                      averageBandwidth?: number;
                                                                                                                                                                                                                                                                                                      bandwidth: number;
                                                                                                                                                                                                                                                                                                      codecs: string;
                                                                                                                                                                                                                                                                                                      id: string;
                                                                                                                                                                                                                                                                                                      label: string;
                                                                                                                                                                                                                                                                                                      name: string;
                                                                                                                                                                                                                                                                                                      score: undefined | number;
                                                                                                                                                                                                                                                                                                      uid: number;
                                                                                                                                                                                                                                                                                                      addEventListener<TType extends "update">(
                                                                                                                                                                                                                                                                                                          type: TType | readonly TType[],
                                                                                                                                                                                                                                                                                                          listener: EventListener<QualityEventMap[TType]>,
                                                                                                                                                                                                                                                                                                      ): void;
                                                                                                                                                                                                                                                                                                      removeEventListener<TType extends "update">(
                                                                                                                                                                                                                                                                                                          type: TType | readonly TType[],
                                                                                                                                                                                                                                                                                                          listener: EventListener<QualityEventMap[TType]>,
                                                                                                                                                                                                                                                                                                      ): void;
                                                                                                                                                                                                                                                                                                  }

                                                                                                                                                                                                                                                                                                  Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                  Index

                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                  interface Quality {
                                                                                                                                                                                                                                                                                                      available: boolean;
                                                                                                                                                                                                                                                                                                      averageBandwidth?: number;
                                                                                                                                                                                                                                                                                                      bandwidth: number;
                                                                                                                                                                                                                                                                                                      codecs: string;
                                                                                                                                                                                                                                                                                                      id: string;
                                                                                                                                                                                                                                                                                                      label: string;
                                                                                                                                                                                                                                                                                                      name: string;
                                                                                                                                                                                                                                                                                                      score: undefined | number;
                                                                                                                                                                                                                                                                                                      uid: number;
                                                                                                                                                                                                                                                                                                      addEventListener<TType extends "update">(
                                                                                                                                                                                                                                                                                                          type: TType | readonly TType[],
                                                                                                                                                                                                                                                                                                          listener: EventListener<QualityEventMap[TType]>,
                                                                                                                                                                                                                                                                                                      ): void;
                                                                                                                                                                                                                                                                                                      removeEventListener<TType extends "update">(
                                                                                                                                                                                                                                                                                                          type: TType | readonly TType[],
                                                                                                                                                                                                                                                                                                          listener: EventListener<QualityEventMap[TType]>,
                                                                                                                                                                                                                                                                                                      ): void;
                                                                                                                                                                                                                                                                                                  }

                                                                                                                                                                                                                                                                                                  Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                  Index

                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                  available averageBandwidth? bandwidth codecs diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/QualityEvent.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/QualityEvent.html index f6c22fcb4855..06c6327b5104 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/QualityEvent.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/QualityEvent.html @@ -1,5 +1,5 @@ QualityEvent | THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                  THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                    Interface QualityEvent<TType>

                                                                                                                                                                                                                                                                                                    A quality-related event fired by a MediaTrack.

                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                    interface QualityEvent<TType extends string> {
                                                                                                                                                                                                                                                                                                        date: Date;
                                                                                                                                                                                                                                                                                                        quality: Quality;
                                                                                                                                                                                                                                                                                                        type: TType;
                                                                                                                                                                                                                                                                                                    }

                                                                                                                                                                                                                                                                                                    Type Parameters

                                                                                                                                                                                                                                                                                                    • TType extends string

                                                                                                                                                                                                                                                                                                    Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                    Index

                                                                                                                                                                                                                                                                                                    Properties

                                                                                                                                                                                                                                                                                                    interface QualityEvent<TType extends string> {
                                                                                                                                                                                                                                                                                                        date: Date;
                                                                                                                                                                                                                                                                                                        quality: Quality;
                                                                                                                                                                                                                                                                                                        type: TType;
                                                                                                                                                                                                                                                                                                    }

                                                                                                                                                                                                                                                                                                    Type Parameters

                                                                                                                                                                                                                                                                                                    • TType extends string

                                                                                                                                                                                                                                                                                                    Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                    Index

                                                                                                                                                                                                                                                                                                    Properties

                                                                                                                                                                                                                                                                                                    Properties

                                                                                                                                                                                                                                                                                                    date: Date

                                                                                                                                                                                                                                                                                                    The creation date of the event.

                                                                                                                                                                                                                                                                                                    diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/QualityList.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/QualityList.html index 79aca4a4b3e5..4957b086ce3a 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/QualityList.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/QualityList.html @@ -1,5 +1,5 @@ QualityList | THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                    THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                      Interface QualityList

                                                                                                                                                                                                                                                                                                      List of qualities.

                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      interface QualityList {
                                                                                                                                                                                                                                                                                                          item(index: number): Quality;
                                                                                                                                                                                                                                                                                                          [index: number]: Quality;
                                                                                                                                                                                                                                                                                                      }

                                                                                                                                                                                                                                                                                                      Hierarchy

                                                                                                                                                                                                                                                                                                      Indexable

                                                                                                                                                                                                                                                                                                      • [index: number]: Quality

                                                                                                                                                                                                                                                                                                        Index signature to get the quality at the requested index in the list.

                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                      interface QualityList {
                                                                                                                                                                                                                                                                                                          item(index: number): Quality;
                                                                                                                                                                                                                                                                                                          [index: number]: Quality;
                                                                                                                                                                                                                                                                                                      }

                                                                                                                                                                                                                                                                                                      Hierarchy

                                                                                                                                                                                                                                                                                                      Indexable

                                                                                                                                                                                                                                                                                                      • [index: number]: Quality

                                                                                                                                                                                                                                                                                                        Index signature to get the quality at the requested index in the list.

                                                                                                                                                                                                                                                                                                      Index

                                                                                                                                                                                                                                                                                                      Methods

                                                                                                                                                                                                                                                                                                      Methods

                                                                                                                                                                                                                                                                                                      • Return the quality at the requested index in the list.

                                                                                                                                                                                                                                                                                                        Parameters

                                                                                                                                                                                                                                                                                                        • index: number

                                                                                                                                                                                                                                                                                                          A number representing the index of a quality in the list.

                                                                                                                                                                                                                                                                                                          diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/RateChangeEvent.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/RateChangeEvent.html index ee2f6e0e40be..bb80ad83b9f0 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/RateChangeEvent.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/RateChangeEvent.html @@ -1,5 +1,5 @@ RateChangeEvent | THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                          THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                            Interface RateChangeEvent

                                                                                                                                                                                                                                                                                                            Fired when ChromelessPlayer.playbackRate changes.

                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                            interface RateChangeEvent {
                                                                                                                                                                                                                                                                                                                date: Date;
                                                                                                                                                                                                                                                                                                                playbackRate: number;
                                                                                                                                                                                                                                                                                                                type: "ratechange";
                                                                                                                                                                                                                                                                                                            }

                                                                                                                                                                                                                                                                                                            Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                            • Event<"ratechange">
                                                                                                                                                                                                                                                                                                              • RateChangeEvent
                                                                                                                                                                                                                                                                                                            Index

                                                                                                                                                                                                                                                                                                            Properties

                                                                                                                                                                                                                                                                                                            interface RateChangeEvent {
                                                                                                                                                                                                                                                                                                                date: Date;
                                                                                                                                                                                                                                                                                                                playbackRate: number;
                                                                                                                                                                                                                                                                                                                type: "ratechange";
                                                                                                                                                                                                                                                                                                            }

                                                                                                                                                                                                                                                                                                            Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                            • Event<"ratechange">
                                                                                                                                                                                                                                                                                                              • RateChangeEvent
                                                                                                                                                                                                                                                                                                            Index

                                                                                                                                                                                                                                                                                                            Properties

                                                                                                                                                                                                                                                                                                            date: Date

                                                                                                                                                                                                                                                                                                            The creation date of the event.

                                                                                                                                                                                                                                                                                                            diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ReadyStateChangeEvent.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ReadyStateChangeEvent.html index 131538731bdb..2ebbded5540b 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ReadyStateChangeEvent.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ReadyStateChangeEvent.html @@ -1,5 +1,5 @@ ReadyStateChangeEvent | THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                            THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                              Interface ReadyStateChangeEvent

                                                                                                                                                                                                                                                                                                              Fired when ChromelessPlayer.readyState changes.

                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                              interface ReadyStateChangeEvent {
                                                                                                                                                                                                                                                                                                                  currentTime: number;
                                                                                                                                                                                                                                                                                                                  date: Date;
                                                                                                                                                                                                                                                                                                                  readyState: number;
                                                                                                                                                                                                                                                                                                                  type: "readystatechange";
                                                                                                                                                                                                                                                                                                              }

                                                                                                                                                                                                                                                                                                              Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                              • Event<"readystatechange">
                                                                                                                                                                                                                                                                                                                • ReadyStateChangeEvent
                                                                                                                                                                                                                                                                                                              Index

                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                              interface ReadyStateChangeEvent {
                                                                                                                                                                                                                                                                                                                  currentTime: number;
                                                                                                                                                                                                                                                                                                                  date: Date;
                                                                                                                                                                                                                                                                                                                  readyState: number;
                                                                                                                                                                                                                                                                                                                  type: "readystatechange";
                                                                                                                                                                                                                                                                                                              }

                                                                                                                                                                                                                                                                                                              Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                              • Event<"readystatechange">
                                                                                                                                                                                                                                                                                                                • ReadyStateChangeEvent
                                                                                                                                                                                                                                                                                                              Index

                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                              currentTime date readyState type diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/RemoveCachingTaskEvent.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/RemoveCachingTaskEvent.html index f560c741490b..f46c0d0ce7d3 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/RemoveCachingTaskEvent.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/RemoveCachingTaskEvent.html @@ -1,5 +1,5 @@ RemoveCachingTaskEvent | THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                              THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                Interface RemoveCachingTaskEvent

                                                                                                                                                                                                                                                                                                                Fired when a caching task is removed.

                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                interface RemoveCachingTaskEvent {
                                                                                                                                                                                                                                                                                                                    date: Date;
                                                                                                                                                                                                                                                                                                                    task: CachingTask;
                                                                                                                                                                                                                                                                                                                    type: "removetask";
                                                                                                                                                                                                                                                                                                                }

                                                                                                                                                                                                                                                                                                                Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                • Event<"removetask">
                                                                                                                                                                                                                                                                                                                  • RemoveCachingTaskEvent
                                                                                                                                                                                                                                                                                                                Index

                                                                                                                                                                                                                                                                                                                Properties

                                                                                                                                                                                                                                                                                                                interface RemoveCachingTaskEvent {
                                                                                                                                                                                                                                                                                                                    date: Date;
                                                                                                                                                                                                                                                                                                                    task: CachingTask;
                                                                                                                                                                                                                                                                                                                    type: "removetask";
                                                                                                                                                                                                                                                                                                                }

                                                                                                                                                                                                                                                                                                                Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                • Event<"removetask">
                                                                                                                                                                                                                                                                                                                  • RemoveCachingTaskEvent
                                                                                                                                                                                                                                                                                                                Index

                                                                                                                                                                                                                                                                                                                Properties

                                                                                                                                                                                                                                                                                                                Properties

                                                                                                                                                                                                                                                                                                                date: Date

                                                                                                                                                                                                                                                                                                                The creation date of the event.

                                                                                                                                                                                                                                                                                                                diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/RemoveTrackEvent.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/RemoveTrackEvent.html index 34af8381b11d..b9baa882b91e 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/RemoveTrackEvent.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/RemoveTrackEvent.html @@ -1,5 +1,5 @@ RemoveTrackEvent | THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                  Interface RemoveTrackEvent

                                                                                                                                                                                                                                                                                                                  Fired when a track has been removed to this list.

                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                  interface RemoveTrackEvent {
                                                                                                                                                                                                                                                                                                                      date: Date;
                                                                                                                                                                                                                                                                                                                      track: Track;
                                                                                                                                                                                                                                                                                                                      type: "removetrack";
                                                                                                                                                                                                                                                                                                                  }

                                                                                                                                                                                                                                                                                                                  Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                  • Event<"removetrack">
                                                                                                                                                                                                                                                                                                                    • RemoveTrackEvent
                                                                                                                                                                                                                                                                                                                  Index

                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                  interface RemoveTrackEvent {
                                                                                                                                                                                                                                                                                                                      date: Date;
                                                                                                                                                                                                                                                                                                                      track: Track;
                                                                                                                                                                                                                                                                                                                      type: "removetrack";
                                                                                                                                                                                                                                                                                                                  }

                                                                                                                                                                                                                                                                                                                  Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                  • Event<"removetrack">
                                                                                                                                                                                                                                                                                                                    • RemoveTrackEvent
                                                                                                                                                                                                                                                                                                                  Index

                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                  date: Date

                                                                                                                                                                                                                                                                                                                  The creation date of the event.

                                                                                                                                                                                                                                                                                                                  diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/RemoveViewEvent.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/RemoveViewEvent.html index 70c358e48dda..b74498d4bd9a 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/RemoveViewEvent.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/RemoveViewEvent.html @@ -1,5 +1,5 @@ RemoveViewEvent | THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                  THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                    Interface RemoveViewEvent

                                                                                                                                                                                                                                                                                                                    Fired when a View has been removed from the MultiViewPlayer.

                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                    interface RemoveViewEvent {
                                                                                                                                                                                                                                                                                                                        date: Date;
                                                                                                                                                                                                                                                                                                                        type: "removeview";
                                                                                                                                                                                                                                                                                                                        view: View;
                                                                                                                                                                                                                                                                                                                    }

                                                                                                                                                                                                                                                                                                                    Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                    • Event<"removeview">
                                                                                                                                                                                                                                                                                                                      • RemoveViewEvent
                                                                                                                                                                                                                                                                                                                    Index

                                                                                                                                                                                                                                                                                                                    Properties

                                                                                                                                                                                                                                                                                                                    interface RemoveViewEvent {
                                                                                                                                                                                                                                                                                                                        date: Date;
                                                                                                                                                                                                                                                                                                                        type: "removeview";
                                                                                                                                                                                                                                                                                                                        view: View;
                                                                                                                                                                                                                                                                                                                    }

                                                                                                                                                                                                                                                                                                                    Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                    • Event<"removeview">
                                                                                                                                                                                                                                                                                                                      • RemoveViewEvent
                                                                                                                                                                                                                                                                                                                    Index

                                                                                                                                                                                                                                                                                                                    Properties

                                                                                                                                                                                                                                                                                                                    Properties

                                                                                                                                                                                                                                                                                                                    date: Date

                                                                                                                                                                                                                                                                                                                    The creation date of the event.

                                                                                                                                                                                                                                                                                                                    diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/RepresentationChangeEvent.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/RepresentationChangeEvent.html index 5312005f0db7..8f80e2de0f10 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/RepresentationChangeEvent.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/RepresentationChangeEvent.html @@ -1,5 +1,5 @@ RepresentationChangeEvent | THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                    THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                      Interface RepresentationChangeEvent

                                                                                                                                                                                                                                                                                                                      Fired when the current representation changes.

                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                      interface RepresentationChangeEvent {
                                                                                                                                                                                                                                                                                                                          date: Date;
                                                                                                                                                                                                                                                                                                                          previousRepresentation: undefined | Representation;
                                                                                                                                                                                                                                                                                                                          representation: undefined | Representation;
                                                                                                                                                                                                                                                                                                                          type: "representationchange";
                                                                                                                                                                                                                                                                                                                      }

                                                                                                                                                                                                                                                                                                                      Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                      • Event<"representationchange">
                                                                                                                                                                                                                                                                                                                        • RepresentationChangeEvent
                                                                                                                                                                                                                                                                                                                      Index

                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                      interface RepresentationChangeEvent {
                                                                                                                                                                                                                                                                                                                          date: Date;
                                                                                                                                                                                                                                                                                                                          previousRepresentation: undefined | Representation;
                                                                                                                                                                                                                                                                                                                          representation: undefined | Representation;
                                                                                                                                                                                                                                                                                                                          type: "representationchange";
                                                                                                                                                                                                                                                                                                                      }

                                                                                                                                                                                                                                                                                                                      Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                      • Event<"representationchange">
                                                                                                                                                                                                                                                                                                                        • RepresentationChangeEvent
                                                                                                                                                                                                                                                                                                                      Index

                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                      date previousRepresentation representation type diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/Request.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/Request.html index e56ab86b4d0f..c856bff72c92 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/Request.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/Request.html @@ -1,5 +1,5 @@ Request | THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                      THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                        Interface Request

                                                                                                                                                                                                                                                                                                                        Represents an HTTP request.

                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                        interface Request {
                                                                                                                                                                                                                                                                                                                            body: RequestBody;
                                                                                                                                                                                                                                                                                                                            headers: HTTPHeaders;
                                                                                                                                                                                                                                                                                                                            mediaType: MediaType;
                                                                                                                                                                                                                                                                                                                            method: RequestMethod;
                                                                                                                                                                                                                                                                                                                            responseType: ResponseType;
                                                                                                                                                                                                                                                                                                                            subType: RequestSubType;
                                                                                                                                                                                                                                                                                                                            type: RequestType;
                                                                                                                                                                                                                                                                                                                            url: string;
                                                                                                                                                                                                                                                                                                                            useCredentials: boolean;
                                                                                                                                                                                                                                                                                                                        }

                                                                                                                                                                                                                                                                                                                        Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                        Index

                                                                                                                                                                                                                                                                                                                        Properties

                                                                                                                                                                                                                                                                                                                        interface Request {
                                                                                                                                                                                                                                                                                                                            body: RequestBody;
                                                                                                                                                                                                                                                                                                                            headers: HTTPHeaders;
                                                                                                                                                                                                                                                                                                                            mediaType: MediaType;
                                                                                                                                                                                                                                                                                                                            method: RequestMethod;
                                                                                                                                                                                                                                                                                                                            responseType: ResponseType;
                                                                                                                                                                                                                                                                                                                            subType: RequestSubType;
                                                                                                                                                                                                                                                                                                                            type: RequestType;
                                                                                                                                                                                                                                                                                                                            url: string;
                                                                                                                                                                                                                                                                                                                            useCredentials: boolean;
                                                                                                                                                                                                                                                                                                                        }

                                                                                                                                                                                                                                                                                                                        Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                        Index

                                                                                                                                                                                                                                                                                                                        Properties

                                                                                                                                                                                                                                                                                                                        body headers mediaType method diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/SeekedEvent.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/SeekedEvent.html index 5c40fdb762d8..608f2cb66091 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/SeekedEvent.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/SeekedEvent.html @@ -1,5 +1,5 @@ SeekedEvent | THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                        THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                          Interface SeekedEvent

                                                                                                                                                                                                                                                                                                                          Fired when ChromelessPlayer.seeking changes to false after the current playback position was changed.

                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                          interface SeekedEvent {
                                                                                                                                                                                                                                                                                                                              currentTime: number;
                                                                                                                                                                                                                                                                                                                              date: Date;
                                                                                                                                                                                                                                                                                                                              type: "seeked";
                                                                                                                                                                                                                                                                                                                          }

                                                                                                                                                                                                                                                                                                                          Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                          • Event<"seeked">
                                                                                                                                                                                                                                                                                                                            • SeekedEvent
                                                                                                                                                                                                                                                                                                                          Index

                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                          interface SeekedEvent {
                                                                                                                                                                                                                                                                                                                              currentTime: number;
                                                                                                                                                                                                                                                                                                                              date: Date;
                                                                                                                                                                                                                                                                                                                              type: "seeked";
                                                                                                                                                                                                                                                                                                                          }

                                                                                                                                                                                                                                                                                                                          Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                          • Event<"seeked">
                                                                                                                                                                                                                                                                                                                            • SeekedEvent
                                                                                                                                                                                                                                                                                                                          Index

                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                          currentTime: number

                                                                                                                                                                                                                                                                                                                          The player's current time.

                                                                                                                                                                                                                                                                                                                          diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/SeekingEvent.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/SeekingEvent.html index 91ae5a8d4026..93f5060004d3 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/SeekingEvent.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/SeekingEvent.html @@ -1,5 +1,5 @@ SeekingEvent | THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                          THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                            Interface SeekingEvent

                                                                                                                                                                                                                                                                                                                            Fired when ChromelessPlayer.seeking changes to true, and the player has started seeking to a new position.

                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                            interface SeekingEvent {
                                                                                                                                                                                                                                                                                                                                currentTime: number;
                                                                                                                                                                                                                                                                                                                                date: Date;
                                                                                                                                                                                                                                                                                                                                type: "seeking";
                                                                                                                                                                                                                                                                                                                            }

                                                                                                                                                                                                                                                                                                                            Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                            • Event<"seeking">
                                                                                                                                                                                                                                                                                                                              • SeekingEvent
                                                                                                                                                                                                                                                                                                                            Index

                                                                                                                                                                                                                                                                                                                            Properties

                                                                                                                                                                                                                                                                                                                            interface SeekingEvent {
                                                                                                                                                                                                                                                                                                                                currentTime: number;
                                                                                                                                                                                                                                                                                                                                date: Date;
                                                                                                                                                                                                                                                                                                                                type: "seeking";
                                                                                                                                                                                                                                                                                                                            }

                                                                                                                                                                                                                                                                                                                            Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                            • Event<"seeking">
                                                                                                                                                                                                                                                                                                                              • SeekingEvent
                                                                                                                                                                                                                                                                                                                            Index

                                                                                                                                                                                                                                                                                                                            Properties

                                                                                                                                                                                                                                                                                                                            Properties

                                                                                                                                                                                                                                                                                                                            currentTime: number

                                                                                                                                                                                                                                                                                                                            The player's current time.

                                                                                                                                                                                                                                                                                                                            diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/SegmentErrorEvent.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/SegmentErrorEvent.html index 2e683df0ddfd..be70a267324d 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/SegmentErrorEvent.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/SegmentErrorEvent.html @@ -1,9 +1,10 @@ SegmentErrorEvent | THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                            THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                              Interface SegmentErrorEvent

                                                                                                                                                                                                                                                                                                                              Fired when a segment cannot be loaded.

                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                              interface SegmentErrorEvent {
                                                                                                                                                                                                                                                                                                                                  date: Date;
                                                                                                                                                                                                                                                                                                                                  error: string;
                                                                                                                                                                                                                                                                                                                                  quality: undefined | Quality;
                                                                                                                                                                                                                                                                                                                                  retryCount: number;
                                                                                                                                                                                                                                                                                                                                  segmentStartTime: number;
                                                                                                                                                                                                                                                                                                                                  statusCode: undefined | number;
                                                                                                                                                                                                                                                                                                                                  statusMessage: undefined | string;
                                                                                                                                                                                                                                                                                                                                  track: undefined | Track;
                                                                                                                                                                                                                                                                                                                                  trackType: MediaTrackType;
                                                                                                                                                                                                                                                                                                                                  type: "segmenterror";
                                                                                                                                                                                                                                                                                                                              }

                                                                                                                                                                                                                                                                                                                              Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                              • Event<"segmenterror">
                                                                                                                                                                                                                                                                                                                                • SegmentErrorEvent
                                                                                                                                                                                                                                                                                                                              Index

                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                              interface SegmentErrorEvent {
                                                                                                                                                                                                                                                                                                                                  date: Date;
                                                                                                                                                                                                                                                                                                                                  error: string;
                                                                                                                                                                                                                                                                                                                                  quality: undefined | Quality;
                                                                                                                                                                                                                                                                                                                                  retryCount: number;
                                                                                                                                                                                                                                                                                                                                  segmentStartTime: number;
                                                                                                                                                                                                                                                                                                                                  serviceLocation: undefined | string;
                                                                                                                                                                                                                                                                                                                                  statusCode: undefined | number;
                                                                                                                                                                                                                                                                                                                                  statusMessage: undefined | string;
                                                                                                                                                                                                                                                                                                                                  track: undefined | Track;
                                                                                                                                                                                                                                                                                                                                  trackType: MediaTrackType;
                                                                                                                                                                                                                                                                                                                                  type: "segmenterror";
                                                                                                                                                                                                                                                                                                                              }

                                                                                                                                                                                                                                                                                                                              Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                              • Event<"segmenterror">
                                                                                                                                                                                                                                                                                                                                • SegmentErrorEvent
                                                                                                                                                                                                                                                                                                                              Index

                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                              quality: undefined | Quality

                                                                                                                                                                                                                                                                                                                              The quality of the track that this segment belongs to, if available.

                                                                                                                                                                                                                                                                                                                              retryCount: number

                                                                                                                                                                                                                                                                                                                              The number of times the loading of a manifest has been tried.

                                                                                                                                                                                                                                                                                                                              segmentStartTime: number

                                                                                                                                                                                                                                                                                                                              The time the segment starts in the stream, in seconds.

                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              serviceLocation: undefined | string

                                                                                                                                                                                                                                                                                                                              The service location from which the segment was requested, if available.

                                                                                                                                                                                                                                                                                                                              statusCode: undefined | number

                                                                                                                                                                                                                                                                                                                              The HTTP status code corresponding to the network error returned by the network request.

                                                                                                                                                                                                                                                                                                                              statusMessage: undefined | string

                                                                                                                                                                                                                                                                                                                              The network status message describing the error that occurred while requesting the manifest.

                                                                                                                                                                                                                                                                                                                              track: undefined | Track

                                                                                                                                                                                                                                                                                                                              The track that this segment belongs to, if available.

                                                                                                                                                                                                                                                                                                                              trackType: MediaTrackType

                                                                                                                                                                                                                                                                                                                              The type of track that this segment belongs to/

                                                                                                                                                                                                                                                                                                                              type: "segmenterror"

                                                                                                                                                                                                                                                                                                                              The type of the event.

                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ServerSideAdInsertionConfiguration.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ServerSideAdInsertionConfiguration.html index 2f4e1f0ababf..45659bbc2e50 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ServerSideAdInsertionConfiguration.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ServerSideAdInsertionConfiguration.html @@ -1,5 +1,5 @@ ServerSideAdInsertionConfiguration | THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                              THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                Interface ServerSideAdInsertionConfiguration

                                                                                                                                                                                                                                                                                                                                Represents a configuration for server-side ad insertion (SSAI).


                                                                                                                                                                                                                                                                                                                                - Available since v2.12.0.

                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                interface ServerSideAdInsertionConfiguration {
                                                                                                                                                                                                                                                                                                                                    integration: CustomAdIntegrationKind | "google-dai";
                                                                                                                                                                                                                                                                                                                                }

                                                                                                                                                                                                                                                                                                                                Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                Index

                                                                                                                                                                                                                                                                                                                                Properties

                                                                                                                                                                                                                                                                                                                                interface ServerSideAdInsertionConfiguration {
                                                                                                                                                                                                                                                                                                                                    integration: CustomAdIntegrationKind | "google-dai";
                                                                                                                                                                                                                                                                                                                                }

                                                                                                                                                                                                                                                                                                                                Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                Index

                                                                                                                                                                                                                                                                                                                                Properties

                                                                                                                                                                                                                                                                                                                                Properties

                                                                                                                                                                                                                                                                                                                                integration: CustomAdIntegrationKind | "google-dai"

                                                                                                                                                                                                                                                                                                                                The identifier for the SSAI integration.

                                                                                                                                                                                                                                                                                                                                diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/SmartSightConfiguration.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/SmartSightConfiguration.html index 9fa2590113ac..a7726f424545 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/SmartSightConfiguration.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/SmartSightConfiguration.html @@ -1,6 +1,6 @@ SmartSightConfiguration | THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                  Interface SmartSightConfiguration

                                                                                                                                                                                                                                                                                                                                  Describes the configuration of the Media Melon SmartSight integration.


                                                                                                                                                                                                                                                                                                                                  - Available since v2.33.2.

                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                  interface SmartSightConfiguration {
                                                                                                                                                                                                                                                                                                                                      assetID?: string;
                                                                                                                                                                                                                                                                                                                                      customerID: string;
                                                                                                                                                                                                                                                                                                                                      domainName?: string;
                                                                                                                                                                                                                                                                                                                                      integration: "smartsight";
                                                                                                                                                                                                                                                                                                                                      metaURL?: string;
                                                                                                                                                                                                                                                                                                                                      playerName: string;
                                                                                                                                                                                                                                                                                                                                      subscriberID?: string;
                                                                                                                                                                                                                                                                                                                                  }

                                                                                                                                                                                                                                                                                                                                  Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                  Index

                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                  interface SmartSightConfiguration {
                                                                                                                                                                                                                                                                                                                                      assetID?: string;
                                                                                                                                                                                                                                                                                                                                      customerID: string;
                                                                                                                                                                                                                                                                                                                                      domainName?: string;
                                                                                                                                                                                                                                                                                                                                      integration: "smartsight";
                                                                                                                                                                                                                                                                                                                                      metaURL?: string;
                                                                                                                                                                                                                                                                                                                                      playerName: string;
                                                                                                                                                                                                                                                                                                                                      subscriberID?: string;
                                                                                                                                                                                                                                                                                                                                  }

                                                                                                                                                                                                                                                                                                                                  Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                  Index

                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                  assetID? customerID domainName? integration diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/SourceChangeEvent.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/SourceChangeEvent.html index c45d45f229a5..79f3ae1a0a34 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/SourceChangeEvent.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/SourceChangeEvent.html @@ -1,5 +1,5 @@ SourceChangeEvent | THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                  THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                    Interface SourceChangeEvent

                                                                                                                                                                                                                                                                                                                                    Fired when ChromelessPlayer.source changes.

                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                    interface SourceChangeEvent {
                                                                                                                                                                                                                                                                                                                                        date: Date;
                                                                                                                                                                                                                                                                                                                                        source: undefined | SourceDescription;
                                                                                                                                                                                                                                                                                                                                        type: "sourcechange";
                                                                                                                                                                                                                                                                                                                                    }

                                                                                                                                                                                                                                                                                                                                    Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                    • Event<"sourcechange">
                                                                                                                                                                                                                                                                                                                                      • SourceChangeEvent
                                                                                                                                                                                                                                                                                                                                    Index

                                                                                                                                                                                                                                                                                                                                    Properties

                                                                                                                                                                                                                                                                                                                                    interface SourceChangeEvent {
                                                                                                                                                                                                                                                                                                                                        date: Date;
                                                                                                                                                                                                                                                                                                                                        source: undefined | SourceDescription;
                                                                                                                                                                                                                                                                                                                                        type: "sourcechange";
                                                                                                                                                                                                                                                                                                                                    }

                                                                                                                                                                                                                                                                                                                                    Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                    • Event<"sourcechange">
                                                                                                                                                                                                                                                                                                                                      • SourceChangeEvent
                                                                                                                                                                                                                                                                                                                                    Index

                                                                                                                                                                                                                                                                                                                                    Properties

                                                                                                                                                                                                                                                                                                                                    Properties

                                                                                                                                                                                                                                                                                                                                    date: Date

                                                                                                                                                                                                                                                                                                                                    The creation date of the event.

                                                                                                                                                                                                                                                                                                                                    diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/SourceConfiguration.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/SourceConfiguration.html index 47d993ad581a..2041a99476a8 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/SourceConfiguration.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/SourceConfiguration.html @@ -1,5 +1,5 @@ SourceConfiguration | THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                    THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                      Interface SourceConfiguration

                                                                                                                                                                                                                                                                                                                                      Describes the configuration of a player's source.

                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                      interface SourceConfiguration {
                                                                                                                                                                                                                                                                                                                                          ads?: AdDescription[];
                                                                                                                                                                                                                                                                                                                                          analytics?: AnalyticsDescription[];
                                                                                                                                                                                                                                                                                                                                          blockContentIfAdError?: boolean;
                                                                                                                                                                                                                                                                                                                                          contentProtection?: DRMConfiguration;
                                                                                                                                                                                                                                                                                                                                          drm?: DRMConfiguration;
                                                                                                                                                                                                                                                                                                                                          metadata?: ChromecastMetadataDescription;
                                                                                                                                                                                                                                                                                                                                          mutedAutoplay?: MutedAutoplayConfiguration;
                                                                                                                                                                                                                                                                                                                                          playAdsAfterTime?: number;
                                                                                                                                                                                                                                                                                                                                          poster?: string;
                                                                                                                                                                                                                                                                                                                                          streamType?: StreamType;
                                                                                                                                                                                                                                                                                                                                          textTracks?: TextTrackDescription[];
                                                                                                                                                                                                                                                                                                                                          timeServer?: string;
                                                                                                                                                                                                                                                                                                                                          vr?: VRConfiguration;
                                                                                                                                                                                                                                                                                                                                      }

                                                                                                                                                                                                                                                                                                                                      Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                      Index

                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                      interface SourceConfiguration {
                                                                                                                                                                                                                                                                                                                                          ads?: AdDescription[];
                                                                                                                                                                                                                                                                                                                                          analytics?: AnalyticsDescription[];
                                                                                                                                                                                                                                                                                                                                          blockContentIfAdError?: boolean;
                                                                                                                                                                                                                                                                                                                                          contentProtection?: DRMConfiguration;
                                                                                                                                                                                                                                                                                                                                          drm?: DRMConfiguration;
                                                                                                                                                                                                                                                                                                                                          metadata?: ChromecastMetadataDescription;
                                                                                                                                                                                                                                                                                                                                          mutedAutoplay?: MutedAutoplayConfiguration;
                                                                                                                                                                                                                                                                                                                                          playAdsAfterTime?: number;
                                                                                                                                                                                                                                                                                                                                          poster?: string;
                                                                                                                                                                                                                                                                                                                                          streamType?: StreamType;
                                                                                                                                                                                                                                                                                                                                          textTracks?: TextTrackDescription[];
                                                                                                                                                                                                                                                                                                                                          timeServer?: string;
                                                                                                                                                                                                                                                                                                                                          vr?: VRConfiguration;
                                                                                                                                                                                                                                                                                                                                      }

                                                                                                                                                                                                                                                                                                                                      Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                      Index

                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                      ads? analytics? blockContentIfAdError? contentProtection? diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/SourceDescription.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/SourceDescription.html index 47fb9cd3e0fe..41f688ac1a08 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/SourceDescription.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/SourceDescription.html @@ -1,5 +1,5 @@ SourceDescription | THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                      THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                        Interface SourceDescription

                                                                                                                                                                                                                                                                                                                                        Describes the configuration of a player's source.

                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                        interface SourceDescription {
                                                                                                                                                                                                                                                                                                                                            ads?: AdDescription[];
                                                                                                                                                                                                                                                                                                                                            analytics?: AnalyticsDescription[];
                                                                                                                                                                                                                                                                                                                                            blockContentIfAdError?: boolean;
                                                                                                                                                                                                                                                                                                                                            contentProtection?: DRMConfiguration;
                                                                                                                                                                                                                                                                                                                                            drm?: DRMConfiguration;
                                                                                                                                                                                                                                                                                                                                            metadata?: ChromecastMetadataDescription;
                                                                                                                                                                                                                                                                                                                                            mutedAutoplay?: MutedAutoplayConfiguration;
                                                                                                                                                                                                                                                                                                                                            playAdsAfterTime?: number;
                                                                                                                                                                                                                                                                                                                                            poster?: string;
                                                                                                                                                                                                                                                                                                                                            sources?: Sources;
                                                                                                                                                                                                                                                                                                                                            streamType?: StreamType;
                                                                                                                                                                                                                                                                                                                                            textTracks?: TextTrackDescription[];
                                                                                                                                                                                                                                                                                                                                            timeServer?: string;
                                                                                                                                                                                                                                                                                                                                            vr?: VRConfiguration;
                                                                                                                                                                                                                                                                                                                                        }

                                                                                                                                                                                                                                                                                                                                        Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                        Index

                                                                                                                                                                                                                                                                                                                                        Properties

                                                                                                                                                                                                                                                                                                                                        interface SourceDescription {
                                                                                                                                                                                                                                                                                                                                            ads?: AdDescription[];
                                                                                                                                                                                                                                                                                                                                            analytics?: AnalyticsDescription[];
                                                                                                                                                                                                                                                                                                                                            blockContentIfAdError?: boolean;
                                                                                                                                                                                                                                                                                                                                            contentProtection?: DRMConfiguration;
                                                                                                                                                                                                                                                                                                                                            drm?: DRMConfiguration;
                                                                                                                                                                                                                                                                                                                                            metadata?: ChromecastMetadataDescription;
                                                                                                                                                                                                                                                                                                                                            mutedAutoplay?: MutedAutoplayConfiguration;
                                                                                                                                                                                                                                                                                                                                            playAdsAfterTime?: number;
                                                                                                                                                                                                                                                                                                                                            poster?: string;
                                                                                                                                                                                                                                                                                                                                            sources?: Sources;
                                                                                                                                                                                                                                                                                                                                            streamType?: StreamType;
                                                                                                                                                                                                                                                                                                                                            textTracks?: TextTrackDescription[];
                                                                                                                                                                                                                                                                                                                                            timeServer?: string;
                                                                                                                                                                                                                                                                                                                                            vr?: VRConfiguration;
                                                                                                                                                                                                                                                                                                                                        }

                                                                                                                                                                                                                                                                                                                                        Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                        Index

                                                                                                                                                                                                                                                                                                                                        Properties

                                                                                                                                                                                                                                                                                                                                        ads? analytics? blockContentIfAdError? contentProtection? diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/SpotXAdDescription.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/SpotXAdDescription.html index 0a6d698c499e..92a047a6ae10 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/SpotXAdDescription.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/SpotXAdDescription.html @@ -3,7 +3,7 @@
                                                                                                                                                                                                                                                                                                                                        {
                                                                                                                                                                                                                                                                                                                                        integration: 'spotx',
                                                                                                                                                                                                                                                                                                                                        id: 123456,
                                                                                                                                                                                                                                                                                                                                        cacheBuster: true,
                                                                                                                                                                                                                                                                                                                                        app: {
                                                                                                                                                                                                                                                                                                                                        bundle: 'com.exampleapps.example',
                                                                                                                                                                                                                                                                                                                                        name: 'My CTV App'
                                                                                                                                                                                                                                                                                                                                        },
                                                                                                                                                                                                                                                                                                                                        device: {
                                                                                                                                                                                                                                                                                                                                        ifa: '38400000-8cf0-11bd-b23e-10b96e40000d',
                                                                                                                                                                                                                                                                                                                                        ua: 'Mozilla/5.0 (iPhone; CPU iPhone OS 10_3 like Mac OS X) AppleWebKit/602.1.50 (KHTML, like Gecko) CriOS/56.0.2924.75 Mobile/14E5239e Safari/602.1',
                                                                                                                                                                                                                                                                                                                                        geo: {
                                                                                                                                                                                                                                                                                                                                        lat: -24.378528,
                                                                                                                                                                                                                                                                                                                                        lon: -128.325119
                                                                                                                                                                                                                                                                                                                                        },
                                                                                                                                                                                                                                                                                                                                        dnt: 1,
                                                                                                                                                                                                                                                                                                                                        lmt: 1,
                                                                                                                                                                                                                                                                                                                                        },
                                                                                                                                                                                                                                                                                                                                        custom: {
                                                                                                                                                                                                                                                                                                                                        category: ['category1', 'category2'],
                                                                                                                                                                                                                                                                                                                                        somekey: 'somevalue'
                                                                                                                                                                                                                                                                                                                                        }
                                                                                                                                                                                                                                                                                                                                        user: {
                                                                                                                                                                                                                                                                                                                                        yob: 1984,
                                                                                                                                                                                                                                                                                                                                        gender: 'm'
                                                                                                                                                                                                                                                                                                                                        }
                                                                                                                                                                                                                                                                                                                                        }
                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                        interface SpotXAdDescription {
                                                                                                                                                                                                                                                                                                                                            app?: SpotxData;
                                                                                                                                                                                                                                                                                                                                            cacheBuster?: boolean;
                                                                                                                                                                                                                                                                                                                                            contentPageUrl?: string;
                                                                                                                                                                                                                                                                                                                                            custom?: SpotxData;
                                                                                                                                                                                                                                                                                                                                            device?: SpotxData;
                                                                                                                                                                                                                                                                                                                                            id: string | number;
                                                                                                                                                                                                                                                                                                                                            integration: "spotx";
                                                                                                                                                                                                                                                                                                                                            ipAddress?: string;
                                                                                                                                                                                                                                                                                                                                            maximumAdDuration?: string | number;
                                                                                                                                                                                                                                                                                                                                            queryParameters?: SpotxQueryParameter;
                                                                                                                                                                                                                                                                                                                                            replaceContent?: boolean;
                                                                                                                                                                                                                                                                                                                                            sources?: string;
                                                                                                                                                                                                                                                                                                                                            timeOffset?: string | number;
                                                                                                                                                                                                                                                                                                                                            user?: SpotxData;
                                                                                                                                                                                                                                                                                                                                        }

                                                                                                                                                                                                                                                                                                                                        Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                        Index

                                                                                                                                                                                                                                                                                                                                        Properties

                                                                                                                                                                                                                                                                                                                                        interface SpotXAdDescription {
                                                                                                                                                                                                                                                                                                                                            app?: SpotxData;
                                                                                                                                                                                                                                                                                                                                            cacheBuster?: boolean;
                                                                                                                                                                                                                                                                                                                                            contentPageUrl?: string;
                                                                                                                                                                                                                                                                                                                                            custom?: SpotxData;
                                                                                                                                                                                                                                                                                                                                            device?: SpotxData;
                                                                                                                                                                                                                                                                                                                                            id: string | number;
                                                                                                                                                                                                                                                                                                                                            integration: "spotx";
                                                                                                                                                                                                                                                                                                                                            ipAddress?: string;
                                                                                                                                                                                                                                                                                                                                            maximumAdDuration?: string | number;
                                                                                                                                                                                                                                                                                                                                            queryParameters?: SpotxQueryParameter;
                                                                                                                                                                                                                                                                                                                                            replaceContent?: boolean;
                                                                                                                                                                                                                                                                                                                                            sources?: string;
                                                                                                                                                                                                                                                                                                                                            timeOffset?: string | number;
                                                                                                                                                                                                                                                                                                                                            user?: SpotxData;
                                                                                                                                                                                                                                                                                                                                        }

                                                                                                                                                                                                                                                                                                                                        Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                        Index

                                                                                                                                                                                                                                                                                                                                        Properties

                                                                                                                                                                                                                                                                                                                                        app? cacheBuster? contentPageUrl? custom? diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/StreamOneConfiguration.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/StreamOneConfiguration.html index 6fadd63b9cab..82b93134cb15 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/StreamOneConfiguration.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/StreamOneConfiguration.html @@ -1,6 +1,6 @@ StreamOneConfiguration | THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                        THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                          Interface StreamOneConfiguration

                                                                                                                                                                                                                                                                                                                                          Describes the configuration of the Stream One integration.


                                                                                                                                                                                                                                                                                                                                          - Available since v2.32.0.

                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                          interface StreamOneConfiguration {
                                                                                                                                                                                                                                                                                                                                              accountID: string;
                                                                                                                                                                                                                                                                                                                                              integration: "streamone";
                                                                                                                                                                                                                                                                                                                                              itemID: string;
                                                                                                                                                                                                                                                                                                                                              itemTitle: string;
                                                                                                                                                                                                                                                                                                                                          }

                                                                                                                                                                                                                                                                                                                                          Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                          Index

                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                          interface StreamOneConfiguration {
                                                                                                                                                                                                                                                                                                                                              accountID: string;
                                                                                                                                                                                                                                                                                                                                              integration: "streamone";
                                                                                                                                                                                                                                                                                                                                              itemID: string;
                                                                                                                                                                                                                                                                                                                                              itemTitle: string;
                                                                                                                                                                                                                                                                                                                                          }

                                                                                                                                                                                                                                                                                                                                          Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                          Index

                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                          accountID integration itemID itemTitle diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/TTMLCue.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/TTMLCue.html index eea5f75f8c22..853aa55c975b 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/TTMLCue.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/TTMLCue.html @@ -1,5 +1,5 @@ TTMLCue | THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                          THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                            Interface TTMLCue

                                                                                                                                                                                                                                                                                                                                            Represents a cue of a TTML text track.

                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                            interface TTMLCue {
                                                                                                                                                                                                                                                                                                                                                content: any;
                                                                                                                                                                                                                                                                                                                                                endTime: number;
                                                                                                                                                                                                                                                                                                                                                extent: undefined | TTMLExtent;
                                                                                                                                                                                                                                                                                                                                                id: string;
                                                                                                                                                                                                                                                                                                                                                metadata: any;
                                                                                                                                                                                                                                                                                                                                                regions: Record<string, StylePropertyRecord>;
                                                                                                                                                                                                                                                                                                                                                startTime: number;
                                                                                                                                                                                                                                                                                                                                                styles: Record<string, StylePropertyRecord>;
                                                                                                                                                                                                                                                                                                                                                track: TextTrack;
                                                                                                                                                                                                                                                                                                                                                uid: number;
                                                                                                                                                                                                                                                                                                                                                addEventListener<TType extends keyof TextTrackCueEventMap>(
                                                                                                                                                                                                                                                                                                                                                    type: TType | readonly TType[],
                                                                                                                                                                                                                                                                                                                                                    listener: EventListener<TextTrackCueEventMap[TType]>,
                                                                                                                                                                                                                                                                                                                                                ): void;
                                                                                                                                                                                                                                                                                                                                                removeEventListener<TType extends keyof TextTrackCueEventMap>(
                                                                                                                                                                                                                                                                                                                                                    type: TType | readonly TType[],
                                                                                                                                                                                                                                                                                                                                                    listener: EventListener<TextTrackCueEventMap[TType]>,
                                                                                                                                                                                                                                                                                                                                                ): void;
                                                                                                                                                                                                                                                                                                                                            }

                                                                                                                                                                                                                                                                                                                                            Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                            Index

                                                                                                                                                                                                                                                                                                                                            Properties

                                                                                                                                                                                                                                                                                                                                            interface TTMLCue {
                                                                                                                                                                                                                                                                                                                                                content: any;
                                                                                                                                                                                                                                                                                                                                                endTime: number;
                                                                                                                                                                                                                                                                                                                                                extent: undefined | TTMLExtent;
                                                                                                                                                                                                                                                                                                                                                id: string;
                                                                                                                                                                                                                                                                                                                                                metadata: any;
                                                                                                                                                                                                                                                                                                                                                regions: Record<string, StylePropertyRecord>;
                                                                                                                                                                                                                                                                                                                                                startTime: number;
                                                                                                                                                                                                                                                                                                                                                styles: Record<string, StylePropertyRecord>;
                                                                                                                                                                                                                                                                                                                                                track: TextTrack;
                                                                                                                                                                                                                                                                                                                                                uid: number;
                                                                                                                                                                                                                                                                                                                                                addEventListener<TType extends keyof TextTrackCueEventMap>(
                                                                                                                                                                                                                                                                                                                                                    type: TType | readonly TType[],
                                                                                                                                                                                                                                                                                                                                                    listener: EventListener<TextTrackCueEventMap[TType]>,
                                                                                                                                                                                                                                                                                                                                                ): void;
                                                                                                                                                                                                                                                                                                                                                removeEventListener<TType extends keyof TextTrackCueEventMap>(
                                                                                                                                                                                                                                                                                                                                                    type: TType | readonly TType[],
                                                                                                                                                                                                                                                                                                                                                    listener: EventListener<TextTrackCueEventMap[TType]>,
                                                                                                                                                                                                                                                                                                                                                ): void;
                                                                                                                                                                                                                                                                                                                                            }

                                                                                                                                                                                                                                                                                                                                            Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                            Index

                                                                                                                                                                                                                                                                                                                                            Properties

                                                                                                                                                                                                                                                                                                                                            content endTime extent id diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/TargetQualityChangedEvent.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/TargetQualityChangedEvent.html index c61266d35bcd..fbac951e14ed 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/TargetQualityChangedEvent.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/TargetQualityChangedEvent.html @@ -1,5 +1,5 @@ TargetQualityChangedEvent | THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                            THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                              Interface TargetQualityChangedEvent

                                                                                                                                                                                                                                                                                                                                              Fired when the media track's target quality changes.

                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                              interface TargetQualityChangedEvent {
                                                                                                                                                                                                                                                                                                                                                  date: Date;
                                                                                                                                                                                                                                                                                                                                                  qualities: Quality[];
                                                                                                                                                                                                                                                                                                                                                  quality: undefined | Quality;
                                                                                                                                                                                                                                                                                                                                                  type: "targetqualitychanged";
                                                                                                                                                                                                                                                                                                                                              }

                                                                                                                                                                                                                                                                                                                                              Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                              • Event<"targetqualitychanged">
                                                                                                                                                                                                                                                                                                                                                • TargetQualityChangedEvent
                                                                                                                                                                                                                                                                                                                                              Index

                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                              interface TargetQualityChangedEvent {
                                                                                                                                                                                                                                                                                                                                                  date: Date;
                                                                                                                                                                                                                                                                                                                                                  qualities: Quality[];
                                                                                                                                                                                                                                                                                                                                                  quality: undefined | Quality;
                                                                                                                                                                                                                                                                                                                                                  type: "targetqualitychanged";
                                                                                                                                                                                                                                                                                                                                              }

                                                                                                                                                                                                                                                                                                                                              Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                              • Event<"targetqualitychanged">
                                                                                                                                                                                                                                                                                                                                                • TargetQualityChangedEvent
                                                                                                                                                                                                                                                                                                                                              Index

                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                              date qualities quality type diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/TextTrack.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/TextTrack.html index b86b62e6a79c..1c4a57466826 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/TextTrack.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/TextTrack.html @@ -1,5 +1,5 @@ TextTrack | THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                              THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                Interface TextTrack

                                                                                                                                                                                                                                                                                                                                                Represents a text track of a media resource.

                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                interface TextTrack {
                                                                                                                                                                                                                                                                                                                                                    accessibility: AccessibilityRole[];
                                                                                                                                                                                                                                                                                                                                                    activeCues: null | TextTrackCueList;
                                                                                                                                                                                                                                                                                                                                                    cues: null | TextTrackCueList;
                                                                                                                                                                                                                                                                                                                                                    forced: boolean;
                                                                                                                                                                                                                                                                                                                                                    id: string;
                                                                                                                                                                                                                                                                                                                                                    inBandMetadataTrackDispatchType: string;
                                                                                                                                                                                                                                                                                                                                                    kind: string;
                                                                                                                                                                                                                                                                                                                                                    label: string;
                                                                                                                                                                                                                                                                                                                                                    language: string;
                                                                                                                                                                                                                                                                                                                                                    mode: string;
                                                                                                                                                                                                                                                                                                                                                    readyState: TextTrackReadyState;
                                                                                                                                                                                                                                                                                                                                                    src: string;
                                                                                                                                                                                                                                                                                                                                                    type: TextTrackType;
                                                                                                                                                                                                                                                                                                                                                    uid: number;
                                                                                                                                                                                                                                                                                                                                                    addEventListener<TType extends StringKeyOf<TextTrackEventMap>>(
                                                                                                                                                                                                                                                                                                                                                        type: TType | readonly TType[],
                                                                                                                                                                                                                                                                                                                                                        listener: EventListener<TextTrackEventMap[TType]>,
                                                                                                                                                                                                                                                                                                                                                    ): void;
                                                                                                                                                                                                                                                                                                                                                    removeEventListener<TType extends StringKeyOf<TextTrackEventMap>>(
                                                                                                                                                                                                                                                                                                                                                        type: TType | readonly TType[],
                                                                                                                                                                                                                                                                                                                                                        listener: EventListener<TextTrackEventMap[TType]>,
                                                                                                                                                                                                                                                                                                                                                    ): void;
                                                                                                                                                                                                                                                                                                                                                }

                                                                                                                                                                                                                                                                                                                                                Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                Index

                                                                                                                                                                                                                                                                                                                                                Properties

                                                                                                                                                                                                                                                                                                                                                interface TextTrack {
                                                                                                                                                                                                                                                                                                                                                    accessibility: AccessibilityRole[];
                                                                                                                                                                                                                                                                                                                                                    activeCues: null | TextTrackCueList;
                                                                                                                                                                                                                                                                                                                                                    cues: null | TextTrackCueList;
                                                                                                                                                                                                                                                                                                                                                    forced: boolean;
                                                                                                                                                                                                                                                                                                                                                    id: string;
                                                                                                                                                                                                                                                                                                                                                    inBandMetadataTrackDispatchType: string;
                                                                                                                                                                                                                                                                                                                                                    kind: string;
                                                                                                                                                                                                                                                                                                                                                    label: string;
                                                                                                                                                                                                                                                                                                                                                    language: string;
                                                                                                                                                                                                                                                                                                                                                    mode: string;
                                                                                                                                                                                                                                                                                                                                                    readyState: TextTrackReadyState;
                                                                                                                                                                                                                                                                                                                                                    src: string;
                                                                                                                                                                                                                                                                                                                                                    type: TextTrackType;
                                                                                                                                                                                                                                                                                                                                                    uid: number;
                                                                                                                                                                                                                                                                                                                                                    addEventListener<TType extends StringKeyOf<TextTrackEventMap>>(
                                                                                                                                                                                                                                                                                                                                                        type: TType | readonly TType[],
                                                                                                                                                                                                                                                                                                                                                        listener: EventListener<TextTrackEventMap[TType]>,
                                                                                                                                                                                                                                                                                                                                                    ): void;
                                                                                                                                                                                                                                                                                                                                                    removeEventListener<TType extends StringKeyOf<TextTrackEventMap>>(
                                                                                                                                                                                                                                                                                                                                                        type: TType | readonly TType[],
                                                                                                                                                                                                                                                                                                                                                        listener: EventListener<TextTrackEventMap[TType]>,
                                                                                                                                                                                                                                                                                                                                                    ): void;
                                                                                                                                                                                                                                                                                                                                                }

                                                                                                                                                                                                                                                                                                                                                Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                Index

                                                                                                                                                                                                                                                                                                                                                Properties

                                                                                                                                                                                                                                                                                                                                                accessibility activeCues cues forced diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/TextTrackAddCueEvent.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/TextTrackAddCueEvent.html index a88014734879..c9e0f0534fbd 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/TextTrackAddCueEvent.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/TextTrackAddCueEvent.html @@ -1,5 +1,5 @@ TextTrackAddCueEvent | THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                                THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                  Interface TextTrackAddCueEvent

                                                                                                                                                                                                                                                                                                                                                  Fired when a cue is added to the text track.

                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                  interface TextTrackAddCueEvent {
                                                                                                                                                                                                                                                                                                                                                      cue: TextTrackCue;
                                                                                                                                                                                                                                                                                                                                                      date: Date;
                                                                                                                                                                                                                                                                                                                                                      type: "addcue";
                                                                                                                                                                                                                                                                                                                                                  }

                                                                                                                                                                                                                                                                                                                                                  Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                  • Event<"addcue">
                                                                                                                                                                                                                                                                                                                                                    • TextTrackAddCueEvent
                                                                                                                                                                                                                                                                                                                                                  Index

                                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                                  cue +
                                                                                                                                                                                                                                                                                                                                                  interface TextTrackAddCueEvent {
                                                                                                                                                                                                                                                                                                                                                      cue: TextTrackCue;
                                                                                                                                                                                                                                                                                                                                                      date: Date;
                                                                                                                                                                                                                                                                                                                                                      type: "addcue";
                                                                                                                                                                                                                                                                                                                                                  }

                                                                                                                                                                                                                                                                                                                                                  Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                  • Event<"addcue">
                                                                                                                                                                                                                                                                                                                                                    • TextTrackAddCueEvent
                                                                                                                                                                                                                                                                                                                                                  Index

                                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                                  The cue that is added to the text track.

                                                                                                                                                                                                                                                                                                                                                  diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/TextTrackCue.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/TextTrackCue.html index fb0a430daeac..d109b25c981d 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/TextTrackCue.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/TextTrackCue.html @@ -1,5 +1,5 @@ TextTrackCue | THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                                  THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                    Interface TextTrackCue

                                                                                                                                                                                                                                                                                                                                                    Represents a cue of a text track.

                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                    interface TextTrackCue {
                                                                                                                                                                                                                                                                                                                                                        content: any;
                                                                                                                                                                                                                                                                                                                                                        endTime: number;
                                                                                                                                                                                                                                                                                                                                                        id: string;
                                                                                                                                                                                                                                                                                                                                                        startTime: number;
                                                                                                                                                                                                                                                                                                                                                        track: TextTrack;
                                                                                                                                                                                                                                                                                                                                                        uid: number;
                                                                                                                                                                                                                                                                                                                                                        addEventListener<TType extends keyof TextTrackCueEventMap>(
                                                                                                                                                                                                                                                                                                                                                            type: TType | readonly TType[],
                                                                                                                                                                                                                                                                                                                                                            listener: EventListener<TextTrackCueEventMap[TType]>,
                                                                                                                                                                                                                                                                                                                                                        ): void;
                                                                                                                                                                                                                                                                                                                                                        removeEventListener<TType extends keyof TextTrackCueEventMap>(
                                                                                                                                                                                                                                                                                                                                                            type: TType | readonly TType[],
                                                                                                                                                                                                                                                                                                                                                            listener: EventListener<TextTrackCueEventMap[TType]>,
                                                                                                                                                                                                                                                                                                                                                        ): void;
                                                                                                                                                                                                                                                                                                                                                    }

                                                                                                                                                                                                                                                                                                                                                    Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                    Index

                                                                                                                                                                                                                                                                                                                                                    Properties

                                                                                                                                                                                                                                                                                                                                                    interface TextTrackCue {
                                                                                                                                                                                                                                                                                                                                                        content: any;
                                                                                                                                                                                                                                                                                                                                                        endTime: number;
                                                                                                                                                                                                                                                                                                                                                        id: string;
                                                                                                                                                                                                                                                                                                                                                        startTime: number;
                                                                                                                                                                                                                                                                                                                                                        track: TextTrack;
                                                                                                                                                                                                                                                                                                                                                        uid: number;
                                                                                                                                                                                                                                                                                                                                                        addEventListener<TType extends keyof TextTrackCueEventMap>(
                                                                                                                                                                                                                                                                                                                                                            type: TType | readonly TType[],
                                                                                                                                                                                                                                                                                                                                                            listener: EventListener<TextTrackCueEventMap[TType]>,
                                                                                                                                                                                                                                                                                                                                                        ): void;
                                                                                                                                                                                                                                                                                                                                                        removeEventListener<TType extends keyof TextTrackCueEventMap>(
                                                                                                                                                                                                                                                                                                                                                            type: TType | readonly TType[],
                                                                                                                                                                                                                                                                                                                                                            listener: EventListener<TextTrackCueEventMap[TType]>,
                                                                                                                                                                                                                                                                                                                                                        ): void;
                                                                                                                                                                                                                                                                                                                                                    }

                                                                                                                                                                                                                                                                                                                                                    Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                    Index

                                                                                                                                                                                                                                                                                                                                                    Properties

                                                                                                                                                                                                                                                                                                                                                    content endTime id startTime diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/TextTrackCueChangeEvent.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/TextTrackCueChangeEvent.html index 3c07df159468..12afce056e7d 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/TextTrackCueChangeEvent.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/TextTrackCueChangeEvent.html @@ -1,5 +1,5 @@ TextTrackCueChangeEvent | THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                                    THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                      Interface TextTrackCueChangeEvent

                                                                                                                                                                                                                                                                                                                                                      Fired when the displaying cues of the text track has changed.

                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                      interface TextTrackCueChangeEvent {
                                                                                                                                                                                                                                                                                                                                                          date: Date;
                                                                                                                                                                                                                                                                                                                                                          track: TextTrack;
                                                                                                                                                                                                                                                                                                                                                          type: "cuechange";
                                                                                                                                                                                                                                                                                                                                                      }

                                                                                                                                                                                                                                                                                                                                                      Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                      • Event<"cuechange">
                                                                                                                                                                                                                                                                                                                                                        • TextTrackCueChangeEvent
                                                                                                                                                                                                                                                                                                                                                      Index

                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                      interface TextTrackCueChangeEvent {
                                                                                                                                                                                                                                                                                                                                                          date: Date;
                                                                                                                                                                                                                                                                                                                                                          track: TextTrack;
                                                                                                                                                                                                                                                                                                                                                          type: "cuechange";
                                                                                                                                                                                                                                                                                                                                                      }

                                                                                                                                                                                                                                                                                                                                                      Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                      • Event<"cuechange">
                                                                                                                                                                                                                                                                                                                                                        • TextTrackCueChangeEvent
                                                                                                                                                                                                                                                                                                                                                      Index

                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                      date: Date

                                                                                                                                                                                                                                                                                                                                                      The creation date of the event.

                                                                                                                                                                                                                                                                                                                                                      diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/TextTrackCueEnterEvent.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/TextTrackCueEnterEvent.html index 83f5e50621f4..bc79c8a3804d 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/TextTrackCueEnterEvent.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/TextTrackCueEnterEvent.html @@ -1,5 +1,5 @@ TextTrackCueEnterEvent | THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                                      THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                        Interface TextTrackCueEnterEvent

                                                                                                                                                                                                                                                                                                                                                        Fired when a text track cue is entered.

                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                        interface TextTrackCueEnterEvent {
                                                                                                                                                                                                                                                                                                                                                            cue: TextTrackCue;
                                                                                                                                                                                                                                                                                                                                                            date: Date;
                                                                                                                                                                                                                                                                                                                                                            type: "enter";
                                                                                                                                                                                                                                                                                                                                                        }

                                                                                                                                                                                                                                                                                                                                                        Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                        • Event<"enter">
                                                                                                                                                                                                                                                                                                                                                          • TextTrackCueEnterEvent
                                                                                                                                                                                                                                                                                                                                                        Index

                                                                                                                                                                                                                                                                                                                                                        Properties

                                                                                                                                                                                                                                                                                                                                                        cue +
                                                                                                                                                                                                                                                                                                                                                        interface TextTrackCueEnterEvent {
                                                                                                                                                                                                                                                                                                                                                            cue: TextTrackCue;
                                                                                                                                                                                                                                                                                                                                                            date: Date;
                                                                                                                                                                                                                                                                                                                                                            type: "enter";
                                                                                                                                                                                                                                                                                                                                                        }

                                                                                                                                                                                                                                                                                                                                                        Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                        • Event<"enter">
                                                                                                                                                                                                                                                                                                                                                          • TextTrackCueEnterEvent
                                                                                                                                                                                                                                                                                                                                                        Index

                                                                                                                                                                                                                                                                                                                                                        Properties

                                                                                                                                                                                                                                                                                                                                                        Properties

                                                                                                                                                                                                                                                                                                                                                        The text track cue that is entered.

                                                                                                                                                                                                                                                                                                                                                        diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/TextTrackCueExitEvent.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/TextTrackCueExitEvent.html index 3b77040fad09..a44d8e4a0676 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/TextTrackCueExitEvent.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/TextTrackCueExitEvent.html @@ -1,5 +1,5 @@ TextTrackCueExitEvent | THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                                        THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                          Interface TextTrackCueExitEvent

                                                                                                                                                                                                                                                                                                                                                          Fired when a text track cue is exited.

                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                          interface TextTrackCueExitEvent {
                                                                                                                                                                                                                                                                                                                                                              cue: TextTrackCue;
                                                                                                                                                                                                                                                                                                                                                              date: Date;
                                                                                                                                                                                                                                                                                                                                                              type: "exit";
                                                                                                                                                                                                                                                                                                                                                          }

                                                                                                                                                                                                                                                                                                                                                          Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                          • Event<"exit">
                                                                                                                                                                                                                                                                                                                                                            • TextTrackCueExitEvent
                                                                                                                                                                                                                                                                                                                                                          Index

                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                          cue +
                                                                                                                                                                                                                                                                                                                                                          interface TextTrackCueExitEvent {
                                                                                                                                                                                                                                                                                                                                                              cue: TextTrackCue;
                                                                                                                                                                                                                                                                                                                                                              date: Date;
                                                                                                                                                                                                                                                                                                                                                              type: "exit";
                                                                                                                                                                                                                                                                                                                                                          }

                                                                                                                                                                                                                                                                                                                                                          Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                          • Event<"exit">
                                                                                                                                                                                                                                                                                                                                                            • TextTrackCueExitEvent
                                                                                                                                                                                                                                                                                                                                                          Index

                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                          The text track cue that is exited.

                                                                                                                                                                                                                                                                                                                                                          diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/TextTrackCueList.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/TextTrackCueList.html index 06399516423d..51811467cbe0 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/TextTrackCueList.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/TextTrackCueList.html @@ -1,5 +1,5 @@ TextTrackCueList | THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                                          THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                            Interface TextTrackCueList

                                                                                                                                                                                                                                                                                                                                                            List of text track cues.

                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                            interface TextTrackCueList {
                                                                                                                                                                                                                                                                                                                                                                length: number;
                                                                                                                                                                                                                                                                                                                                                                item(index: number): TextTrackCue;
                                                                                                                                                                                                                                                                                                                                                                readonly [index: number]: TextTrackCue;
                                                                                                                                                                                                                                                                                                                                                            }

                                                                                                                                                                                                                                                                                                                                                            Hierarchy

                                                                                                                                                                                                                                                                                                                                                            Indexable

                                                                                                                                                                                                                                                                                                                                                            • readonly [index: number]: TextTrackCue

                                                                                                                                                                                                                                                                                                                                                              Index signature to get the text track cue at the requested index in the list.

                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                            interface TextTrackCueList {
                                                                                                                                                                                                                                                                                                                                                                length: number;
                                                                                                                                                                                                                                                                                                                                                                item(index: number): TextTrackCue;
                                                                                                                                                                                                                                                                                                                                                                readonly [index: number]: TextTrackCue;
                                                                                                                                                                                                                                                                                                                                                            }

                                                                                                                                                                                                                                                                                                                                                            Hierarchy

                                                                                                                                                                                                                                                                                                                                                            Indexable

                                                                                                                                                                                                                                                                                                                                                            • readonly [index: number]: TextTrackCue

                                                                                                                                                                                                                                                                                                                                                              Index signature to get the text track cue at the requested index in the list.

                                                                                                                                                                                                                                                                                                                                                            Index

                                                                                                                                                                                                                                                                                                                                                            Properties

                                                                                                                                                                                                                                                                                                                                                            Methods

                                                                                                                                                                                                                                                                                                                                                            Properties

                                                                                                                                                                                                                                                                                                                                                            length: number

                                                                                                                                                                                                                                                                                                                                                            The number of text track cues in the list.

                                                                                                                                                                                                                                                                                                                                                            diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/TextTrackCueUpdateEvent.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/TextTrackCueUpdateEvent.html index a240b7154ec2..811907aaecd6 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/TextTrackCueUpdateEvent.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/TextTrackCueUpdateEvent.html @@ -1,5 +1,5 @@ TextTrackCueUpdateEvent | THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                                            THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                              Interface TextTrackCueUpdateEvent

                                                                                                                                                                                                                                                                                                                                                              Fired when a text track cue is updated.

                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                              interface TextTrackCueUpdateEvent {
                                                                                                                                                                                                                                                                                                                                                                  cue: TextTrackCue;
                                                                                                                                                                                                                                                                                                                                                                  date: Date;
                                                                                                                                                                                                                                                                                                                                                                  type: "update";
                                                                                                                                                                                                                                                                                                                                                              }

                                                                                                                                                                                                                                                                                                                                                              Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                              • Event<"update">
                                                                                                                                                                                                                                                                                                                                                                • TextTrackCueUpdateEvent
                                                                                                                                                                                                                                                                                                                                                              Index

                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                              cue +
                                                                                                                                                                                                                                                                                                                                                              interface TextTrackCueUpdateEvent {
                                                                                                                                                                                                                                                                                                                                                                  cue: TextTrackCue;
                                                                                                                                                                                                                                                                                                                                                                  date: Date;
                                                                                                                                                                                                                                                                                                                                                                  type: "update";
                                                                                                                                                                                                                                                                                                                                                              }

                                                                                                                                                                                                                                                                                                                                                              Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                              • Event<"update">
                                                                                                                                                                                                                                                                                                                                                                • TextTrackCueUpdateEvent
                                                                                                                                                                                                                                                                                                                                                              Index

                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                              The text track cue that is updated.

                                                                                                                                                                                                                                                                                                                                                              diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/TextTrackEnterCueEvent.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/TextTrackEnterCueEvent.html index 038e89aced6e..4f375909bc2e 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/TextTrackEnterCueEvent.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/TextTrackEnterCueEvent.html @@ -1,5 +1,5 @@ TextTrackEnterCueEvent | THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                                              THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                Interface TextTrackEnterCueEvent

                                                                                                                                                                                                                                                                                                                                                                Fired when a cue of the text track has entered.

                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                interface TextTrackEnterCueEvent {
                                                                                                                                                                                                                                                                                                                                                                    cue: TextTrackCue;
                                                                                                                                                                                                                                                                                                                                                                    date: Date;
                                                                                                                                                                                                                                                                                                                                                                    type: "entercue";
                                                                                                                                                                                                                                                                                                                                                                }

                                                                                                                                                                                                                                                                                                                                                                Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                • Event<"entercue">
                                                                                                                                                                                                                                                                                                                                                                  • TextTrackEnterCueEvent
                                                                                                                                                                                                                                                                                                                                                                Index

                                                                                                                                                                                                                                                                                                                                                                Properties

                                                                                                                                                                                                                                                                                                                                                                cue +
                                                                                                                                                                                                                                                                                                                                                                interface TextTrackEnterCueEvent {
                                                                                                                                                                                                                                                                                                                                                                    cue: TextTrackCue;
                                                                                                                                                                                                                                                                                                                                                                    date: Date;
                                                                                                                                                                                                                                                                                                                                                                    type: "entercue";
                                                                                                                                                                                                                                                                                                                                                                }

                                                                                                                                                                                                                                                                                                                                                                Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                • Event<"entercue">
                                                                                                                                                                                                                                                                                                                                                                  • TextTrackEnterCueEvent
                                                                                                                                                                                                                                                                                                                                                                Index

                                                                                                                                                                                                                                                                                                                                                                Properties

                                                                                                                                                                                                                                                                                                                                                                Properties

                                                                                                                                                                                                                                                                                                                                                                The cue from the text track that has entered.

                                                                                                                                                                                                                                                                                                                                                                diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/TextTrackErrorEvent.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/TextTrackErrorEvent.html index 3c59d7748315..fb41553b30ce 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/TextTrackErrorEvent.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/TextTrackErrorEvent.html @@ -1,5 +1,5 @@ TextTrackErrorEvent | THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                                                THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                  Interface TextTrackErrorEvent

                                                                                                                                                                                                                                                                                                                                                                  An error event fired by a TextTrack.

                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                  interface TextTrackErrorEvent {
                                                                                                                                                                                                                                                                                                                                                                      date: Date;
                                                                                                                                                                                                                                                                                                                                                                      error: string;
                                                                                                                                                                                                                                                                                                                                                                      errorObject: TextTrackError;
                                                                                                                                                                                                                                                                                                                                                                      type: "error";
                                                                                                                                                                                                                                                                                                                                                                  }

                                                                                                                                                                                                                                                                                                                                                                  Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                  Index

                                                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                                                  interface TextTrackErrorEvent {
                                                                                                                                                                                                                                                                                                                                                                      date: Date;
                                                                                                                                                                                                                                                                                                                                                                      error: string;
                                                                                                                                                                                                                                                                                                                                                                      errorObject: TextTrackError;
                                                                                                                                                                                                                                                                                                                                                                      type: "error";
                                                                                                                                                                                                                                                                                                                                                                  }

                                                                                                                                                                                                                                                                                                                                                                  Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                  Index

                                                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                                                  date error errorObject type diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/TextTrackEventMap.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/TextTrackEventMap.html index a114ad9683bc..c56018ae1638 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/TextTrackEventMap.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/TextTrackEventMap.html @@ -1,5 +1,5 @@ TextTrackEventMap | THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                                                  THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                    Interface TextTrackEventMap

                                                                                                                                                                                                                                                                                                                                                                    The events fired by a TextTrack.

                                                                                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                                                                                    Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                    Index

                                                                                                                                                                                                                                                                                                                                                                    Properties

                                                                                                                                                                                                                                                                                                                                                                    Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                    Index

                                                                                                                                                                                                                                                                                                                                                                    Properties

                                                                                                                                                                                                                                                                                                                                                                    addcue change cuechange entercue diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/TextTrackExitCueEvent.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/TextTrackExitCueEvent.html index ac1dc3a361ff..97349e70b924 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/TextTrackExitCueEvent.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/TextTrackExitCueEvent.html @@ -1,5 +1,5 @@ TextTrackExitCueEvent | THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                                                    THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                      Interface TextTrackExitCueEvent

                                                                                                                                                                                                                                                                                                                                                                      Fired when a cue of the text track has exited.

                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                      interface TextTrackExitCueEvent {
                                                                                                                                                                                                                                                                                                                                                                          cue: TextTrackCue;
                                                                                                                                                                                                                                                                                                                                                                          date: Date;
                                                                                                                                                                                                                                                                                                                                                                          type: "exitcue";
                                                                                                                                                                                                                                                                                                                                                                      }

                                                                                                                                                                                                                                                                                                                                                                      Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                      • Event<"exitcue">
                                                                                                                                                                                                                                                                                                                                                                        • TextTrackExitCueEvent
                                                                                                                                                                                                                                                                                                                                                                      Index

                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                      cue +
                                                                                                                                                                                                                                                                                                                                                                      interface TextTrackExitCueEvent {
                                                                                                                                                                                                                                                                                                                                                                          cue: TextTrackCue;
                                                                                                                                                                                                                                                                                                                                                                          date: Date;
                                                                                                                                                                                                                                                                                                                                                                          type: "exitcue";
                                                                                                                                                                                                                                                                                                                                                                      }

                                                                                                                                                                                                                                                                                                                                                                      Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                      • Event<"exitcue">
                                                                                                                                                                                                                                                                                                                                                                        • TextTrackExitCueEvent
                                                                                                                                                                                                                                                                                                                                                                      Index

                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                      The cue from the text track that has exited.

                                                                                                                                                                                                                                                                                                                                                                      diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/TextTrackReadyStateChangeEvent.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/TextTrackReadyStateChangeEvent.html index 5df5345e1916..8e1504b150e8 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/TextTrackReadyStateChangeEvent.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/TextTrackReadyStateChangeEvent.html @@ -1,5 +1,5 @@ TextTrackReadyStateChangeEvent | THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                                                      THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                        Interface TextTrackReadyStateChangeEvent

                                                                                                                                                                                                                                                                                                                                                                        Fired when the ready state of the text track has changed.

                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                        interface TextTrackReadyStateChangeEvent {
                                                                                                                                                                                                                                                                                                                                                                            date: Date;
                                                                                                                                                                                                                                                                                                                                                                            readyState: TextTrackReadyState;
                                                                                                                                                                                                                                                                                                                                                                            track: TextTrack;
                                                                                                                                                                                                                                                                                                                                                                            type: "readystatechange";
                                                                                                                                                                                                                                                                                                                                                                        }

                                                                                                                                                                                                                                                                                                                                                                        Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                        • Event<"readystatechange">
                                                                                                                                                                                                                                                                                                                                                                          • TextTrackReadyStateChangeEvent
                                                                                                                                                                                                                                                                                                                                                                        Index

                                                                                                                                                                                                                                                                                                                                                                        Properties

                                                                                                                                                                                                                                                                                                                                                                        interface TextTrackReadyStateChangeEvent {
                                                                                                                                                                                                                                                                                                                                                                            date: Date;
                                                                                                                                                                                                                                                                                                                                                                            readyState: TextTrackReadyState;
                                                                                                                                                                                                                                                                                                                                                                            track: TextTrack;
                                                                                                                                                                                                                                                                                                                                                                            type: "readystatechange";
                                                                                                                                                                                                                                                                                                                                                                        }

                                                                                                                                                                                                                                                                                                                                                                        Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                        • Event<"readystatechange">
                                                                                                                                                                                                                                                                                                                                                                          • TextTrackReadyStateChangeEvent
                                                                                                                                                                                                                                                                                                                                                                        Index

                                                                                                                                                                                                                                                                                                                                                                        Properties

                                                                                                                                                                                                                                                                                                                                                                        date readyState track type diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/TextTrackRemoveCueEvent.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/TextTrackRemoveCueEvent.html index 8374619f2a83..23af1827dc01 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/TextTrackRemoveCueEvent.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/TextTrackRemoveCueEvent.html @@ -1,5 +1,5 @@ TextTrackRemoveCueEvent | THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                                                        THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                          Interface TextTrackRemoveCueEvent

                                                                                                                                                                                                                                                                                                                                                                          Fired when a cue is removed from the text track.

                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                          interface TextTrackRemoveCueEvent {
                                                                                                                                                                                                                                                                                                                                                                              cue: TextTrackCue;
                                                                                                                                                                                                                                                                                                                                                                              date: Date;
                                                                                                                                                                                                                                                                                                                                                                              type: "removecue";
                                                                                                                                                                                                                                                                                                                                                                          }

                                                                                                                                                                                                                                                                                                                                                                          Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                          • Event<"removecue">
                                                                                                                                                                                                                                                                                                                                                                            • TextTrackRemoveCueEvent
                                                                                                                                                                                                                                                                                                                                                                          Index

                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                          cue +
                                                                                                                                                                                                                                                                                                                                                                          interface TextTrackRemoveCueEvent {
                                                                                                                                                                                                                                                                                                                                                                              cue: TextTrackCue;
                                                                                                                                                                                                                                                                                                                                                                              date: Date;
                                                                                                                                                                                                                                                                                                                                                                              type: "removecue";
                                                                                                                                                                                                                                                                                                                                                                          }

                                                                                                                                                                                                                                                                                                                                                                          Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                          • Event<"removecue">
                                                                                                                                                                                                                                                                                                                                                                            • TextTrackRemoveCueEvent
                                                                                                                                                                                                                                                                                                                                                                          Index

                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                          The cue that is removed from the text track.

                                                                                                                                                                                                                                                                                                                                                                          diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/TextTrackStyle.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/TextTrackStyle.html index 45a62c7a84dc..e9dd55f3f540 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/TextTrackStyle.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/TextTrackStyle.html @@ -1,6 +1,6 @@ TextTrackStyle | THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                                                          THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                            Interface TextTrackStyle

                                                                                                                                                                                                                                                                                                                                                                            The text track style API.


                                                                                                                                                                                                                                                                                                                                                                            - Available since v2.27.4.

                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                            interface TextTrackStyle {
                                                                                                                                                                                                                                                                                                                                                                                backgroundColor: undefined | string;
                                                                                                                                                                                                                                                                                                                                                                                edgeStyle: undefined | EdgeStyle;
                                                                                                                                                                                                                                                                                                                                                                                fontColor: undefined | string;
                                                                                                                                                                                                                                                                                                                                                                                fontFamily: undefined | string;
                                                                                                                                                                                                                                                                                                                                                                                fontSize: undefined | string;
                                                                                                                                                                                                                                                                                                                                                                                marginBottom: undefined | number;
                                                                                                                                                                                                                                                                                                                                                                                marginLeft: undefined | number;
                                                                                                                                                                                                                                                                                                                                                                                marginRight: undefined | number;
                                                                                                                                                                                                                                                                                                                                                                                marginTop: undefined | number;
                                                                                                                                                                                                                                                                                                                                                                                windowColor: undefined | string;
                                                                                                                                                                                                                                                                                                                                                                                addEventListener<TType extends "change">(
                                                                                                                                                                                                                                                                                                                                                                                    type: TType | readonly TType[],
                                                                                                                                                                                                                                                                                                                                                                                    listener: EventListener<TextTrackStyleEventMap[TType]>,
                                                                                                                                                                                                                                                                                                                                                                                ): void;
                                                                                                                                                                                                                                                                                                                                                                                removeEventListener<TType extends "change">(
                                                                                                                                                                                                                                                                                                                                                                                    type: TType | readonly TType[],
                                                                                                                                                                                                                                                                                                                                                                                    listener: EventListener<TextTrackStyleEventMap[TType]>,
                                                                                                                                                                                                                                                                                                                                                                                ): void;
                                                                                                                                                                                                                                                                                                                                                                            }

                                                                                                                                                                                                                                                                                                                                                                            Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                            Index

                                                                                                                                                                                                                                                                                                                                                                            Properties

                                                                                                                                                                                                                                                                                                                                                                            interface TextTrackStyle {
                                                                                                                                                                                                                                                                                                                                                                                backgroundColor: undefined | string;
                                                                                                                                                                                                                                                                                                                                                                                edgeStyle: undefined | EdgeStyle;
                                                                                                                                                                                                                                                                                                                                                                                fontColor: undefined | string;
                                                                                                                                                                                                                                                                                                                                                                                fontFamily: undefined | string;
                                                                                                                                                                                                                                                                                                                                                                                fontSize: undefined | string;
                                                                                                                                                                                                                                                                                                                                                                                marginBottom: undefined | number;
                                                                                                                                                                                                                                                                                                                                                                                marginLeft: undefined | number;
                                                                                                                                                                                                                                                                                                                                                                                marginRight: undefined | number;
                                                                                                                                                                                                                                                                                                                                                                                marginTop: undefined | number;
                                                                                                                                                                                                                                                                                                                                                                                windowColor: undefined | string;
                                                                                                                                                                                                                                                                                                                                                                                addEventListener<TType extends "change">(
                                                                                                                                                                                                                                                                                                                                                                                    type: TType | readonly TType[],
                                                                                                                                                                                                                                                                                                                                                                                    listener: EventListener<TextTrackStyleEventMap[TType]>,
                                                                                                                                                                                                                                                                                                                                                                                ): void;
                                                                                                                                                                                                                                                                                                                                                                                removeEventListener<TType extends "change">(
                                                                                                                                                                                                                                                                                                                                                                                    type: TType | readonly TType[],
                                                                                                                                                                                                                                                                                                                                                                                    listener: EventListener<TextTrackStyleEventMap[TType]>,
                                                                                                                                                                                                                                                                                                                                                                                ): void;
                                                                                                                                                                                                                                                                                                                                                                            }

                                                                                                                                                                                                                                                                                                                                                                            Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                            Index

                                                                                                                                                                                                                                                                                                                                                                            Properties

                                                                                                                                                                                                                                                                                                                                                                            backgroundColor edgeStyle fontColor fontFamily diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/TextTrackTypeChangeEvent.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/TextTrackTypeChangeEvent.html index e7a541a22fd9..ec187f2f4e6e 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/TextTrackTypeChangeEvent.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/TextTrackTypeChangeEvent.html @@ -1,5 +1,5 @@ TextTrackTypeChangeEvent | THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                                                            THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                              Interface TextTrackTypeChangeEvent

                                                                                                                                                                                                                                                                                                                                                                              Fired when the type of the text track has changed.

                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                              interface TextTrackTypeChangeEvent {
                                                                                                                                                                                                                                                                                                                                                                                  date: Date;
                                                                                                                                                                                                                                                                                                                                                                                  track: TextTrack;
                                                                                                                                                                                                                                                                                                                                                                                  type: "typechange";
                                                                                                                                                                                                                                                                                                                                                                              }

                                                                                                                                                                                                                                                                                                                                                                              Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                              • Event<"typechange">
                                                                                                                                                                                                                                                                                                                                                                                • TextTrackTypeChangeEvent
                                                                                                                                                                                                                                                                                                                                                                              Index

                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                              interface TextTrackTypeChangeEvent {
                                                                                                                                                                                                                                                                                                                                                                                  date: Date;
                                                                                                                                                                                                                                                                                                                                                                                  track: TextTrack;
                                                                                                                                                                                                                                                                                                                                                                                  type: "typechange";
                                                                                                                                                                                                                                                                                                                                                                              }

                                                                                                                                                                                                                                                                                                                                                                              Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                              • Event<"typechange">
                                                                                                                                                                                                                                                                                                                                                                                • TextTrackTypeChangeEvent
                                                                                                                                                                                                                                                                                                                                                                              Index

                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                              date: Date

                                                                                                                                                                                                                                                                                                                                                                              The creation date of the event.

                                                                                                                                                                                                                                                                                                                                                                              diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/TextTrackUpdateCueEvent.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/TextTrackUpdateCueEvent.html index 048785ef64df..26d6f23fb7c4 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/TextTrackUpdateCueEvent.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/TextTrackUpdateCueEvent.html @@ -1,5 +1,5 @@ TextTrackUpdateCueEvent | THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                                                              THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                Interface TextTrackUpdateCueEvent

                                                                                                                                                                                                                                                                                                                                                                                Fired when a cue from the text track is updated.

                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                interface TextTrackUpdateCueEvent {
                                                                                                                                                                                                                                                                                                                                                                                    cue: TextTrackCue;
                                                                                                                                                                                                                                                                                                                                                                                    date: Date;
                                                                                                                                                                                                                                                                                                                                                                                    type: "updatecue";
                                                                                                                                                                                                                                                                                                                                                                                }

                                                                                                                                                                                                                                                                                                                                                                                Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                • Event<"updatecue">
                                                                                                                                                                                                                                                                                                                                                                                  • TextTrackUpdateCueEvent
                                                                                                                                                                                                                                                                                                                                                                                Index

                                                                                                                                                                                                                                                                                                                                                                                Properties

                                                                                                                                                                                                                                                                                                                                                                                cue +
                                                                                                                                                                                                                                                                                                                                                                                interface TextTrackUpdateCueEvent {
                                                                                                                                                                                                                                                                                                                                                                                    cue: TextTrackCue;
                                                                                                                                                                                                                                                                                                                                                                                    date: Date;
                                                                                                                                                                                                                                                                                                                                                                                    type: "updatecue";
                                                                                                                                                                                                                                                                                                                                                                                }

                                                                                                                                                                                                                                                                                                                                                                                Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                • Event<"updatecue">
                                                                                                                                                                                                                                                                                                                                                                                  • TextTrackUpdateCueEvent
                                                                                                                                                                                                                                                                                                                                                                                Index

                                                                                                                                                                                                                                                                                                                                                                                Properties

                                                                                                                                                                                                                                                                                                                                                                                Properties

                                                                                                                                                                                                                                                                                                                                                                                The cue from the text track that is updated.

                                                                                                                                                                                                                                                                                                                                                                                diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/TextTracksList.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/TextTracksList.html index 01c7d439293e..3f25a48fb862 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/TextTracksList.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/TextTracksList.html @@ -1,5 +1,5 @@ TextTracksList | THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                                                                THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                  Interface TextTracksList

                                                                                                                                                                                                                                                                                                                                                                                  List of text tracks.

                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                  interface TextTracksList {
                                                                                                                                                                                                                                                                                                                                                                                      length: number;
                                                                                                                                                                                                                                                                                                                                                                                      addEventListener<TType extends keyof TrackListEventMap>(
                                                                                                                                                                                                                                                                                                                                                                                          type: TType | readonly TType[],
                                                                                                                                                                                                                                                                                                                                                                                          listener: EventListener<TrackListEventMap[TType]>,
                                                                                                                                                                                                                                                                                                                                                                                      ): void;
                                                                                                                                                                                                                                                                                                                                                                                      item(index: number): TextTrack;
                                                                                                                                                                                                                                                                                                                                                                                      removeEventListener<TType extends keyof TrackListEventMap>(
                                                                                                                                                                                                                                                                                                                                                                                          type: TType | readonly TType[],
                                                                                                                                                                                                                                                                                                                                                                                          listener: EventListener<TrackListEventMap[TType]>,
                                                                                                                                                                                                                                                                                                                                                                                      ): void;
                                                                                                                                                                                                                                                                                                                                                                                      readonly [index: number]: TextTrack;
                                                                                                                                                                                                                                                                                                                                                                                  }

                                                                                                                                                                                                                                                                                                                                                                                  Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                  Indexable

                                                                                                                                                                                                                                                                                                                                                                                  • readonly [index: number]: TextTrack

                                                                                                                                                                                                                                                                                                                                                                                    Index signature to get the text track at the requested index in the list.

                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                  interface TextTracksList {
                                                                                                                                                                                                                                                                                                                                                                                      length: number;
                                                                                                                                                                                                                                                                                                                                                                                      addEventListener<TType extends keyof TrackListEventMap>(
                                                                                                                                                                                                                                                                                                                                                                                          type: TType | readonly TType[],
                                                                                                                                                                                                                                                                                                                                                                                          listener: EventListener<TrackListEventMap[TType]>,
                                                                                                                                                                                                                                                                                                                                                                                      ): void;
                                                                                                                                                                                                                                                                                                                                                                                      item(index: number): TextTrack;
                                                                                                                                                                                                                                                                                                                                                                                      removeEventListener<TType extends keyof TrackListEventMap>(
                                                                                                                                                                                                                                                                                                                                                                                          type: TType | readonly TType[],
                                                                                                                                                                                                                                                                                                                                                                                          listener: EventListener<TrackListEventMap[TType]>,
                                                                                                                                                                                                                                                                                                                                                                                      ): void;
                                                                                                                                                                                                                                                                                                                                                                                      readonly [index: number]: TextTrack;
                                                                                                                                                                                                                                                                                                                                                                                  }

                                                                                                                                                                                                                                                                                                                                                                                  Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                  Indexable

                                                                                                                                                                                                                                                                                                                                                                                  • readonly [index: number]: TextTrack

                                                                                                                                                                                                                                                                                                                                                                                    Index signature to get the text track at the requested index in the list.

                                                                                                                                                                                                                                                                                                                                                                                  Index

                                                                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                                                                  Methods

                                                                                                                                                                                                                                                                                                                                                                                  addEventListener item diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/TheoAdDescription.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/TheoAdDescription.html index 409aa6c66b16..70b65f256e38 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/TheoAdDescription.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/TheoAdDescription.html @@ -1,7 +1,7 @@ TheoAdDescription | THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                                                                  THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                    Interface TheoAdDescription

                                                                                                                                                                                                                                                                                                                                                                                    Describes a THEOads ad break request.


                                                                                                                                                                                                                                                                                                                                                                                    - For THEOads, one configured ad break request enables server guided ad playback for the entire stream.
                                                                                                                                                                                                                                                                                                                                                                                    - The player must have AdsConfiguration.theoads enabled in its PlayerConfiguration.

                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                    interface TheoAdDescription {
                                                                                                                                                                                                                                                                                                                                                                                        adTagParameters?: Record<string, string>;
                                                                                                                                                                                                                                                                                                                                                                                        backdropDoubleBox?: string;
                                                                                                                                                                                                                                                                                                                                                                                        backdropLShape?: string;
                                                                                                                                                                                                                                                                                                                                                                                        customAssetKey?: string;
                                                                                                                                                                                                                                                                                                                                                                                        daiAssetKey?: string;
                                                                                                                                                                                                                                                                                                                                                                                        initializationDelay?: number;
                                                                                                                                                                                                                                                                                                                                                                                        integration: "theoads";
                                                                                                                                                                                                                                                                                                                                                                                        networkCode?: string;
                                                                                                                                                                                                                                                                                                                                                                                        overrideLayout?: TheoAdsLayoutOverride;
                                                                                                                                                                                                                                                                                                                                                                                        replaceContent?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                        retrievePodIdURI?: string;
                                                                                                                                                                                                                                                                                                                                                                                        sources?: string | AdSource;
                                                                                                                                                                                                                                                                                                                                                                                        sseEndpoint?: string;
                                                                                                                                                                                                                                                                                                                                                                                        streamActivityMonitorId?: string;
                                                                                                                                                                                                                                                                                                                                                                                        timeOffset?: string | number;
                                                                                                                                                                                                                                                                                                                                                                                        useEMSG?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                        useId3?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                    }

                                                                                                                                                                                                                                                                                                                                                                                    Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                    Index

                                                                                                                                                                                                                                                                                                                                                                                    Properties

                                                                                                                                                                                                                                                                                                                                                                                    interface TheoAdDescription {
                                                                                                                                                                                                                                                                                                                                                                                        adTagParameters?: Record<string, string>;
                                                                                                                                                                                                                                                                                                                                                                                        backdropDoubleBox?: string;
                                                                                                                                                                                                                                                                                                                                                                                        backdropLShape?: string;
                                                                                                                                                                                                                                                                                                                                                                                        customAssetKey?: string;
                                                                                                                                                                                                                                                                                                                                                                                        daiAssetKey?: string;
                                                                                                                                                                                                                                                                                                                                                                                        initializationDelay?: number;
                                                                                                                                                                                                                                                                                                                                                                                        integration: "theoads";
                                                                                                                                                                                                                                                                                                                                                                                        networkCode?: string;
                                                                                                                                                                                                                                                                                                                                                                                        overrideLayout?: TheoAdsLayoutOverride;
                                                                                                                                                                                                                                                                                                                                                                                        replaceContent?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                        retrievePodIdURI?: string;
                                                                                                                                                                                                                                                                                                                                                                                        sources?: string | AdSource;
                                                                                                                                                                                                                                                                                                                                                                                        sseEndpoint?: string;
                                                                                                                                                                                                                                                                                                                                                                                        streamActivityMonitorId?: string;
                                                                                                                                                                                                                                                                                                                                                                                        timeOffset?: string | number;
                                                                                                                                                                                                                                                                                                                                                                                        useEMSG?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                        useId3?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                    }

                                                                                                                                                                                                                                                                                                                                                                                    Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                    Index

                                                                                                                                                                                                                                                                                                                                                                                    Properties

                                                                                                                                                                                                                                                                                                                                                                                    adTagParameters? backdropDoubleBox? backdropLShape? customAssetKey? diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/TheoAds.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/TheoAds.html index 70cb00e8e5a5..f68ddef7911c 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/TheoAds.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/TheoAds.html @@ -1,6 +1,6 @@ TheoAds | THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                                                                    THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                      Interface TheoAds

                                                                                                                                                                                                                                                                                                                                                                                      The THEOads API.


                                                                                                                                                                                                                                                                                                                                                                                      - Available since v8.12.0.

                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                      interface TheoAds {
                                                                                                                                                                                                                                                                                                                                                                                          currentInterstitials: readonly Interstitial[];
                                                                                                                                                                                                                                                                                                                                                                                          scheduledInterstitials: readonly Interstitial[];
                                                                                                                                                                                                                                                                                                                                                                                          addEventListener<TType extends keyof TheoAdsEventsMap>(
                                                                                                                                                                                                                                                                                                                                                                                              type: TType | readonly TType[],
                                                                                                                                                                                                                                                                                                                                                                                              listener: EventListener<TheoAdsEventsMap[TType]>,
                                                                                                                                                                                                                                                                                                                                                                                          ): void;
                                                                                                                                                                                                                                                                                                                                                                                          removeEventListener<TType extends keyof TheoAdsEventsMap>(
                                                                                                                                                                                                                                                                                                                                                                                              type: TType | readonly TType[],
                                                                                                                                                                                                                                                                                                                                                                                              listener: EventListener<TheoAdsEventsMap[TType]>,
                                                                                                                                                                                                                                                                                                                                                                                          ): void;
                                                                                                                                                                                                                                                                                                                                                                                          replaceAdTagParameters(adTagParameters?: Record<string, string>): void;
                                                                                                                                                                                                                                                                                                                                                                                      }

                                                                                                                                                                                                                                                                                                                                                                                      Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                      Index
                                                                                                                                                                                                                                                                                                                                                                                      interface TheoAds {
                                                                                                                                                                                                                                                                                                                                                                                          currentInterstitials: readonly Interstitial[];
                                                                                                                                                                                                                                                                                                                                                                                          scheduledInterstitials: readonly Interstitial[];
                                                                                                                                                                                                                                                                                                                                                                                          addEventListener<TType extends keyof TheoAdsEventsMap>(
                                                                                                                                                                                                                                                                                                                                                                                              type: TType | readonly TType[],
                                                                                                                                                                                                                                                                                                                                                                                              listener: EventListener<TheoAdsEventsMap[TType]>,
                                                                                                                                                                                                                                                                                                                                                                                          ): void;
                                                                                                                                                                                                                                                                                                                                                                                          removeEventListener<TType extends keyof TheoAdsEventsMap>(
                                                                                                                                                                                                                                                                                                                                                                                              type: TType | readonly TType[],
                                                                                                                                                                                                                                                                                                                                                                                              listener: EventListener<TheoAdsEventsMap[TType]>,
                                                                                                                                                                                                                                                                                                                                                                                          ): void;
                                                                                                                                                                                                                                                                                                                                                                                          replaceAdTagParameters(adTagParameters?: Record<string, string>): void;
                                                                                                                                                                                                                                                                                                                                                                                      }

                                                                                                                                                                                                                                                                                                                                                                                      Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                      Index

                                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                                      Methods

                                                                                                                                                                                                                                                                                                                                                                                      addEventListener removeEventListener diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/TheoLiveApi.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/TheoLiveApi.html index a9c364a22d9a..2905fa91a95d 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/TheoLiveApi.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/TheoLiveApi.html @@ -1,5 +1,5 @@ TheoLiveApi | THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                                                                      THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                        Interface TheoLiveApi

                                                                                                                                                                                                                                                                                                                                                                                        The THEOlive api.

                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                        interface TheoLiveApi {
                                                                                                                                                                                                                                                                                                                                                                                            authToken: undefined | string;
                                                                                                                                                                                                                                                                                                                                                                                            badNetworkMode: boolean;
                                                                                                                                                                                                                                                                                                                                                                                            addEventListener<TType extends keyof TheoLiveApiEventMap>(
                                                                                                                                                                                                                                                                                                                                                                                                type: TType | readonly TType[],
                                                                                                                                                                                                                                                                                                                                                                                                listener: EventListener<TheoLiveApiEventMap[TType]>,
                                                                                                                                                                                                                                                                                                                                                                                            ): void;
                                                                                                                                                                                                                                                                                                                                                                                            preloadPublications(
                                                                                                                                                                                                                                                                                                                                                                                                publicationIds: string[],
                                                                                                                                                                                                                                                                                                                                                                                            ): Promise<TheoLivePublication[]>;
                                                                                                                                                                                                                                                                                                                                                                                            removeEventListener<TType extends keyof TheoLiveApiEventMap>(
                                                                                                                                                                                                                                                                                                                                                                                                type: TType | readonly TType[],
                                                                                                                                                                                                                                                                                                                                                                                                listener: EventListener<TheoLiveApiEventMap[TType]>,
                                                                                                                                                                                                                                                                                                                                                                                            ): void;
                                                                                                                                                                                                                                                                                                                                                                                        }

                                                                                                                                                                                                                                                                                                                                                                                        Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                        Index

                                                                                                                                                                                                                                                                                                                                                                                        Properties

                                                                                                                                                                                                                                                                                                                                                                                        interface TheoLiveApi {
                                                                                                                                                                                                                                                                                                                                                                                            authToken: undefined | string;
                                                                                                                                                                                                                                                                                                                                                                                            badNetworkMode: boolean;
                                                                                                                                                                                                                                                                                                                                                                                            addEventListener<TType extends keyof TheoLiveApiEventMap>(
                                                                                                                                                                                                                                                                                                                                                                                                type: TType | readonly TType[],
                                                                                                                                                                                                                                                                                                                                                                                                listener: EventListener<TheoLiveApiEventMap[TType]>,
                                                                                                                                                                                                                                                                                                                                                                                            ): void;
                                                                                                                                                                                                                                                                                                                                                                                            preloadPublications(
                                                                                                                                                                                                                                                                                                                                                                                                publicationIds: string[],
                                                                                                                                                                                                                                                                                                                                                                                            ): Promise<TheoLivePublication[]>;
                                                                                                                                                                                                                                                                                                                                                                                            removeEventListener<TType extends keyof TheoLiveApiEventMap>(
                                                                                                                                                                                                                                                                                                                                                                                                type: TType | readonly TType[],
                                                                                                                                                                                                                                                                                                                                                                                                listener: EventListener<TheoLiveApiEventMap[TType]>,
                                                                                                                                                                                                                                                                                                                                                                                            ): void;
                                                                                                                                                                                                                                                                                                                                                                                        }

                                                                                                                                                                                                                                                                                                                                                                                        Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                        Index

                                                                                                                                                                                                                                                                                                                                                                                        Properties

                                                                                                                                                                                                                                                                                                                                                                                        Methods

                                                                                                                                                                                                                                                                                                                                                                                        addEventListener preloadPublications diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/TheoLiveSource.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/TheoLiveSource.html index 0875a69ba74b..e6ac0bc9ee00 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/TheoLiveSource.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/TheoLiveSource.html @@ -1,5 +1,5 @@ TheoLiveSource | THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                                                                        THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                          Interface TheoLiveSource

                                                                                                                                                                                                                                                                                                                                                                                          Represents a source for the THEOlive integration.

                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                          interface TheoLiveSource {
                                                                                                                                                                                                                                                                                                                                                                                              abr?: SourceAbrConfiguration;
                                                                                                                                                                                                                                                                                                                                                                                              contentProtection?: DRMConfiguration;
                                                                                                                                                                                                                                                                                                                                                                                              crossOrigin?: CrossOriginSetting;
                                                                                                                                                                                                                                                                                                                                                                                              dash?: DashPlaybackConfiguration;
                                                                                                                                                                                                                                                                                                                                                                                              drm?: DRMConfiguration;
                                                                                                                                                                                                                                                                                                                                                                                              hls?: HlsPlaybackConfiguration;
                                                                                                                                                                                                                                                                                                                                                                                              hlsDateRange?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                              ignoreEmbeddedTextTrackTypes?: TextTrackType[];
                                                                                                                                                                                                                                                                                                                                                                                              integration?: SourceIntegrationId;
                                                                                                                                                                                                                                                                                                                                                                                              latencyConfiguration?: SourceLatencyConfiguration;
                                                                                                                                                                                                                                                                                                                                                                                              lcevc?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                              liveOffset?: number;
                                                                                                                                                                                                                                                                                                                                                                                              lowLatency?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                              profile?: string;
                                                                                                                                                                                                                                                                                                                                                                                              seamlessSwitchStrategy?: SeamlessSwitchStrategy;
                                                                                                                                                                                                                                                                                                                                                                                              src: string;
                                                                                                                                                                                                                                                                                                                                                                                              ssai?: ServerSideAdInsertionConfiguration;
                                                                                                                                                                                                                                                                                                                                                                                              timeServer?: string;
                                                                                                                                                                                                                                                                                                                                                                                              type: "theolive";
                                                                                                                                                                                                                                                                                                                                                                                              useCredentials?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                              useManagedMediaSource?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                              useNativePlayback?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                              webrtc?: Record<string, any>;
                                                                                                                                                                                                                                                                                                                                                                                          }

                                                                                                                                                                                                                                                                                                                                                                                          Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                          Index

                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                          interface TheoLiveSource {
                                                                                                                                                                                                                                                                                                                                                                                              abr?: SourceAbrConfiguration;
                                                                                                                                                                                                                                                                                                                                                                                              contentProtection?: DRMConfiguration;
                                                                                                                                                                                                                                                                                                                                                                                              crossOrigin?: CrossOriginSetting;
                                                                                                                                                                                                                                                                                                                                                                                              dash?: DashPlaybackConfiguration;
                                                                                                                                                                                                                                                                                                                                                                                              drm?: DRMConfiguration;
                                                                                                                                                                                                                                                                                                                                                                                              hls?: HlsPlaybackConfiguration;
                                                                                                                                                                                                                                                                                                                                                                                              hlsDateRange?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                              ignoreEmbeddedTextTrackTypes?: TextTrackType[];
                                                                                                                                                                                                                                                                                                                                                                                              integration?: SourceIntegrationId;
                                                                                                                                                                                                                                                                                                                                                                                              latencyConfiguration?: SourceLatencyConfiguration;
                                                                                                                                                                                                                                                                                                                                                                                              lcevc?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                              liveOffset?: number;
                                                                                                                                                                                                                                                                                                                                                                                              lowLatency?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                              profile?: string;
                                                                                                                                                                                                                                                                                                                                                                                              seamlessSwitchStrategy?: SeamlessSwitchStrategy;
                                                                                                                                                                                                                                                                                                                                                                                              src: string;
                                                                                                                                                                                                                                                                                                                                                                                              ssai?: ServerSideAdInsertionConfiguration;
                                                                                                                                                                                                                                                                                                                                                                                              timeServer?: string;
                                                                                                                                                                                                                                                                                                                                                                                              type: "theolive";
                                                                                                                                                                                                                                                                                                                                                                                              useCredentials?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                              useManagedMediaSource?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                              useNativePlayback?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                              webrtc?: Record<string, any>;
                                                                                                                                                                                                                                                                                                                                                                                          }

                                                                                                                                                                                                                                                                                                                                                                                          Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                          Index

                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                          abr? contentProtection? crossOrigin? dash? diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/TimeUpdateEvent.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/TimeUpdateEvent.html index 0ecf7f747bd8..8ba662e5b5cc 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/TimeUpdateEvent.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/TimeUpdateEvent.html @@ -1,5 +1,5 @@ TimeUpdateEvent | THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                                                                          THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                            Interface TimeUpdateEvent

                                                                                                                                                                                                                                                                                                                                                                                            Fired when the current playback position changed as part of normal playback or in an especially interesting way, for example discontinuously.

                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                            interface TimeUpdateEvent {
                                                                                                                                                                                                                                                                                                                                                                                                currentProgramDateTime: undefined | Date;
                                                                                                                                                                                                                                                                                                                                                                                                currentTime: number;
                                                                                                                                                                                                                                                                                                                                                                                                date: Date;
                                                                                                                                                                                                                                                                                                                                                                                                type: "timeupdate";
                                                                                                                                                                                                                                                                                                                                                                                            }

                                                                                                                                                                                                                                                                                                                                                                                            Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                            • Event<"timeupdate">
                                                                                                                                                                                                                                                                                                                                                                                              • TimeUpdateEvent
                                                                                                                                                                                                                                                                                                                                                                                            Index

                                                                                                                                                                                                                                                                                                                                                                                            Properties

                                                                                                                                                                                                                                                                                                                                                                                            interface TimeUpdateEvent {
                                                                                                                                                                                                                                                                                                                                                                                                currentProgramDateTime: undefined | Date;
                                                                                                                                                                                                                                                                                                                                                                                                currentTime: number;
                                                                                                                                                                                                                                                                                                                                                                                                date: Date;
                                                                                                                                                                                                                                                                                                                                                                                                type: "timeupdate";
                                                                                                                                                                                                                                                                                                                                                                                            }

                                                                                                                                                                                                                                                                                                                                                                                            Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                            • Event<"timeupdate">
                                                                                                                                                                                                                                                                                                                                                                                              • TimeUpdateEvent
                                                                                                                                                                                                                                                                                                                                                                                            Index

                                                                                                                                                                                                                                                                                                                                                                                            Properties

                                                                                                                                                                                                                                                                                                                                                                                            currentProgramDateTime currentTime date type diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/TitaniumDRMConfiguration.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/TitaniumDRMConfiguration.html index 411ae71e9bb8..32e31b21cc22 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/TitaniumDRMConfiguration.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/TitaniumDRMConfiguration.html @@ -2,7 +2,7 @@
                                                                                                                                                                                                                                                                                                                                                                                            const drmConfiguration = {
                                                                                                                                                                                                                                                                                                                                                                                            integration : 'keyos',
                                                                                                                                                                                                                                                                                                                                                                                            playready: {
                                                                                                                                                                                                                                                                                                                                                                                            licenseAcquisitionURL: 'yourTitaniumPlayReadyLicenseAcquisitionURL'
                                                                                                                                                                                                                                                                                                                                                                                            },
                                                                                                                                                                                                                                                                                                                                                                                            widevine: {
                                                                                                                                                                                                                                                                                                                                                                                            licenseAcquisitionURL: 'yourTitaniumWidevineLicenseAcquisitionURL'
                                                                                                                                                                                                                                                                                                                                                                                            },
                                                                                                                                                                                                                                                                                                                                                                                            accountName: 'yourTitaniumAccountName',
                                                                                                                                                                                                                                                                                                                                                                                            customerName: 'yourTitaniumCustomerName',
                                                                                                                                                                                                                                                                                                                                                                                            friendlyName: 'yourTitaniumFriendlyName',
                                                                                                                                                                                                                                                                                                                                                                                            portalId: 'yourTitaniumPortalId'
                                                                                                                                                                                                                                                                                                                                                                                            }
                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                            interface TitaniumDRMConfiguration {
                                                                                                                                                                                                                                                                                                                                                                                                accountName?: string;
                                                                                                                                                                                                                                                                                                                                                                                                aes128?: AES128KeySystemConfiguration;
                                                                                                                                                                                                                                                                                                                                                                                                authToken?: string;
                                                                                                                                                                                                                                                                                                                                                                                                clearkey?: ClearkeyKeySystemConfiguration;
                                                                                                                                                                                                                                                                                                                                                                                                customerName?: string;
                                                                                                                                                                                                                                                                                                                                                                                                fairplay?: FairPlayKeySystemConfiguration;
                                                                                                                                                                                                                                                                                                                                                                                                friendlyName?: string;
                                                                                                                                                                                                                                                                                                                                                                                                integration: "titanium";
                                                                                                                                                                                                                                                                                                                                                                                                integrationParameters?: { [parameterName: string]: any };
                                                                                                                                                                                                                                                                                                                                                                                                playready?: PlayReadyKeySystemConfiguration;
                                                                                                                                                                                                                                                                                                                                                                                                portalId?: string;
                                                                                                                                                                                                                                                                                                                                                                                                preferredKeySystems?: (KeySystemId | string & {})[];
                                                                                                                                                                                                                                                                                                                                                                                                queryParameters?: { [key: string]: any };
                                                                                                                                                                                                                                                                                                                                                                                                useOipfDrmAgent?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                version?: "2" | "3";
                                                                                                                                                                                                                                                                                                                                                                                                widevine?: KeySystemConfiguration;
                                                                                                                                                                                                                                                                                                                                                                                            }

                                                                                                                                                                                                                                                                                                                                                                                            Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                            Index

                                                                                                                                                                                                                                                                                                                                                                                            Properties

                                                                                                                                                                                                                                                                                                                                                                                            interface TitaniumDRMConfiguration {
                                                                                                                                                                                                                                                                                                                                                                                                accountName?: string;
                                                                                                                                                                                                                                                                                                                                                                                                aes128?: AES128KeySystemConfiguration;
                                                                                                                                                                                                                                                                                                                                                                                                authToken?: string;
                                                                                                                                                                                                                                                                                                                                                                                                clearkey?: ClearkeyKeySystemConfiguration;
                                                                                                                                                                                                                                                                                                                                                                                                customerName?: string;
                                                                                                                                                                                                                                                                                                                                                                                                fairplay?: FairPlayKeySystemConfiguration;
                                                                                                                                                                                                                                                                                                                                                                                                friendlyName?: string;
                                                                                                                                                                                                                                                                                                                                                                                                integration: "titanium";
                                                                                                                                                                                                                                                                                                                                                                                                integrationParameters?: { [parameterName: string]: any };
                                                                                                                                                                                                                                                                                                                                                                                                playready?: PlayReadyKeySystemConfiguration;
                                                                                                                                                                                                                                                                                                                                                                                                portalId?: string;
                                                                                                                                                                                                                                                                                                                                                                                                preferredKeySystems?: (KeySystemId | string & {})[];
                                                                                                                                                                                                                                                                                                                                                                                                queryParameters?: { [key: string]: any };
                                                                                                                                                                                                                                                                                                                                                                                                useOipfDrmAgent?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                version?: "2" | "3";
                                                                                                                                                                                                                                                                                                                                                                                                widevine?: KeySystemConfiguration;
                                                                                                                                                                                                                                                                                                                                                                                            }

                                                                                                                                                                                                                                                                                                                                                                                            Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                            Index

                                                                                                                                                                                                                                                                                                                                                                                            Properties

                                                                                                                                                                                                                                                                                                                                                                                            accountName? aes128? authToken? clearkey? diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/TokenBasedTitaniumDRMConfiguration.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/TokenBasedTitaniumDRMConfiguration.html index 53f858cef8e1..40c6f4dd7548 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/TokenBasedTitaniumDRMConfiguration.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/TokenBasedTitaniumDRMConfiguration.html @@ -1,5 +1,5 @@ TokenBasedTitaniumDRMConfiguration | THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                                                                            THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                              Interface TokenBasedTitaniumDRMConfiguration

                                                                                                                                                                                                                                                                                                                                                                                              Describes the configuration of the Titanium DRM integration with token-based authentication.

                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                              interface TokenBasedTitaniumDRMConfiguration {
                                                                                                                                                                                                                                                                                                                                                                                                  accountName?: undefined;
                                                                                                                                                                                                                                                                                                                                                                                                  aes128?: AES128KeySystemConfiguration;
                                                                                                                                                                                                                                                                                                                                                                                                  authToken: string;
                                                                                                                                                                                                                                                                                                                                                                                                  clearkey?: ClearkeyKeySystemConfiguration;
                                                                                                                                                                                                                                                                                                                                                                                                  customerName?: undefined;
                                                                                                                                                                                                                                                                                                                                                                                                  fairplay?: FairPlayKeySystemConfiguration;
                                                                                                                                                                                                                                                                                                                                                                                                  friendlyName?: undefined;
                                                                                                                                                                                                                                                                                                                                                                                                  integration: "titanium";
                                                                                                                                                                                                                                                                                                                                                                                                  integrationParameters?: { [parameterName: string]: any };
                                                                                                                                                                                                                                                                                                                                                                                                  playready?: PlayReadyKeySystemConfiguration;
                                                                                                                                                                                                                                                                                                                                                                                                  portalId?: undefined;
                                                                                                                                                                                                                                                                                                                                                                                                  preferredKeySystems?: (KeySystemId | string & {})[];
                                                                                                                                                                                                                                                                                                                                                                                                  queryParameters?: { [key: string]: any };
                                                                                                                                                                                                                                                                                                                                                                                                  useOipfDrmAgent?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                  version?: "2" | "3";
                                                                                                                                                                                                                                                                                                                                                                                                  widevine?: KeySystemConfiguration;
                                                                                                                                                                                                                                                                                                                                                                                              }

                                                                                                                                                                                                                                                                                                                                                                                              Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                              Index

                                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                                              interface TokenBasedTitaniumDRMConfiguration {
                                                                                                                                                                                                                                                                                                                                                                                                  accountName?: undefined;
                                                                                                                                                                                                                                                                                                                                                                                                  aes128?: AES128KeySystemConfiguration;
                                                                                                                                                                                                                                                                                                                                                                                                  authToken: string;
                                                                                                                                                                                                                                                                                                                                                                                                  clearkey?: ClearkeyKeySystemConfiguration;
                                                                                                                                                                                                                                                                                                                                                                                                  customerName?: undefined;
                                                                                                                                                                                                                                                                                                                                                                                                  fairplay?: FairPlayKeySystemConfiguration;
                                                                                                                                                                                                                                                                                                                                                                                                  friendlyName?: undefined;
                                                                                                                                                                                                                                                                                                                                                                                                  integration: "titanium";
                                                                                                                                                                                                                                                                                                                                                                                                  integrationParameters?: { [parameterName: string]: any };
                                                                                                                                                                                                                                                                                                                                                                                                  playready?: PlayReadyKeySystemConfiguration;
                                                                                                                                                                                                                                                                                                                                                                                                  portalId?: undefined;
                                                                                                                                                                                                                                                                                                                                                                                                  preferredKeySystems?: (KeySystemId | string & {})[];
                                                                                                                                                                                                                                                                                                                                                                                                  queryParameters?: { [key: string]: any };
                                                                                                                                                                                                                                                                                                                                                                                                  useOipfDrmAgent?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                  version?: "2" | "3";
                                                                                                                                                                                                                                                                                                                                                                                                  widevine?: KeySystemConfiguration;
                                                                                                                                                                                                                                                                                                                                                                                              }

                                                                                                                                                                                                                                                                                                                                                                                              Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                              Index

                                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                                              accountName? aes128? authToken clearkey? diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/Track.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/Track.html index 2555a6a76dec..9d4a978821d1 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/Track.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/Track.html @@ -1,6 +1,6 @@ Track | THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                                                                              THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                Interface Track

                                                                                                                                                                                                                                                                                                                                                                                                Represents a track of a media resource.


                                                                                                                                                                                                                                                                                                                                                                                                - A specific track type (e.g. TextTrack) will always be used.

                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                interface Track {
                                                                                                                                                                                                                                                                                                                                                                                                    accessibility: AccessibilityRole[];
                                                                                                                                                                                                                                                                                                                                                                                                    id: string;
                                                                                                                                                                                                                                                                                                                                                                                                    kind: string;
                                                                                                                                                                                                                                                                                                                                                                                                    label: string;
                                                                                                                                                                                                                                                                                                                                                                                                    language: string;
                                                                                                                                                                                                                                                                                                                                                                                                    uid: number;
                                                                                                                                                                                                                                                                                                                                                                                                    addEventListener<TType extends keyof TrackEventMap>(
                                                                                                                                                                                                                                                                                                                                                                                                        type: TType | readonly TType[],
                                                                                                                                                                                                                                                                                                                                                                                                        listener: EventListener<TrackEventMap[TType]>,
                                                                                                                                                                                                                                                                                                                                                                                                    ): void;
                                                                                                                                                                                                                                                                                                                                                                                                    removeEventListener<TType extends keyof TrackEventMap>(
                                                                                                                                                                                                                                                                                                                                                                                                        type: TType | readonly TType[],
                                                                                                                                                                                                                                                                                                                                                                                                        listener: EventListener<TrackEventMap[TType]>,
                                                                                                                                                                                                                                                                                                                                                                                                    ): void;
                                                                                                                                                                                                                                                                                                                                                                                                }

                                                                                                                                                                                                                                                                                                                                                                                                Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                                Index

                                                                                                                                                                                                                                                                                                                                                                                                Properties

                                                                                                                                                                                                                                                                                                                                                                                                interface Track {
                                                                                                                                                                                                                                                                                                                                                                                                    accessibility: AccessibilityRole[];
                                                                                                                                                                                                                                                                                                                                                                                                    id: string;
                                                                                                                                                                                                                                                                                                                                                                                                    kind: string;
                                                                                                                                                                                                                                                                                                                                                                                                    label: string;
                                                                                                                                                                                                                                                                                                                                                                                                    language: string;
                                                                                                                                                                                                                                                                                                                                                                                                    uid: number;
                                                                                                                                                                                                                                                                                                                                                                                                    addEventListener<TType extends keyof TrackEventMap>(
                                                                                                                                                                                                                                                                                                                                                                                                        type: TType | readonly TType[],
                                                                                                                                                                                                                                                                                                                                                                                                        listener: EventListener<TrackEventMap[TType]>,
                                                                                                                                                                                                                                                                                                                                                                                                    ): void;
                                                                                                                                                                                                                                                                                                                                                                                                    removeEventListener<TType extends keyof TrackEventMap>(
                                                                                                                                                                                                                                                                                                                                                                                                        type: TType | readonly TType[],
                                                                                                                                                                                                                                                                                                                                                                                                        listener: EventListener<TrackEventMap[TType]>,
                                                                                                                                                                                                                                                                                                                                                                                                    ): void;
                                                                                                                                                                                                                                                                                                                                                                                                }

                                                                                                                                                                                                                                                                                                                                                                                                Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                                Index

                                                                                                                                                                                                                                                                                                                                                                                                Properties

                                                                                                                                                                                                                                                                                                                                                                                                accessibility id kind label diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/TrackChangeEvent.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/TrackChangeEvent.html index c5a38af89bf6..8e5d2cd61f1a 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/TrackChangeEvent.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/TrackChangeEvent.html @@ -1,5 +1,5 @@ TrackChangeEvent | THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                                                                                THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                  Interface TrackChangeEvent

                                                                                                                                                                                                                                                                                                                                                                                                  Fired when a track has been changed.

                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                  interface TrackChangeEvent {
                                                                                                                                                                                                                                                                                                                                                                                                      date: Date;
                                                                                                                                                                                                                                                                                                                                                                                                      track: Track;
                                                                                                                                                                                                                                                                                                                                                                                                      type: "change";
                                                                                                                                                                                                                                                                                                                                                                                                  }

                                                                                                                                                                                                                                                                                                                                                                                                  Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                                  • Event<"change">
                                                                                                                                                                                                                                                                                                                                                                                                    • TrackChangeEvent
                                                                                                                                                                                                                                                                                                                                                                                                  Index

                                                                                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                                                                                  interface TrackChangeEvent {
                                                                                                                                                                                                                                                                                                                                                                                                      date: Date;
                                                                                                                                                                                                                                                                                                                                                                                                      track: Track;
                                                                                                                                                                                                                                                                                                                                                                                                      type: "change";
                                                                                                                                                                                                                                                                                                                                                                                                  }

                                                                                                                                                                                                                                                                                                                                                                                                  Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                                  • Event<"change">
                                                                                                                                                                                                                                                                                                                                                                                                    • TrackChangeEvent
                                                                                                                                                                                                                                                                                                                                                                                                  Index

                                                                                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                                                                                  date: Date

                                                                                                                                                                                                                                                                                                                                                                                                  The creation date of the event.

                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/TrackEventMap.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/TrackEventMap.html index a5656d282112..b5397375cab9 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/TrackEventMap.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/TrackEventMap.html @@ -1,5 +1,5 @@ TrackEventMap | THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                                                                                  THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                    Interface TrackEventMap

                                                                                                                                                                                                                                                                                                                                                                                                    The events fired by a Track.

                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                    interface TrackEventMap {
                                                                                                                                                                                                                                                                                                                                                                                                        change: TrackChangeEvent;
                                                                                                                                                                                                                                                                                                                                                                                                        update: TrackUpdateEvent;
                                                                                                                                                                                                                                                                                                                                                                                                    }

                                                                                                                                                                                                                                                                                                                                                                                                    Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                                    Index

                                                                                                                                                                                                                                                                                                                                                                                                    Properties

                                                                                                                                                                                                                                                                                                                                                                                                    interface TrackEventMap {
                                                                                                                                                                                                                                                                                                                                                                                                        change: TrackChangeEvent;
                                                                                                                                                                                                                                                                                                                                                                                                        update: TrackUpdateEvent;
                                                                                                                                                                                                                                                                                                                                                                                                    }

                                                                                                                                                                                                                                                                                                                                                                                                    Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                                    Index

                                                                                                                                                                                                                                                                                                                                                                                                    Properties

                                                                                                                                                                                                                                                                                                                                                                                                    Properties

                                                                                                                                                                                                                                                                                                                                                                                                    Fired when a media track's enabled or a text track's mode changes.

                                                                                                                                                                                                                                                                                                                                                                                                    Fired when the track updates.

                                                                                                                                                                                                                                                                                                                                                                                                    diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/TrackList.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/TrackList.html index 1e401e54fbfc..dac776712414 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/TrackList.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/TrackList.html @@ -1,5 +1,5 @@ TrackList | THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                                                                                    THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                      Interface TrackList<TTrack>

                                                                                                                                                                                                                                                                                                                                                                                                      List of tracks.

                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                      interface TrackList<TTrack extends Track> {
                                                                                                                                                                                                                                                                                                                                                                                                          length: number;
                                                                                                                                                                                                                                                                                                                                                                                                          addEventListener<TType extends keyof TrackListEventMap>(
                                                                                                                                                                                                                                                                                                                                                                                                              type: TType | readonly TType[],
                                                                                                                                                                                                                                                                                                                                                                                                              listener: EventListener<TrackListEventMap[TType]>,
                                                                                                                                                                                                                                                                                                                                                                                                          ): void;
                                                                                                                                                                                                                                                                                                                                                                                                          item(index: number): TTrack;
                                                                                                                                                                                                                                                                                                                                                                                                          removeEventListener<TType extends keyof TrackListEventMap>(
                                                                                                                                                                                                                                                                                                                                                                                                              type: TType | readonly TType[],
                                                                                                                                                                                                                                                                                                                                                                                                              listener: EventListener<TrackListEventMap[TType]>,
                                                                                                                                                                                                                                                                                                                                                                                                          ): void;
                                                                                                                                                                                                                                                                                                                                                                                                          readonly [index: number]: TTrack;
                                                                                                                                                                                                                                                                                                                                                                                                      }

                                                                                                                                                                                                                                                                                                                                                                                                      Type Parameters

                                                                                                                                                                                                                                                                                                                                                                                                      Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                                      Indexable

                                                                                                                                                                                                                                                                                                                                                                                                      • readonly [index: number]: TTrack

                                                                                                                                                                                                                                                                                                                                                                                                        Index signature to get the track at the requested index in the list.

                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                      interface TrackList<TTrack extends Track> {
                                                                                                                                                                                                                                                                                                                                                                                                          length: number;
                                                                                                                                                                                                                                                                                                                                                                                                          addEventListener<TType extends keyof TrackListEventMap>(
                                                                                                                                                                                                                                                                                                                                                                                                              type: TType | readonly TType[],
                                                                                                                                                                                                                                                                                                                                                                                                              listener: EventListener<TrackListEventMap[TType]>,
                                                                                                                                                                                                                                                                                                                                                                                                          ): void;
                                                                                                                                                                                                                                                                                                                                                                                                          item(index: number): TTrack;
                                                                                                                                                                                                                                                                                                                                                                                                          removeEventListener<TType extends keyof TrackListEventMap>(
                                                                                                                                                                                                                                                                                                                                                                                                              type: TType | readonly TType[],
                                                                                                                                                                                                                                                                                                                                                                                                              listener: EventListener<TrackListEventMap[TType]>,
                                                                                                                                                                                                                                                                                                                                                                                                          ): void;
                                                                                                                                                                                                                                                                                                                                                                                                          readonly [index: number]: TTrack;
                                                                                                                                                                                                                                                                                                                                                                                                      }

                                                                                                                                                                                                                                                                                                                                                                                                      Type Parameters

                                                                                                                                                                                                                                                                                                                                                                                                      Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                                      Indexable

                                                                                                                                                                                                                                                                                                                                                                                                      • readonly [index: number]: TTrack

                                                                                                                                                                                                                                                                                                                                                                                                        Index signature to get the track at the requested index in the list.

                                                                                                                                                                                                                                                                                                                                                                                                      Index

                                                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                                                      Methods

                                                                                                                                                                                                                                                                                                                                                                                                      addEventListener item diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/TrackUpdateEvent.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/TrackUpdateEvent.html index b84731ff3591..506ee19d463d 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/TrackUpdateEvent.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/TrackUpdateEvent.html @@ -1,5 +1,5 @@ TrackUpdateEvent | THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                                                                                      THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                        Interface TrackUpdateEvent

                                                                                                                                                                                                                                                                                                                                                                                                        Fired when one or more properties of a track have been updated.

                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                        interface TrackUpdateEvent {
                                                                                                                                                                                                                                                                                                                                                                                                            date: Date;
                                                                                                                                                                                                                                                                                                                                                                                                            track: Track;
                                                                                                                                                                                                                                                                                                                                                                                                            type: "update";
                                                                                                                                                                                                                                                                                                                                                                                                        }

                                                                                                                                                                                                                                                                                                                                                                                                        Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                                        • Event<"update">
                                                                                                                                                                                                                                                                                                                                                                                                          • TrackUpdateEvent
                                                                                                                                                                                                                                                                                                                                                                                                        Index

                                                                                                                                                                                                                                                                                                                                                                                                        Properties

                                                                                                                                                                                                                                                                                                                                                                                                        interface TrackUpdateEvent {
                                                                                                                                                                                                                                                                                                                                                                                                            date: Date;
                                                                                                                                                                                                                                                                                                                                                                                                            track: Track;
                                                                                                                                                                                                                                                                                                                                                                                                            type: "update";
                                                                                                                                                                                                                                                                                                                                                                                                        }

                                                                                                                                                                                                                                                                                                                                                                                                        Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                                        • Event<"update">
                                                                                                                                                                                                                                                                                                                                                                                                          • TrackUpdateEvent
                                                                                                                                                                                                                                                                                                                                                                                                        Index

                                                                                                                                                                                                                                                                                                                                                                                                        Properties

                                                                                                                                                                                                                                                                                                                                                                                                        Properties

                                                                                                                                                                                                                                                                                                                                                                                                        date: Date

                                                                                                                                                                                                                                                                                                                                                                                                        The creation date of the event.

                                                                                                                                                                                                                                                                                                                                                                                                        diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/TypedSource.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/TypedSource.html index 7669e5d45a4b..232139774b81 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/TypedSource.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/TypedSource.html @@ -1,5 +1,5 @@ TypedSource | THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                                                                                        THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                          Interface TypedSource

                                                                                                                                                                                                                                                                                                                                                                                                          Represents a media resource characterized by a URL to the resource and optionally information about the resource.

                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                          interface TypedSource {
                                                                                                                                                                                                                                                                                                                                                                                                              abr?: SourceAbrConfiguration;
                                                                                                                                                                                                                                                                                                                                                                                                              contentProtection?: DRMConfiguration;
                                                                                                                                                                                                                                                                                                                                                                                                              crossOrigin?: CrossOriginSetting;
                                                                                                                                                                                                                                                                                                                                                                                                              dash?: DashPlaybackConfiguration;
                                                                                                                                                                                                                                                                                                                                                                                                              drm?: DRMConfiguration;
                                                                                                                                                                                                                                                                                                                                                                                                              hls?: HlsPlaybackConfiguration;
                                                                                                                                                                                                                                                                                                                                                                                                              hlsDateRange?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                              ignoreEmbeddedTextTrackTypes?: TextTrackType[];
                                                                                                                                                                                                                                                                                                                                                                                                              integration?: SourceIntegrationId;
                                                                                                                                                                                                                                                                                                                                                                                                              latencyConfiguration?: SourceLatencyConfiguration;
                                                                                                                                                                                                                                                                                                                                                                                                              lcevc?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                              liveOffset?: number;
                                                                                                                                                                                                                                                                                                                                                                                                              lowLatency?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                              seamlessSwitchStrategy?: SeamlessSwitchStrategy;
                                                                                                                                                                                                                                                                                                                                                                                                              src?: string;
                                                                                                                                                                                                                                                                                                                                                                                                              ssai?: ServerSideAdInsertionConfiguration;
                                                                                                                                                                                                                                                                                                                                                                                                              timeServer?: string;
                                                                                                                                                                                                                                                                                                                                                                                                              type?: string;
                                                                                                                                                                                                                                                                                                                                                                                                              useCredentials?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                              useManagedMediaSource?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                              useNativePlayback?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                          }

                                                                                                                                                                                                                                                                                                                                                                                                          Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                                          Index

                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                          interface TypedSource {
                                                                                                                                                                                                                                                                                                                                                                                                              abr?: SourceAbrConfiguration;
                                                                                                                                                                                                                                                                                                                                                                                                              contentProtection?: DRMConfiguration;
                                                                                                                                                                                                                                                                                                                                                                                                              crossOrigin?: CrossOriginSetting;
                                                                                                                                                                                                                                                                                                                                                                                                              dash?: DashPlaybackConfiguration;
                                                                                                                                                                                                                                                                                                                                                                                                              drm?: DRMConfiguration;
                                                                                                                                                                                                                                                                                                                                                                                                              hls?: HlsPlaybackConfiguration;
                                                                                                                                                                                                                                                                                                                                                                                                              hlsDateRange?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                              ignoreEmbeddedTextTrackTypes?: TextTrackType[];
                                                                                                                                                                                                                                                                                                                                                                                                              integration?: SourceIntegrationId;
                                                                                                                                                                                                                                                                                                                                                                                                              latencyConfiguration?: SourceLatencyConfiguration;
                                                                                                                                                                                                                                                                                                                                                                                                              lcevc?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                              liveOffset?: number;
                                                                                                                                                                                                                                                                                                                                                                                                              lowLatency?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                              seamlessSwitchStrategy?: SeamlessSwitchStrategy;
                                                                                                                                                                                                                                                                                                                                                                                                              src?: string;
                                                                                                                                                                                                                                                                                                                                                                                                              ssai?: ServerSideAdInsertionConfiguration;
                                                                                                                                                                                                                                                                                                                                                                                                              timeServer?: string;
                                                                                                                                                                                                                                                                                                                                                                                                              type?: string;
                                                                                                                                                                                                                                                                                                                                                                                                              useCredentials?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                              useManagedMediaSource?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                              useNativePlayback?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                          }

                                                                                                                                                                                                                                                                                                                                                                                                          Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                                          Index

                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                          abr? contentProtection? crossOrigin? dash? diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/UIPlayerConfiguration.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/UIPlayerConfiguration.html index 0d198f11070e..99b56c0ad6aa 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/UIPlayerConfiguration.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/UIPlayerConfiguration.html @@ -1,5 +1,5 @@ UIPlayerConfiguration | THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                                                                                          THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                            Interface UIPlayerConfiguration

                                                                                                                                                                                                                                                                                                                                                                                                            Describes the UI related configuration of the player.

                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                            interface UIPlayerConfiguration {
                                                                                                                                                                                                                                                                                                                                                                                                                abr?: SourceAbrConfiguration;
                                                                                                                                                                                                                                                                                                                                                                                                                ads?: AdsConfiguration;
                                                                                                                                                                                                                                                                                                                                                                                                                allowMixedContent?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                allowNativeFullscreen?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                analytics?: AnalyticsDescription[];
                                                                                                                                                                                                                                                                                                                                                                                                                cast?: CastConfiguration;
                                                                                                                                                                                                                                                                                                                                                                                                                fluid?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                height?: string | number;
                                                                                                                                                                                                                                                                                                                                                                                                                hideDeprecationWarnings?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                hlsDateRange?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                isEmbeddable?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                libraryLocation?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                license?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                licenseUrl?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                liveOffset?: number;
                                                                                                                                                                                                                                                                                                                                                                                                                mutedAutoplay?: MutedAutoplayConfiguration;
                                                                                                                                                                                                                                                                                                                                                                                                                persistVolume?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                pip?: PiPConfiguration;
                                                                                                                                                                                                                                                                                                                                                                                                                ps5?: PlayStation5Configuration;
                                                                                                                                                                                                                                                                                                                                                                                                                retainPlaybackRateOnSourceChange?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                retryConfiguration?: RetryConfiguration;
                                                                                                                                                                                                                                                                                                                                                                                                                theoLive?: TheoLiveConfiguration;
                                                                                                                                                                                                                                                                                                                                                                                                                ui?: UIConfiguration;
                                                                                                                                                                                                                                                                                                                                                                                                                uplynk?: UplynkConfiguration;
                                                                                                                                                                                                                                                                                                                                                                                                                width?: string | number;
                                                                                                                                                                                                                                                                                                                                                                                                            }

                                                                                                                                                                                                                                                                                                                                                                                                            Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                                            Index

                                                                                                                                                                                                                                                                                                                                                                                                            Properties

                                                                                                                                                                                                                                                                                                                                                                                                            interface UIPlayerConfiguration {
                                                                                                                                                                                                                                                                                                                                                                                                                abr?: SourceAbrConfiguration;
                                                                                                                                                                                                                                                                                                                                                                                                                ads?: AdsConfiguration;
                                                                                                                                                                                                                                                                                                                                                                                                                allowMixedContent?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                allowNativeFullscreen?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                analytics?: AnalyticsDescription[];
                                                                                                                                                                                                                                                                                                                                                                                                                cast?: CastConfiguration;
                                                                                                                                                                                                                                                                                                                                                                                                                fluid?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                height?: string | number;
                                                                                                                                                                                                                                                                                                                                                                                                                hideDeprecationWarnings?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                hlsDateRange?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                isEmbeddable?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                libraryLocation?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                license?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                licenseUrl?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                liveOffset?: number;
                                                                                                                                                                                                                                                                                                                                                                                                                mutedAutoplay?: MutedAutoplayConfiguration;
                                                                                                                                                                                                                                                                                                                                                                                                                persistVolume?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                pip?: PiPConfiguration;
                                                                                                                                                                                                                                                                                                                                                                                                                ps5?: PlayStation5Configuration;
                                                                                                                                                                                                                                                                                                                                                                                                                retainPlaybackRateOnSourceChange?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                retryConfiguration?: RetryConfiguration;
                                                                                                                                                                                                                                                                                                                                                                                                                theoLive?: TheoLiveConfiguration;
                                                                                                                                                                                                                                                                                                                                                                                                                ui?: UIConfiguration;
                                                                                                                                                                                                                                                                                                                                                                                                                uplynk?: UplynkConfiguration;
                                                                                                                                                                                                                                                                                                                                                                                                                width?: string | number;
                                                                                                                                                                                                                                                                                                                                                                                                            }

                                                                                                                                                                                                                                                                                                                                                                                                            Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                                            Index

                                                                                                                                                                                                                                                                                                                                                                                                            Properties

                                                                                                                                                                                                                                                                                                                                                                                                            abr? ads? allowMixedContent? allowNativeFullscreen? diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/UpdateQualityEvent.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/UpdateQualityEvent.html index efcb00e914e2..c89593e03278 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/UpdateQualityEvent.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/UpdateQualityEvent.html @@ -1,5 +1,5 @@ UpdateQualityEvent | THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                                                                                            THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                              Interface UpdateQualityEvent

                                                                                                                                                                                                                                                                                                                                                                                                              Fired when the quality updates.

                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                              interface UpdateQualityEvent {
                                                                                                                                                                                                                                                                                                                                                                                                                  date: Date;
                                                                                                                                                                                                                                                                                                                                                                                                                  quality: Quality;
                                                                                                                                                                                                                                                                                                                                                                                                                  type: "update";
                                                                                                                                                                                                                                                                                                                                                                                                              }

                                                                                                                                                                                                                                                                                                                                                                                                              Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                                              • Event<"update">
                                                                                                                                                                                                                                                                                                                                                                                                                • UpdateQualityEvent
                                                                                                                                                                                                                                                                                                                                                                                                              Index

                                                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                                                              interface UpdateQualityEvent {
                                                                                                                                                                                                                                                                                                                                                                                                                  date: Date;
                                                                                                                                                                                                                                                                                                                                                                                                                  quality: Quality;
                                                                                                                                                                                                                                                                                                                                                                                                                  type: "update";
                                                                                                                                                                                                                                                                                                                                                                                                              }

                                                                                                                                                                                                                                                                                                                                                                                                              Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                                              • Event<"update">
                                                                                                                                                                                                                                                                                                                                                                                                                • UpdateQualityEvent
                                                                                                                                                                                                                                                                                                                                                                                                              Index

                                                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                                                              date: Date

                                                                                                                                                                                                                                                                                                                                                                                                              The creation date of the event.

                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/Uplynk.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/Uplynk.html index c0b19fbcb65a..5440c29f69b3 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/Uplynk.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/Uplynk.html @@ -1,6 +1,6 @@ Uplynk | THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                                                                                              THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                Interface Uplynk

                                                                                                                                                                                                                                                                                                                                                                                                                The Uplynk API.


                                                                                                                                                                                                                                                                                                                                                                                                                - Only available with the feature 'uplynk'.

                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                interface Uplynk {
                                                                                                                                                                                                                                                                                                                                                                                                                    ads: UplynkAds;
                                                                                                                                                                                                                                                                                                                                                                                                                    assets: UplynkAssetList;
                                                                                                                                                                                                                                                                                                                                                                                                                    addEventListener<TType extends keyof UplynkEventMap>(
                                                                                                                                                                                                                                                                                                                                                                                                                        type: TType | readonly TType[],
                                                                                                                                                                                                                                                                                                                                                                                                                        listener: EventListener<UplynkEventMap[TType]>,
                                                                                                                                                                                                                                                                                                                                                                                                                    ): void;
                                                                                                                                                                                                                                                                                                                                                                                                                    removeEventListener<TType extends keyof UplynkEventMap>(
                                                                                                                                                                                                                                                                                                                                                                                                                        type: TType | readonly TType[],
                                                                                                                                                                                                                                                                                                                                                                                                                        listener: EventListener<UplynkEventMap[TType]>,
                                                                                                                                                                                                                                                                                                                                                                                                                    ): void;
                                                                                                                                                                                                                                                                                                                                                                                                                }

                                                                                                                                                                                                                                                                                                                                                                                                                Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                                                Index

                                                                                                                                                                                                                                                                                                                                                                                                                Properties

                                                                                                                                                                                                                                                                                                                                                                                                                ads +
                                                                                                                                                                                                                                                                                                                                                                                                                interface Uplynk {
                                                                                                                                                                                                                                                                                                                                                                                                                    ads: UplynkAds;
                                                                                                                                                                                                                                                                                                                                                                                                                    assets: UplynkAssetList;
                                                                                                                                                                                                                                                                                                                                                                                                                    addEventListener<TType extends keyof UplynkEventMap>(
                                                                                                                                                                                                                                                                                                                                                                                                                        type: TType | readonly TType[],
                                                                                                                                                                                                                                                                                                                                                                                                                        listener: EventListener<UplynkEventMap[TType]>,
                                                                                                                                                                                                                                                                                                                                                                                                                    ): void;
                                                                                                                                                                                                                                                                                                                                                                                                                    removeEventListener<TType extends keyof UplynkEventMap>(
                                                                                                                                                                                                                                                                                                                                                                                                                        type: TType | readonly TType[],
                                                                                                                                                                                                                                                                                                                                                                                                                        listener: EventListener<UplynkEventMap[TType]>,
                                                                                                                                                                                                                                                                                                                                                                                                                    ): void;
                                                                                                                                                                                                                                                                                                                                                                                                                }

                                                                                                                                                                                                                                                                                                                                                                                                                Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                                                Index

                                                                                                                                                                                                                                                                                                                                                                                                                Properties

                                                                                                                                                                                                                                                                                                                                                                                                                Methods

                                                                                                                                                                                                                                                                                                                                                                                                                addEventListener removeEventListener diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/UplynkAd.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/UplynkAd.html index ff92262dc276..c638e521ab76 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/UplynkAd.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/UplynkAd.html @@ -1,5 +1,5 @@ UplynkAd | THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                                                                                                THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                  Interface UplynkAd

                                                                                                                                                                                                                                                                                                                                                                                                                  Represents an Uplynk ad.

                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                  interface UplynkAd {
                                                                                                                                                                                                                                                                                                                                                                                                                      apiFramework: undefined | string;
                                                                                                                                                                                                                                                                                                                                                                                                                      companions: readonly UplynkAd[];
                                                                                                                                                                                                                                                                                                                                                                                                                      creative: string;
                                                                                                                                                                                                                                                                                                                                                                                                                      duration: number;
                                                                                                                                                                                                                                                                                                                                                                                                                      endTime: number;
                                                                                                                                                                                                                                                                                                                                                                                                                      events: Record<string, string[]>;
                                                                                                                                                                                                                                                                                                                                                                                                                      extensions: readonly object[];
                                                                                                                                                                                                                                                                                                                                                                                                                      freeWheelParameters: Record<string, string>;
                                                                                                                                                                                                                                                                                                                                                                                                                      height: number;
                                                                                                                                                                                                                                                                                                                                                                                                                      mimeType: string;
                                                                                                                                                                                                                                                                                                                                                                                                                      startTime: number;
                                                                                                                                                                                                                                                                                                                                                                                                                      width: number;
                                                                                                                                                                                                                                                                                                                                                                                                                      addEventListener<TType extends keyof UplynkAdEventMap>(
                                                                                                                                                                                                                                                                                                                                                                                                                          type: TType | readonly TType[],
                                                                                                                                                                                                                                                                                                                                                                                                                          listener: EventListener<UplynkAdEventMap[TType]>,
                                                                                                                                                                                                                                                                                                                                                                                                                      ): void;
                                                                                                                                                                                                                                                                                                                                                                                                                      removeEventListener<TType extends keyof UplynkAdEventMap>(
                                                                                                                                                                                                                                                                                                                                                                                                                          type: TType | readonly TType[],
                                                                                                                                                                                                                                                                                                                                                                                                                          listener: EventListener<UplynkAdEventMap[TType]>,
                                                                                                                                                                                                                                                                                                                                                                                                                      ): void;
                                                                                                                                                                                                                                                                                                                                                                                                                  }

                                                                                                                                                                                                                                                                                                                                                                                                                  Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                                                  Index

                                                                                                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                                                                                                  interface UplynkAd {
                                                                                                                                                                                                                                                                                                                                                                                                                      apiFramework: undefined | string;
                                                                                                                                                                                                                                                                                                                                                                                                                      companions: readonly UplynkAd[];
                                                                                                                                                                                                                                                                                                                                                                                                                      creative: string;
                                                                                                                                                                                                                                                                                                                                                                                                                      duration: number;
                                                                                                                                                                                                                                                                                                                                                                                                                      endTime: number;
                                                                                                                                                                                                                                                                                                                                                                                                                      events: Record<string, string[]>;
                                                                                                                                                                                                                                                                                                                                                                                                                      extensions: readonly object[];
                                                                                                                                                                                                                                                                                                                                                                                                                      freeWheelParameters: Record<string, string>;
                                                                                                                                                                                                                                                                                                                                                                                                                      height: number;
                                                                                                                                                                                                                                                                                                                                                                                                                      mimeType: string;
                                                                                                                                                                                                                                                                                                                                                                                                                      startTime: number;
                                                                                                                                                                                                                                                                                                                                                                                                                      width: number;
                                                                                                                                                                                                                                                                                                                                                                                                                      addEventListener<TType extends keyof UplynkAdEventMap>(
                                                                                                                                                                                                                                                                                                                                                                                                                          type: TType | readonly TType[],
                                                                                                                                                                                                                                                                                                                                                                                                                          listener: EventListener<UplynkAdEventMap[TType]>,
                                                                                                                                                                                                                                                                                                                                                                                                                      ): void;
                                                                                                                                                                                                                                                                                                                                                                                                                      removeEventListener<TType extends keyof UplynkAdEventMap>(
                                                                                                                                                                                                                                                                                                                                                                                                                          type: TType | readonly TType[],
                                                                                                                                                                                                                                                                                                                                                                                                                          listener: EventListener<UplynkAdEventMap[TType]>,
                                                                                                                                                                                                                                                                                                                                                                                                                      ): void;
                                                                                                                                                                                                                                                                                                                                                                                                                  }

                                                                                                                                                                                                                                                                                                                                                                                                                  Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                                                  Index

                                                                                                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                                                                                                  apiFramework companions creative duration diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/UplynkAdBeginEvent.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/UplynkAdBeginEvent.html index 341e427d1e1c..c11b0b5a8b28 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/UplynkAdBeginEvent.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/UplynkAdBeginEvent.html @@ -1,5 +1,5 @@ UplynkAdBeginEvent | THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                                                                                                  THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                    Interface UplynkAdBeginEvent

                                                                                                                                                                                                                                                                                                                                                                                                                    Fired when an ad begins.

                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                    interface UplynkAdBeginEvent {
                                                                                                                                                                                                                                                                                                                                                                                                                        ad: UplynkAd;
                                                                                                                                                                                                                                                                                                                                                                                                                        date: Date;
                                                                                                                                                                                                                                                                                                                                                                                                                        type: "adbegin";
                                                                                                                                                                                                                                                                                                                                                                                                                    }

                                                                                                                                                                                                                                                                                                                                                                                                                    Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                                                    • Event<"adbegin">
                                                                                                                                                                                                                                                                                                                                                                                                                      • UplynkAdBeginEvent
                                                                                                                                                                                                                                                                                                                                                                                                                    Index

                                                                                                                                                                                                                                                                                                                                                                                                                    Properties

                                                                                                                                                                                                                                                                                                                                                                                                                    ad +
                                                                                                                                                                                                                                                                                                                                                                                                                    interface UplynkAdBeginEvent {
                                                                                                                                                                                                                                                                                                                                                                                                                        ad: UplynkAd;
                                                                                                                                                                                                                                                                                                                                                                                                                        date: Date;
                                                                                                                                                                                                                                                                                                                                                                                                                        type: "adbegin";
                                                                                                                                                                                                                                                                                                                                                                                                                    }

                                                                                                                                                                                                                                                                                                                                                                                                                    Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                                                    • Event<"adbegin">
                                                                                                                                                                                                                                                                                                                                                                                                                      • UplynkAdBeginEvent
                                                                                                                                                                                                                                                                                                                                                                                                                    Index

                                                                                                                                                                                                                                                                                                                                                                                                                    Properties

                                                                                                                                                                                                                                                                                                                                                                                                                    Properties

                                                                                                                                                                                                                                                                                                                                                                                                                    The ad which began.

                                                                                                                                                                                                                                                                                                                                                                                                                    diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/UplynkAdBreak.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/UplynkAdBreak.html index 3e9f0733fcc0..4c11b6f499cd 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/UplynkAdBreak.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/UplynkAdBreak.html @@ -1,5 +1,5 @@ UplynkAdBreak | THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                                                                                                    THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                      Interface UplynkAdBreak

                                                                                                                                                                                                                                                                                                                                                                                                                      Represents an Uplynk ad break.

                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                      interface UplynkAdBreak {
                                                                                                                                                                                                                                                                                                                                                                                                                          ads: UplynkAdList;
                                                                                                                                                                                                                                                                                                                                                                                                                          duration: undefined | number;
                                                                                                                                                                                                                                                                                                                                                                                                                          endTime: undefined | number;
                                                                                                                                                                                                                                                                                                                                                                                                                          skipOffset: number;
                                                                                                                                                                                                                                                                                                                                                                                                                          startTime: number;
                                                                                                                                                                                                                                                                                                                                                                                                                          addEventListener<TType extends keyof UplynkAdBreakEventMap>(
                                                                                                                                                                                                                                                                                                                                                                                                                              type: TType | readonly TType[],
                                                                                                                                                                                                                                                                                                                                                                                                                              listener: EventListener<UplynkAdBreakEventMap[TType]>,
                                                                                                                                                                                                                                                                                                                                                                                                                          ): void;
                                                                                                                                                                                                                                                                                                                                                                                                                          removeEventListener<TType extends keyof UplynkAdBreakEventMap>(
                                                                                                                                                                                                                                                                                                                                                                                                                              type: TType | readonly TType[],
                                                                                                                                                                                                                                                                                                                                                                                                                              listener: EventListener<UplynkAdBreakEventMap[TType]>,
                                                                                                                                                                                                                                                                                                                                                                                                                          ): void;
                                                                                                                                                                                                                                                                                                                                                                                                                      }

                                                                                                                                                                                                                                                                                                                                                                                                                      Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                                                      Index

                                                                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                                                                      ads +
                                                                                                                                                                                                                                                                                                                                                                                                                      interface UplynkAdBreak {
                                                                                                                                                                                                                                                                                                                                                                                                                          ads: UplynkAdList;
                                                                                                                                                                                                                                                                                                                                                                                                                          duration: undefined | number;
                                                                                                                                                                                                                                                                                                                                                                                                                          endTime: undefined | number;
                                                                                                                                                                                                                                                                                                                                                                                                                          skipOffset: number;
                                                                                                                                                                                                                                                                                                                                                                                                                          startTime: number;
                                                                                                                                                                                                                                                                                                                                                                                                                          addEventListener<TType extends keyof UplynkAdBreakEventMap>(
                                                                                                                                                                                                                                                                                                                                                                                                                              type: TType | readonly TType[],
                                                                                                                                                                                                                                                                                                                                                                                                                              listener: EventListener<UplynkAdBreakEventMap[TType]>,
                                                                                                                                                                                                                                                                                                                                                                                                                          ): void;
                                                                                                                                                                                                                                                                                                                                                                                                                          removeEventListener<TType extends keyof UplynkAdBreakEventMap>(
                                                                                                                                                                                                                                                                                                                                                                                                                              type: TType | readonly TType[],
                                                                                                                                                                                                                                                                                                                                                                                                                              listener: EventListener<UplynkAdBreakEventMap[TType]>,
                                                                                                                                                                                                                                                                                                                                                                                                                          ): void;
                                                                                                                                                                                                                                                                                                                                                                                                                      }

                                                                                                                                                                                                                                                                                                                                                                                                                      Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                                                      Index

                                                                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                                                                      ads duration endTime skipOffset diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/UplynkAdBreakBeginEvent.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/UplynkAdBreakBeginEvent.html index 935d3111dfba..f104b83a2adb 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/UplynkAdBreakBeginEvent.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/UplynkAdBreakBeginEvent.html @@ -1,5 +1,5 @@ UplynkAdBreakBeginEvent | THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                                                                                                      THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                        Interface UplynkAdBreakBeginEvent

                                                                                                                                                                                                                                                                                                                                                                                                                        Fired when the ad break begins.

                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                        interface UplynkAdBreakBeginEvent {
                                                                                                                                                                                                                                                                                                                                                                                                                            adBreak: UplynkAdBreak;
                                                                                                                                                                                                                                                                                                                                                                                                                            date: Date;
                                                                                                                                                                                                                                                                                                                                                                                                                            type: "adbreakbegin";
                                                                                                                                                                                                                                                                                                                                                                                                                        }

                                                                                                                                                                                                                                                                                                                                                                                                                        Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                                                        • Event<"adbreakbegin">
                                                                                                                                                                                                                                                                                                                                                                                                                          • UplynkAdBreakBeginEvent
                                                                                                                                                                                                                                                                                                                                                                                                                        Index

                                                                                                                                                                                                                                                                                                                                                                                                                        Properties

                                                                                                                                                                                                                                                                                                                                                                                                                        interface UplynkAdBreakBeginEvent {
                                                                                                                                                                                                                                                                                                                                                                                                                            adBreak: UplynkAdBreak;
                                                                                                                                                                                                                                                                                                                                                                                                                            date: Date;
                                                                                                                                                                                                                                                                                                                                                                                                                            type: "adbreakbegin";
                                                                                                                                                                                                                                                                                                                                                                                                                        }

                                                                                                                                                                                                                                                                                                                                                                                                                        Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                                                        • Event<"adbreakbegin">
                                                                                                                                                                                                                                                                                                                                                                                                                          • UplynkAdBreakBeginEvent
                                                                                                                                                                                                                                                                                                                                                                                                                        Index

                                                                                                                                                                                                                                                                                                                                                                                                                        Properties

                                                                                                                                                                                                                                                                                                                                                                                                                        Properties

                                                                                                                                                                                                                                                                                                                                                                                                                        adBreak: UplynkAdBreak

                                                                                                                                                                                                                                                                                                                                                                                                                        The ad break which began.

                                                                                                                                                                                                                                                                                                                                                                                                                        diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/UplynkAdBreakEndEvent.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/UplynkAdBreakEndEvent.html index a43ee74d4cee..a65d0dcd7b6c 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/UplynkAdBreakEndEvent.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/UplynkAdBreakEndEvent.html @@ -1,5 +1,5 @@ UplynkAdBreakEndEvent | THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                                                                                                        THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                          Interface UplynkAdBreakEndEvent

                                                                                                                                                                                                                                                                                                                                                                                                                          Fired when the ad break ends.

                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                          interface UplynkAdBreakEndEvent {
                                                                                                                                                                                                                                                                                                                                                                                                                              adBreak: UplynkAdBreak;
                                                                                                                                                                                                                                                                                                                                                                                                                              date: Date;
                                                                                                                                                                                                                                                                                                                                                                                                                              type: "adbreakend";
                                                                                                                                                                                                                                                                                                                                                                                                                          }

                                                                                                                                                                                                                                                                                                                                                                                                                          Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                                                          • Event<"adbreakend">
                                                                                                                                                                                                                                                                                                                                                                                                                            • UplynkAdBreakEndEvent
                                                                                                                                                                                                                                                                                                                                                                                                                          Index

                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                          interface UplynkAdBreakEndEvent {
                                                                                                                                                                                                                                                                                                                                                                                                                              adBreak: UplynkAdBreak;
                                                                                                                                                                                                                                                                                                                                                                                                                              date: Date;
                                                                                                                                                                                                                                                                                                                                                                                                                              type: "adbreakend";
                                                                                                                                                                                                                                                                                                                                                                                                                          }

                                                                                                                                                                                                                                                                                                                                                                                                                          Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                                                          • Event<"adbreakend">
                                                                                                                                                                                                                                                                                                                                                                                                                            • UplynkAdBreakEndEvent
                                                                                                                                                                                                                                                                                                                                                                                                                          Index

                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                          adBreak: UplynkAdBreak

                                                                                                                                                                                                                                                                                                                                                                                                                          The ad break which ended.

                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/UplynkAdBreakList.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/UplynkAdBreakList.html index ef7f21555613..c5831a824f3d 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/UplynkAdBreakList.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/UplynkAdBreakList.html @@ -1,5 +1,5 @@ UplynkAdBreakList | THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                                                                                                          THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                            Interface UplynkAdBreakList

                                                                                                                                                                                                                                                                                                                                                                                                                            List with Uplynk ad breaks.

                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                            interface UplynkAdBreakList {
                                                                                                                                                                                                                                                                                                                                                                                                                                length: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                addEventListener<TType extends keyof UplynkAdBreakListEventMap>(
                                                                                                                                                                                                                                                                                                                                                                                                                                    type: TType | readonly TType[],
                                                                                                                                                                                                                                                                                                                                                                                                                                    listener: EventListener<UplynkAdBreakListEventMap[TType]>,
                                                                                                                                                                                                                                                                                                                                                                                                                                ): void;
                                                                                                                                                                                                                                                                                                                                                                                                                                item(index: number): undefined | UplynkAdBreak;
                                                                                                                                                                                                                                                                                                                                                                                                                                removeEventListener<TType extends keyof UplynkAdBreakListEventMap>(
                                                                                                                                                                                                                                                                                                                                                                                                                                    type: TType | readonly TType[],
                                                                                                                                                                                                                                                                                                                                                                                                                                    listener: EventListener<UplynkAdBreakListEventMap[TType]>,
                                                                                                                                                                                                                                                                                                                                                                                                                                ): void;
                                                                                                                                                                                                                                                                                                                                                                                                                                [index: number]: UplynkAdBreak;
                                                                                                                                                                                                                                                                                                                                                                                                                            }

                                                                                                                                                                                                                                                                                                                                                                                                                            Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                                                            Indexable

                                                                                                                                                                                                                                                                                                                                                                                                                            • [index: number]: UplynkAdBreak

                                                                                                                                                                                                                                                                                                                                                                                                                              The object representing the nth in the list.

                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                            interface UplynkAdBreakList {
                                                                                                                                                                                                                                                                                                                                                                                                                                length: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                addEventListener<TType extends keyof UplynkAdBreakListEventMap>(
                                                                                                                                                                                                                                                                                                                                                                                                                                    type: TType | readonly TType[],
                                                                                                                                                                                                                                                                                                                                                                                                                                    listener: EventListener<UplynkAdBreakListEventMap[TType]>,
                                                                                                                                                                                                                                                                                                                                                                                                                                ): void;
                                                                                                                                                                                                                                                                                                                                                                                                                                item(index: number): undefined | UplynkAdBreak;
                                                                                                                                                                                                                                                                                                                                                                                                                                removeEventListener<TType extends keyof UplynkAdBreakListEventMap>(
                                                                                                                                                                                                                                                                                                                                                                                                                                    type: TType | readonly TType[],
                                                                                                                                                                                                                                                                                                                                                                                                                                    listener: EventListener<UplynkAdBreakListEventMap[TType]>,
                                                                                                                                                                                                                                                                                                                                                                                                                                ): void;
                                                                                                                                                                                                                                                                                                                                                                                                                                [index: number]: UplynkAdBreak;
                                                                                                                                                                                                                                                                                                                                                                                                                            }

                                                                                                                                                                                                                                                                                                                                                                                                                            Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                                                            Indexable

                                                                                                                                                                                                                                                                                                                                                                                                                            • [index: number]: UplynkAdBreak

                                                                                                                                                                                                                                                                                                                                                                                                                              The object representing the nth in the list.

                                                                                                                                                                                                                                                                                                                                                                                                                            Index

                                                                                                                                                                                                                                                                                                                                                                                                                            Properties

                                                                                                                                                                                                                                                                                                                                                                                                                            Methods

                                                                                                                                                                                                                                                                                                                                                                                                                            addEventListener item diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/UplynkAdBreakSkipEvent.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/UplynkAdBreakSkipEvent.html index 6b6ec25e1dd4..afd980facf3e 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/UplynkAdBreakSkipEvent.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/UplynkAdBreakSkipEvent.html @@ -1,5 +1,5 @@ UplynkAdBreakSkipEvent | THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                                                                                                            THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                              Interface UplynkAdBreakSkipEvent

                                                                                                                                                                                                                                                                                                                                                                                                                              Fired when the ad break is skipped.

                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                              interface UplynkAdBreakSkipEvent {
                                                                                                                                                                                                                                                                                                                                                                                                                                  adBreak: UplynkAdBreak;
                                                                                                                                                                                                                                                                                                                                                                                                                                  date: Date;
                                                                                                                                                                                                                                                                                                                                                                                                                                  type: "adbreakskip";
                                                                                                                                                                                                                                                                                                                                                                                                                              }

                                                                                                                                                                                                                                                                                                                                                                                                                              Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                                                              • Event<"adbreakskip">
                                                                                                                                                                                                                                                                                                                                                                                                                                • UplynkAdBreakSkipEvent
                                                                                                                                                                                                                                                                                                                                                                                                                              Index

                                                                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                                                                              interface UplynkAdBreakSkipEvent {
                                                                                                                                                                                                                                                                                                                                                                                                                                  adBreak: UplynkAdBreak;
                                                                                                                                                                                                                                                                                                                                                                                                                                  date: Date;
                                                                                                                                                                                                                                                                                                                                                                                                                                  type: "adbreakskip";
                                                                                                                                                                                                                                                                                                                                                                                                                              }

                                                                                                                                                                                                                                                                                                                                                                                                                              Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                                                              • Event<"adbreakskip">
                                                                                                                                                                                                                                                                                                                                                                                                                                • UplynkAdBreakSkipEvent
                                                                                                                                                                                                                                                                                                                                                                                                                              Index

                                                                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                                                                              adBreak: UplynkAdBreak

                                                                                                                                                                                                                                                                                                                                                                                                                              The ad break which has been skipped.

                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/UplynkAdCompleteEvent.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/UplynkAdCompleteEvent.html index 88f80972929e..7d425276d59a 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/UplynkAdCompleteEvent.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/UplynkAdCompleteEvent.html @@ -1,5 +1,5 @@ UplynkAdCompleteEvent | THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                                                                                                              THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                Interface UplynkAdCompleteEvent

                                                                                                                                                                                                                                                                                                                                                                                                                                Fired when the ad is completed.

                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                interface UplynkAdCompleteEvent {
                                                                                                                                                                                                                                                                                                                                                                                                                                    ad: UplynkAd;
                                                                                                                                                                                                                                                                                                                                                                                                                                    date: Date;
                                                                                                                                                                                                                                                                                                                                                                                                                                    type: "adcomplete";
                                                                                                                                                                                                                                                                                                                                                                                                                                }

                                                                                                                                                                                                                                                                                                                                                                                                                                Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                                                                • Event<"adcomplete">
                                                                                                                                                                                                                                                                                                                                                                                                                                  • UplynkAdCompleteEvent
                                                                                                                                                                                                                                                                                                                                                                                                                                Index

                                                                                                                                                                                                                                                                                                                                                                                                                                Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                ad +
                                                                                                                                                                                                                                                                                                                                                                                                                                interface UplynkAdCompleteEvent {
                                                                                                                                                                                                                                                                                                                                                                                                                                    ad: UplynkAd;
                                                                                                                                                                                                                                                                                                                                                                                                                                    date: Date;
                                                                                                                                                                                                                                                                                                                                                                                                                                    type: "adcomplete";
                                                                                                                                                                                                                                                                                                                                                                                                                                }

                                                                                                                                                                                                                                                                                                                                                                                                                                Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                                                                • Event<"adcomplete">
                                                                                                                                                                                                                                                                                                                                                                                                                                  • UplynkAdCompleteEvent
                                                                                                                                                                                                                                                                                                                                                                                                                                Index

                                                                                                                                                                                                                                                                                                                                                                                                                                Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                The ad which has progressed.

                                                                                                                                                                                                                                                                                                                                                                                                                                diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/UplynkAdEndEvent.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/UplynkAdEndEvent.html index d9298699f340..28872df60c39 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/UplynkAdEndEvent.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/UplynkAdEndEvent.html @@ -1,5 +1,5 @@ UplynkAdEndEvent | THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                                                                                                                THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                  Interface UplynkAdEndEvent

                                                                                                                                                                                                                                                                                                                                                                                                                                  Fired when the ad ends.

                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                  interface UplynkAdEndEvent {
                                                                                                                                                                                                                                                                                                                                                                                                                                      ad: UplynkAd;
                                                                                                                                                                                                                                                                                                                                                                                                                                      date: Date;
                                                                                                                                                                                                                                                                                                                                                                                                                                      type: "adend";
                                                                                                                                                                                                                                                                                                                                                                                                                                  }

                                                                                                                                                                                                                                                                                                                                                                                                                                  Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                                                                  • Event<"adend">
                                                                                                                                                                                                                                                                                                                                                                                                                                    • UplynkAdEndEvent
                                                                                                                                                                                                                                                                                                                                                                                                                                  Index

                                                                                                                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                  ad +
                                                                                                                                                                                                                                                                                                                                                                                                                                  interface UplynkAdEndEvent {
                                                                                                                                                                                                                                                                                                                                                                                                                                      ad: UplynkAd;
                                                                                                                                                                                                                                                                                                                                                                                                                                      date: Date;
                                                                                                                                                                                                                                                                                                                                                                                                                                      type: "adend";
                                                                                                                                                                                                                                                                                                                                                                                                                                  }

                                                                                                                                                                                                                                                                                                                                                                                                                                  Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                                                                  • Event<"adend">
                                                                                                                                                                                                                                                                                                                                                                                                                                    • UplynkAdEndEvent
                                                                                                                                                                                                                                                                                                                                                                                                                                  Index

                                                                                                                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                  The ad which has ended.

                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/UplynkAdFirstQuartileEvent.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/UplynkAdFirstQuartileEvent.html index 5eabaa60fc6d..9c56514205b6 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/UplynkAdFirstQuartileEvent.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/UplynkAdFirstQuartileEvent.html @@ -1,5 +1,5 @@ UplynkAdFirstQuartileEvent | THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                                                                                                                  THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                    Interface UplynkAdFirstQuartileEvent

                                                                                                                                                                                                                                                                                                                                                                                                                                    Fired when the ad reaches the first quartile.

                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                    interface UplynkAdFirstQuartileEvent {
                                                                                                                                                                                                                                                                                                                                                                                                                                        ad: UplynkAd;
                                                                                                                                                                                                                                                                                                                                                                                                                                        date: Date;
                                                                                                                                                                                                                                                                                                                                                                                                                                        type: "adfirstquartile";
                                                                                                                                                                                                                                                                                                                                                                                                                                    }

                                                                                                                                                                                                                                                                                                                                                                                                                                    Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                                                                    • Event<"adfirstquartile">
                                                                                                                                                                                                                                                                                                                                                                                                                                      • UplynkAdFirstQuartileEvent
                                                                                                                                                                                                                                                                                                                                                                                                                                    Index

                                                                                                                                                                                                                                                                                                                                                                                                                                    Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                    ad +
                                                                                                                                                                                                                                                                                                                                                                                                                                    interface UplynkAdFirstQuartileEvent {
                                                                                                                                                                                                                                                                                                                                                                                                                                        ad: UplynkAd;
                                                                                                                                                                                                                                                                                                                                                                                                                                        date: Date;
                                                                                                                                                                                                                                                                                                                                                                                                                                        type: "adfirstquartile";
                                                                                                                                                                                                                                                                                                                                                                                                                                    }

                                                                                                                                                                                                                                                                                                                                                                                                                                    Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                                                                    • Event<"adfirstquartile">
                                                                                                                                                                                                                                                                                                                                                                                                                                      • UplynkAdFirstQuartileEvent
                                                                                                                                                                                                                                                                                                                                                                                                                                    Index

                                                                                                                                                                                                                                                                                                                                                                                                                                    Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                    Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                    The ad which has progressed.

                                                                                                                                                                                                                                                                                                                                                                                                                                    diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/UplynkAdList.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/UplynkAdList.html index 0ef1201a759d..78d644f4abd0 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/UplynkAdList.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/UplynkAdList.html @@ -1,5 +1,5 @@ UplynkAdList | THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                                                                                                                    THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                      Interface UplynkAdList

                                                                                                                                                                                                                                                                                                                                                                                                                                      List of Uplynk ads.

                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                      interface UplynkAdList {
                                                                                                                                                                                                                                                                                                                                                                                                                                          length: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                          addEventListener<TType extends "removead">(
                                                                                                                                                                                                                                                                                                                                                                                                                                              type: TType | readonly TType[],
                                                                                                                                                                                                                                                                                                                                                                                                                                              listener: EventListener<UplynkAdListEventMap[TType]>,
                                                                                                                                                                                                                                                                                                                                                                                                                                          ): void;
                                                                                                                                                                                                                                                                                                                                                                                                                                          item(index: number): undefined | UplynkAd;
                                                                                                                                                                                                                                                                                                                                                                                                                                          removeEventListener<TType extends "removead">(
                                                                                                                                                                                                                                                                                                                                                                                                                                              type: TType | readonly TType[],
                                                                                                                                                                                                                                                                                                                                                                                                                                              listener: EventListener<UplynkAdListEventMap[TType]>,
                                                                                                                                                                                                                                                                                                                                                                                                                                          ): void;
                                                                                                                                                                                                                                                                                                                                                                                                                                          [index: number]: UplynkAd;
                                                                                                                                                                                                                                                                                                                                                                                                                                      }

                                                                                                                                                                                                                                                                                                                                                                                                                                      Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                                                                      Indexable

                                                                                                                                                                                                                                                                                                                                                                                                                                      • [index: number]: UplynkAd

                                                                                                                                                                                                                                                                                                                                                                                                                                        The object representing the nth in the list.

                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                      interface UplynkAdList {
                                                                                                                                                                                                                                                                                                                                                                                                                                          length: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                          addEventListener<TType extends "removead">(
                                                                                                                                                                                                                                                                                                                                                                                                                                              type: TType | readonly TType[],
                                                                                                                                                                                                                                                                                                                                                                                                                                              listener: EventListener<UplynkAdListEventMap[TType]>,
                                                                                                                                                                                                                                                                                                                                                                                                                                          ): void;
                                                                                                                                                                                                                                                                                                                                                                                                                                          item(index: number): undefined | UplynkAd;
                                                                                                                                                                                                                                                                                                                                                                                                                                          removeEventListener<TType extends "removead">(
                                                                                                                                                                                                                                                                                                                                                                                                                                              type: TType | readonly TType[],
                                                                                                                                                                                                                                                                                                                                                                                                                                              listener: EventListener<UplynkAdListEventMap[TType]>,
                                                                                                                                                                                                                                                                                                                                                                                                                                          ): void;
                                                                                                                                                                                                                                                                                                                                                                                                                                          [index: number]: UplynkAd;
                                                                                                                                                                                                                                                                                                                                                                                                                                      }

                                                                                                                                                                                                                                                                                                                                                                                                                                      Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                                                                      Indexable

                                                                                                                                                                                                                                                                                                                                                                                                                                      • [index: number]: UplynkAd

                                                                                                                                                                                                                                                                                                                                                                                                                                        The object representing the nth in the list.

                                                                                                                                                                                                                                                                                                                                                                                                                                      Index

                                                                                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                      Methods

                                                                                                                                                                                                                                                                                                                                                                                                                                      addEventListener item diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/UplynkAdMidpointEvent.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/UplynkAdMidpointEvent.html index c2c0d1ec5ecc..812a242ba349 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/UplynkAdMidpointEvent.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/UplynkAdMidpointEvent.html @@ -1,5 +1,5 @@ UplynkAdMidpointEvent | THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                                                                                                                      THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                        Interface UplynkAdMidpointEvent

                                                                                                                                                                                                                                                                                                                                                                                                                                        Fired when the ad reaches the mid point.

                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                        interface UplynkAdMidpointEvent {
                                                                                                                                                                                                                                                                                                                                                                                                                                            ad: UplynkAd;
                                                                                                                                                                                                                                                                                                                                                                                                                                            date: Date;
                                                                                                                                                                                                                                                                                                                                                                                                                                            type: "admidpoint";
                                                                                                                                                                                                                                                                                                                                                                                                                                        }

                                                                                                                                                                                                                                                                                                                                                                                                                                        Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                                                                        • Event<"admidpoint">
                                                                                                                                                                                                                                                                                                                                                                                                                                          • UplynkAdMidpointEvent
                                                                                                                                                                                                                                                                                                                                                                                                                                        Index

                                                                                                                                                                                                                                                                                                                                                                                                                                        Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                        ad +
                                                                                                                                                                                                                                                                                                                                                                                                                                        interface UplynkAdMidpointEvent {
                                                                                                                                                                                                                                                                                                                                                                                                                                            ad: UplynkAd;
                                                                                                                                                                                                                                                                                                                                                                                                                                            date: Date;
                                                                                                                                                                                                                                                                                                                                                                                                                                            type: "admidpoint";
                                                                                                                                                                                                                                                                                                                                                                                                                                        }

                                                                                                                                                                                                                                                                                                                                                                                                                                        Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                                                                        • Event<"admidpoint">
                                                                                                                                                                                                                                                                                                                                                                                                                                          • UplynkAdMidpointEvent
                                                                                                                                                                                                                                                                                                                                                                                                                                        Index

                                                                                                                                                                                                                                                                                                                                                                                                                                        Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                        Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                        The ad which has progressed.

                                                                                                                                                                                                                                                                                                                                                                                                                                        diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/UplynkAdThirdQuartileEvent.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/UplynkAdThirdQuartileEvent.html index c0aa889a3950..2c70eb14864a 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/UplynkAdThirdQuartileEvent.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/UplynkAdThirdQuartileEvent.html @@ -1,5 +1,5 @@ UplynkAdThirdQuartileEvent | THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                                                                                                                        THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                          Interface UplynkAdThirdQuartileEvent

                                                                                                                                                                                                                                                                                                                                                                                                                                          Fired when the ad reaches the third quartile.

                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                          interface UplynkAdThirdQuartileEvent {
                                                                                                                                                                                                                                                                                                                                                                                                                                              ad: UplynkAd;
                                                                                                                                                                                                                                                                                                                                                                                                                                              date: Date;
                                                                                                                                                                                                                                                                                                                                                                                                                                              type: "adthirdquartile";
                                                                                                                                                                                                                                                                                                                                                                                                                                          }

                                                                                                                                                                                                                                                                                                                                                                                                                                          Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                                                                          • Event<"adthirdquartile">
                                                                                                                                                                                                                                                                                                                                                                                                                                            • UplynkAdThirdQuartileEvent
                                                                                                                                                                                                                                                                                                                                                                                                                                          Index

                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                          ad +
                                                                                                                                                                                                                                                                                                                                                                                                                                          interface UplynkAdThirdQuartileEvent {
                                                                                                                                                                                                                                                                                                                                                                                                                                              ad: UplynkAd;
                                                                                                                                                                                                                                                                                                                                                                                                                                              date: Date;
                                                                                                                                                                                                                                                                                                                                                                                                                                              type: "adthirdquartile";
                                                                                                                                                                                                                                                                                                                                                                                                                                          }

                                                                                                                                                                                                                                                                                                                                                                                                                                          Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                                                                          • Event<"adthirdquartile">
                                                                                                                                                                                                                                                                                                                                                                                                                                            • UplynkAdThirdQuartileEvent
                                                                                                                                                                                                                                                                                                                                                                                                                                          Index

                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                          The ad which has progressed.

                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/UplynkAddAdBreakEvent.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/UplynkAddAdBreakEvent.html index 2ca439b8f502..6ea3a84fa07b 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/UplynkAddAdBreakEvent.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/UplynkAddAdBreakEvent.html @@ -1,5 +1,5 @@ UplynkAddAdBreakEvent | THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                                                                                                                          THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                            Interface UplynkAddAdBreakEvent

                                                                                                                                                                                                                                                                                                                                                                                                                                            Fired when the ad break is added.

                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                            interface UplynkAddAdBreakEvent {
                                                                                                                                                                                                                                                                                                                                                                                                                                                adBreak: UplynkAdBreak;
                                                                                                                                                                                                                                                                                                                                                                                                                                                date: Date;
                                                                                                                                                                                                                                                                                                                                                                                                                                                type: "addadbreak";
                                                                                                                                                                                                                                                                                                                                                                                                                                            }

                                                                                                                                                                                                                                                                                                                                                                                                                                            Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                                                                            • Event<"addadbreak">
                                                                                                                                                                                                                                                                                                                                                                                                                                              • UplynkAddAdBreakEvent
                                                                                                                                                                                                                                                                                                                                                                                                                                            Index

                                                                                                                                                                                                                                                                                                                                                                                                                                            Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                            interface UplynkAddAdBreakEvent {
                                                                                                                                                                                                                                                                                                                                                                                                                                                adBreak: UplynkAdBreak;
                                                                                                                                                                                                                                                                                                                                                                                                                                                date: Date;
                                                                                                                                                                                                                                                                                                                                                                                                                                                type: "addadbreak";
                                                                                                                                                                                                                                                                                                                                                                                                                                            }

                                                                                                                                                                                                                                                                                                                                                                                                                                            Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                                                                            • Event<"addadbreak">
                                                                                                                                                                                                                                                                                                                                                                                                                                              • UplynkAddAdBreakEvent
                                                                                                                                                                                                                                                                                                                                                                                                                                            Index

                                                                                                                                                                                                                                                                                                                                                                                                                                            Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                            Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                            adBreak: UplynkAdBreak

                                                                                                                                                                                                                                                                                                                                                                                                                                            The ad break which has been added.

                                                                                                                                                                                                                                                                                                                                                                                                                                            diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/UplynkAddAssetEvent.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/UplynkAddAssetEvent.html index be85337f7a53..cee43fa4d4e4 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/UplynkAddAssetEvent.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/UplynkAddAssetEvent.html @@ -1,5 +1,5 @@ UplynkAddAssetEvent | THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                                                                                                                            THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                              Interface UplynkAddAssetEvent

                                                                                                                                                                                                                                                                                                                                                                                                                                              Fired when an asset is added.

                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                              interface UplynkAddAssetEvent {
                                                                                                                                                                                                                                                                                                                                                                                                                                                  asset: UplynkAsset;
                                                                                                                                                                                                                                                                                                                                                                                                                                                  date: Date;
                                                                                                                                                                                                                                                                                                                                                                                                                                                  type: "addasset";
                                                                                                                                                                                                                                                                                                                                                                                                                                              }

                                                                                                                                                                                                                                                                                                                                                                                                                                              Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                                                                              • Event<"addasset">
                                                                                                                                                                                                                                                                                                                                                                                                                                                • UplynkAddAssetEvent
                                                                                                                                                                                                                                                                                                                                                                                                                                              Index

                                                                                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                              interface UplynkAddAssetEvent {
                                                                                                                                                                                                                                                                                                                                                                                                                                                  asset: UplynkAsset;
                                                                                                                                                                                                                                                                                                                                                                                                                                                  date: Date;
                                                                                                                                                                                                                                                                                                                                                                                                                                                  type: "addasset";
                                                                                                                                                                                                                                                                                                                                                                                                                                              }

                                                                                                                                                                                                                                                                                                                                                                                                                                              Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                                                                              • Event<"addasset">
                                                                                                                                                                                                                                                                                                                                                                                                                                                • UplynkAddAssetEvent
                                                                                                                                                                                                                                                                                                                                                                                                                                              Index

                                                                                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                              The asset which has been added.

                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/UplynkAssetInfoResponseEvent.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/UplynkAssetInfoResponseEvent.html index eaf8f0741781..910604003f80 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/UplynkAssetInfoResponseEvent.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/UplynkAssetInfoResponseEvent.html @@ -1,5 +1,5 @@ UplynkAssetInfoResponseEvent | THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                                                                                                                              THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                Interface UplynkAssetInfoResponseEvent

                                                                                                                                                                                                                                                                                                                                                                                                                                                Fired when an asset info response is received.

                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                interface UplynkAssetInfoResponseEvent {
                                                                                                                                                                                                                                                                                                                                                                                                                                                    date: Date;
                                                                                                                                                                                                                                                                                                                                                                                                                                                    response: UplynkAssetInfoResponse;
                                                                                                                                                                                                                                                                                                                                                                                                                                                    type: "assetinforesponse";
                                                                                                                                                                                                                                                                                                                                                                                                                                                }

                                                                                                                                                                                                                                                                                                                                                                                                                                                Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                                                                                • Event<"assetinforesponse">
                                                                                                                                                                                                                                                                                                                                                                                                                                                  • UplynkAssetInfoResponseEvent
                                                                                                                                                                                                                                                                                                                                                                                                                                                Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                interface UplynkAssetInfoResponseEvent {
                                                                                                                                                                                                                                                                                                                                                                                                                                                    date: Date;
                                                                                                                                                                                                                                                                                                                                                                                                                                                    response: UplynkAssetInfoResponse;
                                                                                                                                                                                                                                                                                                                                                                                                                                                    type: "assetinforesponse";
                                                                                                                                                                                                                                                                                                                                                                                                                                                }

                                                                                                                                                                                                                                                                                                                                                                                                                                                Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                                                                                • Event<"assetinforesponse">
                                                                                                                                                                                                                                                                                                                                                                                                                                                  • UplynkAssetInfoResponseEvent
                                                                                                                                                                                                                                                                                                                                                                                                                                                Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                date: Date

                                                                                                                                                                                                                                                                                                                                                                                                                                                The creation date of the event.

                                                                                                                                                                                                                                                                                                                                                                                                                                                diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/UplynkAssetList.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/UplynkAssetList.html index 198fae3556c4..ea9f5964292e 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/UplynkAssetList.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/UplynkAssetList.html @@ -1,5 +1,5 @@ UplynkAssetList | THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                                                                                                                                THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                  Interface UplynkAssetList

                                                                                                                                                                                                                                                                                                                                                                                                                                                  List of Uplynk assets.

                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                  interface UplynkAssetList {
                                                                                                                                                                                                                                                                                                                                                                                                                                                      length: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                      addEventListener<TType extends keyof UplynkAssetEventMap>(
                                                                                                                                                                                                                                                                                                                                                                                                                                                          type: TType | readonly TType[],
                                                                                                                                                                                                                                                                                                                                                                                                                                                          listener: EventListener<UplynkAssetEventMap[TType]>,
                                                                                                                                                                                                                                                                                                                                                                                                                                                      ): void;
                                                                                                                                                                                                                                                                                                                                                                                                                                                      item(index: number): undefined | UplynkAsset;
                                                                                                                                                                                                                                                                                                                                                                                                                                                      removeEventListener<TType extends keyof UplynkAssetEventMap>(
                                                                                                                                                                                                                                                                                                                                                                                                                                                          type: TType | readonly TType[],
                                                                                                                                                                                                                                                                                                                                                                                                                                                          listener: EventListener<UplynkAssetEventMap[TType]>,
                                                                                                                                                                                                                                                                                                                                                                                                                                                      ): void;
                                                                                                                                                                                                                                                                                                                                                                                                                                                      [index: number]: UplynkAsset;
                                                                                                                                                                                                                                                                                                                                                                                                                                                  }

                                                                                                                                                                                                                                                                                                                                                                                                                                                  Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                                                                                  Indexable

                                                                                                                                                                                                                                                                                                                                                                                                                                                  • [index: number]: UplynkAsset

                                                                                                                                                                                                                                                                                                                                                                                                                                                    The object representing the nth in the list.

                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                  interface UplynkAssetList {
                                                                                                                                                                                                                                                                                                                                                                                                                                                      length: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                      addEventListener<TType extends keyof UplynkAssetEventMap>(
                                                                                                                                                                                                                                                                                                                                                                                                                                                          type: TType | readonly TType[],
                                                                                                                                                                                                                                                                                                                                                                                                                                                          listener: EventListener<UplynkAssetEventMap[TType]>,
                                                                                                                                                                                                                                                                                                                                                                                                                                                      ): void;
                                                                                                                                                                                                                                                                                                                                                                                                                                                      item(index: number): undefined | UplynkAsset;
                                                                                                                                                                                                                                                                                                                                                                                                                                                      removeEventListener<TType extends keyof UplynkAssetEventMap>(
                                                                                                                                                                                                                                                                                                                                                                                                                                                          type: TType | readonly TType[],
                                                                                                                                                                                                                                                                                                                                                                                                                                                          listener: EventListener<UplynkAssetEventMap[TType]>,
                                                                                                                                                                                                                                                                                                                                                                                                                                                      ): void;
                                                                                                                                                                                                                                                                                                                                                                                                                                                      [index: number]: UplynkAsset;
                                                                                                                                                                                                                                                                                                                                                                                                                                                  }

                                                                                                                                                                                                                                                                                                                                                                                                                                                  Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                                                                                  Indexable

                                                                                                                                                                                                                                                                                                                                                                                                                                                  • [index: number]: UplynkAsset

                                                                                                                                                                                                                                                                                                                                                                                                                                                    The object representing the nth in the list.

                                                                                                                                                                                                                                                                                                                                                                                                                                                  Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                  Methods

                                                                                                                                                                                                                                                                                                                                                                                                                                                  addEventListener item diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/UplynkDRMConfiguration.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/UplynkDRMConfiguration.html index cb42073173bb..fd30a924e55a 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/UplynkDRMConfiguration.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/UplynkDRMConfiguration.html @@ -2,7 +2,7 @@
                                                                                                                                                                                                                                                                                                                                                                                                                                                  const drmConfiguration = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                  integration : 'uplynk',
                                                                                                                                                                                                                                                                                                                                                                                                                                                  fairplay: {
                                                                                                                                                                                                                                                                                                                                                                                                                                                  certificateURL: 'yourCertificateAcquisitionURL'
                                                                                                                                                                                                                                                                                                                                                                                                                                                  },
                                                                                                                                                                                                                                                                                                                                                                                                                                                  }
                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                  interface UplynkDRMConfiguration {
                                                                                                                                                                                                                                                                                                                                                                                                                                                      aes128?: AES128KeySystemConfiguration;
                                                                                                                                                                                                                                                                                                                                                                                                                                                      clearkey?: ClearkeyKeySystemConfiguration;
                                                                                                                                                                                                                                                                                                                                                                                                                                                      fairplay?: FairPlayKeySystemConfiguration;
                                                                                                                                                                                                                                                                                                                                                                                                                                                      integration: "uplynk";
                                                                                                                                                                                                                                                                                                                                                                                                                                                      integrationParameters?: { [parameterName: string]: any };
                                                                                                                                                                                                                                                                                                                                                                                                                                                      playready?: PlayReadyKeySystemConfiguration;
                                                                                                                                                                                                                                                                                                                                                                                                                                                      preferredKeySystems?: (KeySystemId | string & {})[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                      queryParameters?: { [key: string]: any };
                                                                                                                                                                                                                                                                                                                                                                                                                                                      useOipfDrmAgent?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                      widevine?: KeySystemConfiguration;
                                                                                                                                                                                                                                                                                                                                                                                                                                                  }

                                                                                                                                                                                                                                                                                                                                                                                                                                                  Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                                                                                  Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                  interface UplynkDRMConfiguration {
                                                                                                                                                                                                                                                                                                                                                                                                                                                      aes128?: AES128KeySystemConfiguration;
                                                                                                                                                                                                                                                                                                                                                                                                                                                      clearkey?: ClearkeyKeySystemConfiguration;
                                                                                                                                                                                                                                                                                                                                                                                                                                                      fairplay?: FairPlayKeySystemConfiguration;
                                                                                                                                                                                                                                                                                                                                                                                                                                                      integration: "uplynk";
                                                                                                                                                                                                                                                                                                                                                                                                                                                      integrationParameters?: { [parameterName: string]: any };
                                                                                                                                                                                                                                                                                                                                                                                                                                                      playready?: PlayReadyKeySystemConfiguration;
                                                                                                                                                                                                                                                                                                                                                                                                                                                      preferredKeySystems?: (KeySystemId | string & {})[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                      queryParameters?: { [key: string]: any };
                                                                                                                                                                                                                                                                                                                                                                                                                                                      useOipfDrmAgent?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                      widevine?: KeySystemConfiguration;
                                                                                                                                                                                                                                                                                                                                                                                                                                                  }

                                                                                                                                                                                                                                                                                                                                                                                                                                                  Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                                                                                  Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                  aes128? clearkey? fairplay? integration diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/UplynkPingErrorEvent.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/UplynkPingErrorEvent.html index 59b735087734..2ffe7c35d14c 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/UplynkPingErrorEvent.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/UplynkPingErrorEvent.html @@ -1,5 +1,5 @@ UplynkPingErrorEvent | THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                                                                                                                                  THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                    Interface UplynkPingErrorEvent

                                                                                                                                                                                                                                                                                                                                                                                                                                                    Fired when an error or invalid response is received from the Ping API.

                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                    interface UplynkPingErrorEvent {
                                                                                                                                                                                                                                                                                                                                                                                                                                                        date: Date;
                                                                                                                                                                                                                                                                                                                                                                                                                                                        error: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                        type: "pingerror";
                                                                                                                                                                                                                                                                                                                                                                                                                                                    }

                                                                                                                                                                                                                                                                                                                                                                                                                                                    Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Event<"pingerror">
                                                                                                                                                                                                                                                                                                                                                                                                                                                      • UplynkPingErrorEvent
                                                                                                                                                                                                                                                                                                                                                                                                                                                    Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                    Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                    interface UplynkPingErrorEvent {
                                                                                                                                                                                                                                                                                                                                                                                                                                                        date: Date;
                                                                                                                                                                                                                                                                                                                                                                                                                                                        error: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                        type: "pingerror";
                                                                                                                                                                                                                                                                                                                                                                                                                                                    }

                                                                                                                                                                                                                                                                                                                                                                                                                                                    Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Event<"pingerror">
                                                                                                                                                                                                                                                                                                                                                                                                                                                      • UplynkPingErrorEvent
                                                                                                                                                                                                                                                                                                                                                                                                                                                    Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                    Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                    Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                    date: Date

                                                                                                                                                                                                                                                                                                                                                                                                                                                    The creation date of the event.

                                                                                                                                                                                                                                                                                                                                                                                                                                                    diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/UplynkPingResponseEvent.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/UplynkPingResponseEvent.html index ad3927461e4f..6ace1175d333 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/UplynkPingResponseEvent.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/UplynkPingResponseEvent.html @@ -1,5 +1,5 @@ UplynkPingResponseEvent | THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                                                                                                                                    THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                      Interface UplynkPingResponseEvent

                                                                                                                                                                                                                                                                                                                                                                                                                                                      Fired when a Ping response is received.

                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                      interface UplynkPingResponseEvent {
                                                                                                                                                                                                                                                                                                                                                                                                                                                          date: Date;
                                                                                                                                                                                                                                                                                                                                                                                                                                                          response: UplynkPingResponse;
                                                                                                                                                                                                                                                                                                                                                                                                                                                          type: "pingresponse";
                                                                                                                                                                                                                                                                                                                                                                                                                                                      }

                                                                                                                                                                                                                                                                                                                                                                                                                                                      Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Event<"pingresponse">
                                                                                                                                                                                                                                                                                                                                                                                                                                                        • UplynkPingResponseEvent
                                                                                                                                                                                                                                                                                                                                                                                                                                                      Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                      interface UplynkPingResponseEvent {
                                                                                                                                                                                                                                                                                                                                                                                                                                                          date: Date;
                                                                                                                                                                                                                                                                                                                                                                                                                                                          response: UplynkPingResponse;
                                                                                                                                                                                                                                                                                                                                                                                                                                                          type: "pingresponse";
                                                                                                                                                                                                                                                                                                                                                                                                                                                      }

                                                                                                                                                                                                                                                                                                                                                                                                                                                      Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Event<"pingresponse">
                                                                                                                                                                                                                                                                                                                                                                                                                                                        • UplynkPingResponseEvent
                                                                                                                                                                                                                                                                                                                                                                                                                                                      Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                      date: Date

                                                                                                                                                                                                                                                                                                                                                                                                                                                      The creation date of the event.

                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/UplynkPreplayBaseResponse.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/UplynkPreplayBaseResponse.html index 7c65cf11282d..6e4522b8664f 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/UplynkPreplayBaseResponse.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/UplynkPreplayBaseResponse.html @@ -1,5 +1,5 @@ UplynkPreplayBaseResponse | THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                                                                                                                                      THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                        Interface UplynkPreplayBaseResponse

                                                                                                                                                                                                                                                                                                                                                                                                                                                        Represents an Uplynk Preplay base response.

                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                        interface UplynkPreplayBaseResponse {
                                                                                                                                                                                                                                                                                                                                                                                                                                                            drm?: UplynkResponseDrm;
                                                                                                                                                                                                                                                                                                                                                                                                                                                            playURL: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                            prefix: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                            sid: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                            type: UplynkPreplayResponseType;
                                                                                                                                                                                                                                                                                                                                                                                                                                                        }

                                                                                                                                                                                                                                                                                                                                                                                                                                                        Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                                                                                        Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                        Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                        interface UplynkPreplayBaseResponse {
                                                                                                                                                                                                                                                                                                                                                                                                                                                            drm?: UplynkResponseDrm;
                                                                                                                                                                                                                                                                                                                                                                                                                                                            playURL: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                            prefix: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                            sid: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                            type: UplynkPreplayResponseType;
                                                                                                                                                                                                                                                                                                                                                                                                                                                        }

                                                                                                                                                                                                                                                                                                                                                                                                                                                        Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                                                                                        Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                        Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                        drm? playURL prefix sid diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/UplynkPreplayLiveResponse.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/UplynkPreplayLiveResponse.html index b7481f988ecd..519ba349237e 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/UplynkPreplayLiveResponse.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/UplynkPreplayLiveResponse.html @@ -1,5 +1,5 @@ UplynkPreplayLiveResponse | THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                                                                                                                                        THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                          Interface UplynkPreplayLiveResponse

                                                                                                                                                                                                                                                                                                                                                                                                                                                          Represents an Uplynk Preplay response for live assets.

                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                          interface UplynkPreplayLiveResponse {
                                                                                                                                                                                                                                                                                                                                                                                                                                                              drm?: UplynkResponseDrm;
                                                                                                                                                                                                                                                                                                                                                                                                                                                              playURL: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                              prefix: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                              sid: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                              type: "live";
                                                                                                                                                                                                                                                                                                                                                                                                                                                          }

                                                                                                                                                                                                                                                                                                                                                                                                                                                          Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                                                                                          Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                          interface UplynkPreplayLiveResponse {
                                                                                                                                                                                                                                                                                                                                                                                                                                                              drm?: UplynkResponseDrm;
                                                                                                                                                                                                                                                                                                                                                                                                                                                              playURL: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                              prefix: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                              sid: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                              type: "live";
                                                                                                                                                                                                                                                                                                                                                                                                                                                          }

                                                                                                                                                                                                                                                                                                                                                                                                                                                          Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                                                                                          Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                          drm? playURL prefix sid diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/UplynkPreplayResponseEvent.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/UplynkPreplayResponseEvent.html index f40da44d2c14..7f559037c4b3 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/UplynkPreplayResponseEvent.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/UplynkPreplayResponseEvent.html @@ -1,5 +1,5 @@ UplynkPreplayResponseEvent | THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                                                                                                                                          THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                            Interface UplynkPreplayResponseEvent

                                                                                                                                                                                                                                                                                                                                                                                                                                                            Fired when a Preplay response is received.

                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                            interface UplynkPreplayResponseEvent {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                date: Date;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                response: UplynkPreplayResponse;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                type: "preplayresponse";
                                                                                                                                                                                                                                                                                                                                                                                                                                                            }

                                                                                                                                                                                                                                                                                                                                                                                                                                                            Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Event<"preplayresponse">
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • UplynkPreplayResponseEvent
                                                                                                                                                                                                                                                                                                                                                                                                                                                            Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                            Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                            interface UplynkPreplayResponseEvent {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                date: Date;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                response: UplynkPreplayResponse;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                type: "preplayresponse";
                                                                                                                                                                                                                                                                                                                                                                                                                                                            }

                                                                                                                                                                                                                                                                                                                                                                                                                                                            Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Event<"preplayresponse">
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • UplynkPreplayResponseEvent
                                                                                                                                                                                                                                                                                                                                                                                                                                                            Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                            Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                            Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                            date: Date

                                                                                                                                                                                                                                                                                                                                                                                                                                                            The creation date of the event.

                                                                                                                                                                                                                                                                                                                                                                                                                                                            diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/UplynkPreplayVodResponse.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/UplynkPreplayVodResponse.html index d75182745824..834bfbd6051b 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/UplynkPreplayVodResponse.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/UplynkPreplayVodResponse.html @@ -1,5 +1,5 @@ UplynkPreplayVodResponse | THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                                                                                                                                            THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Interface UplynkPreplayVodResponse

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Represents an Uplynk Preplay response for VOD assets.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                              interface UplynkPreplayVodResponse {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ads: UplynkResponseVodAds;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  drm?: UplynkResponseDrm;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  interstitialURL: undefined | null | string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  playURL: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  prefix: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  sid: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  type: "vod";
                                                                                                                                                                                                                                                                                                                                                                                                                                                              }

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                              ads +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              interface UplynkPreplayVodResponse {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ads: UplynkResponseVodAds;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  drm?: UplynkResponseDrm;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  interstitialURL: undefined | null | string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  playURL: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  prefix: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  sid: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  type: "vod";
                                                                                                                                                                                                                                                                                                                                                                                                                                                              }

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                              ads drm? interstitialURL playURL diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/UplynkRemoveAdBreakEvent.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/UplynkRemoveAdBreakEvent.html index 4f340212245e..0701845435f2 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/UplynkRemoveAdBreakEvent.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/UplynkRemoveAdBreakEvent.html @@ -1,5 +1,5 @@ UplynkRemoveAdBreakEvent | THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                                                                                                                                              THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                Interface UplynkRemoveAdBreakEvent

                                                                                                                                                                                                                                                                                                                                                                                                                                                                Fired when the ad break is removed.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                interface UplynkRemoveAdBreakEvent {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    adBreak: UplynkAdBreak;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    date: Date;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    type: "removeadbreak";
                                                                                                                                                                                                                                                                                                                                                                                                                                                                }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Event<"removeadbreak">
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • UplynkRemoveAdBreakEvent
                                                                                                                                                                                                                                                                                                                                                                                                                                                                Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                interface UplynkRemoveAdBreakEvent {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    adBreak: UplynkAdBreak;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    date: Date;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    type: "removeadbreak";
                                                                                                                                                                                                                                                                                                                                                                                                                                                                }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Event<"removeadbreak">
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • UplynkRemoveAdBreakEvent
                                                                                                                                                                                                                                                                                                                                                                                                                                                                Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                adBreak: UplynkAdBreak

                                                                                                                                                                                                                                                                                                                                                                                                                                                                The ad break which has been removed.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/UplynkRemoveAdEvent.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/UplynkRemoveAdEvent.html index a8ce02e1cd87..834a44c23870 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/UplynkRemoveAdEvent.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/UplynkRemoveAdEvent.html @@ -1,5 +1,5 @@ UplynkRemoveAdEvent | THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                                                                                                                                                THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Interface UplynkRemoveAdEvent

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Fired when the ad is removed.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  interface UplynkRemoveAdEvent {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ad: UplynkAd;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      date: Date;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      type: "removead";
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Event<"removead">
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • UplynkRemoveAdEvent
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ad +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  interface UplynkRemoveAdEvent {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ad: UplynkAd;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      date: Date;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      type: "removead";
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Event<"removead">
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • UplynkRemoveAdEvent
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  date: Date

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The creation date of the event.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/UplynkRemoveAssetEvent.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/UplynkRemoveAssetEvent.html index 776c2cd8934a..5fcd2ffbfcc2 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/UplynkRemoveAssetEvent.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/UplynkRemoveAssetEvent.html @@ -1,5 +1,5 @@ UplynkRemoveAssetEvent | THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Interface UplynkRemoveAssetEvent

                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Fired when an asset is removed.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    interface UplynkRemoveAssetEvent {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        asset: UplynkAsset;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        date: Date;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        type: "removeasset";
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Event<"removeasset">
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • UplynkRemoveAssetEvent
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                    interface UplynkRemoveAssetEvent {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        asset: UplynkAsset;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        date: Date;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        type: "removeasset";
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Event<"removeasset">
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • UplynkRemoveAssetEvent
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The asset which has been removed.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                    diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/UplynkSource.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/UplynkSource.html index 6d8bd56b6e11..722ff5b67c35 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/UplynkSource.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/UplynkSource.html @@ -1,5 +1,5 @@ UplynkSource | THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Interface UplynkSource

                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Represents a media resource which is found on the Uplynk Platform.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      interface UplynkSource {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          abr?: SourceAbrConfiguration;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          assetInfo?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          assetType?: UplynkAssetType;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          contentProtected?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          crossOrigin?: CrossOriginSetting;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          dash?: DashPlaybackConfiguration;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          hls?: HlsPlaybackConfiguration;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          hlsDateRange?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          id: string | string[] | UplynkExternalId;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ignoreEmbeddedTextTrackTypes?: TextTrackType[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          integration: "uplynk";
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          latencyConfiguration?: SourceLatencyConfiguration;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          lcevc?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          liveOffset?: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          lowLatency?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ping?: UplynkPingConfiguration;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          playbackUrlParameters?: Record<string, string>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          prefix?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          preplayParameters?: Record<string, string> | [string, string][];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          seamlessSwitchStrategy?: SeamlessSwitchStrategy;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          timeServer?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          useCredentials?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          useManagedMediaSource?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          useNativePlayback?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                      interface UplynkSource {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          abr?: SourceAbrConfiguration;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          assetInfo?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          assetType?: UplynkAssetType;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          contentProtected?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          crossOrigin?: CrossOriginSetting;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          dash?: DashPlaybackConfiguration;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          hls?: HlsPlaybackConfiguration;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          hlsDateRange?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          id: string | string[] | UplynkExternalId;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ignoreEmbeddedTextTrackTypes?: TextTrackType[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          integration: "uplynk";
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          latencyConfiguration?: SourceLatencyConfiguration;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          lcevc?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          liveOffset?: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          lowLatency?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ping?: UplynkPingConfiguration;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          playbackUrlParameters?: Record<string, string>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          prefix?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          preplayParameters?: Record<string, string> | [string, string][];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          seamlessSwitchStrategy?: SeamlessSwitchStrategy;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          timeServer?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          useCredentials?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          useManagedMediaSource?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          useNativePlayback?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                      abr? assetInfo? assetType? contentProtected? diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/UplynkUpdateAdBreakEvent.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/UplynkUpdateAdBreakEvent.html index 4f7260403bb8..4e024b5070f8 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/UplynkUpdateAdBreakEvent.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/UplynkUpdateAdBreakEvent.html @@ -1,5 +1,5 @@ UplynkUpdateAdBreakEvent | THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Interface UplynkUpdateAdBreakEvent

                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Fired when the ad break is updated.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        interface UplynkUpdateAdBreakEvent {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            adBreak: UplynkAdBreak;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            date: Date;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            type: "updateadbreak";
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Event<"updateadbreak">
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • UplynkUpdateAdBreakEvent
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                        interface UplynkUpdateAdBreakEvent {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            adBreak: UplynkAdBreak;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            date: Date;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            type: "updateadbreak";
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Event<"updateadbreak">
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • UplynkUpdateAdBreakEvent
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                        adBreak: UplynkAdBreak

                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The ad break which has been updated.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                        diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/VR.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/VR.html index 37c6cb229bcd..3a011fd6fb19 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/VR.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/VR.html @@ -8,7 +8,7 @@
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        const playerIframe = document.querySelector('iframe');
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        window.addEventListener('devicemotion', function (event) {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        playerIframe.contentWindow.postMessage({
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        type : 'devicemotion',
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        deviceMotionEvent : {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        acceleration : event.acceleration,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        accelerationIncludingGravity : event.accelerationIncludingGravity,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        interval : event.interval,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        rotationRate : event.rotationRate,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        timeStamp : event.timeStamp
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        }, '*');
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        });
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        interface VR {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            canPresentVR: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            direction: VRDirection;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            state: VRState;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            stereo: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            useDeviceMotionControls: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            verticalFOV: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            addEventListener<TType extends keyof VREventMap>(
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                type: TType | readonly TType[],
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                listener: EventListener<VREventMap[TType]>,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ): void;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            removeEventListener<TType extends keyof VREventMap>(
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                type: TType | readonly TType[],
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                listener: EventListener<VREventMap[TType]>,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ): void;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                        interface VR {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            canPresentVR: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            direction: VRDirection;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            state: VRState;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            stereo: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            useDeviceMotionControls: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            verticalFOV: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            addEventListener<TType extends keyof VREventMap>(
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                type: TType | readonly TType[],
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                listener: EventListener<VREventMap[TType]>,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ): void;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            removeEventListener<TType extends keyof VREventMap>(
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                type: TType | readonly TType[],
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                listener: EventListener<VREventMap[TType]>,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ): void;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                        canPresentVR direction state stereo diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/VendorCast.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/VendorCast.html index e399ca9a394b..0839b1fdb628 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/VendorCast.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/VendorCast.html @@ -1,5 +1,5 @@ VendorCast | THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Interface VendorCast

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Common API for all cast integrations.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          interface VendorCast {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              casting: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              state: CastState;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              addEventListener<TType extends "statechange">(
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  type: TType | readonly TType[],
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  listener: EventListener<VendorCastEventMap[TType]>,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ): void;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              removeEventListener<TType extends "statechange">(
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  type: TType | readonly TType[],
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  listener: EventListener<VendorCastEventMap[TType]>,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ): void;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              start(): void;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              stop(): void;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          interface VendorCast {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              casting: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              state: CastState;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              addEventListener<TType extends "statechange">(
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  type: TType | readonly TType[],
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  listener: EventListener<VendorCastEventMap[TType]>,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ): void;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              removeEventListener<TType extends "statechange">(
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  type: TType | readonly TType[],
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  listener: EventListener<VendorCastEventMap[TType]>,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ): void;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              start(): void;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              stop(): void;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Methods

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          addEventListener removeEventListener diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/VendorCastEventMap.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/VendorCastEventMap.html index 35208312665c..b412f901a35c 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/VendorCastEventMap.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/VendorCastEventMap.html @@ -1,4 +1,4 @@ VendorCastEventMap | THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Interface VendorCastEventMap

                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The events fired by the common vendor APIs.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            interface VendorCastEventMap {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                statechange: CastStateChangeEvent;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                            interface VendorCastEventMap {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                statechange: CastStateChangeEvent;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Fired when the state changes.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                            diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/VerimatrixDRMConfiguration.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/VerimatrixDRMConfiguration.html index aff3b7b1266f..e753562c4c68 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/VerimatrixDRMConfiguration.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/VerimatrixDRMConfiguration.html @@ -2,7 +2,7 @@
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            const drmConfiguration = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            integration : 'verimatrix',
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            fairplay: {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            licenseAcquisitionURL: 'yourLicenseAcquisitionURL',
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            certificateURL: 'yourCertificateURL'
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            interface VerimatrixDRMConfiguration {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                aes128?: AES128KeySystemConfiguration;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                clearkey?: ClearkeyKeySystemConfiguration;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                fairplay?: FairPlayKeySystemConfiguration;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                integration: "verimatrix";
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                integrationParameters?: { [parameterName: string]: any };
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                playready?: PlayReadyKeySystemConfiguration;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                preferredKeySystems?: (KeySystemId | string & {})[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                queryParameters?: { [key: string]: any };
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                useOipfDrmAgent?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                widevine?: KeySystemConfiguration;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                            interface VerimatrixDRMConfiguration {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                aes128?: AES128KeySystemConfiguration;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                clearkey?: ClearkeyKeySystemConfiguration;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                fairplay?: FairPlayKeySystemConfiguration;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                integration: "verimatrix";
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                integrationParameters?: { [parameterName: string]: any };
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                playready?: PlayReadyKeySystemConfiguration;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                preferredKeySystems?: (KeySystemId | string & {})[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                queryParameters?: { [key: string]: any };
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                useOipfDrmAgent?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                widevine?: KeySystemConfiguration;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                            aes128? clearkey? fairplay? integration diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/VideoQuality.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/VideoQuality.html index 65ba05002eb7..b18b008ddba6 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/VideoQuality.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/VideoQuality.html @@ -1,5 +1,5 @@ VideoQuality | THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Interface VideoQuality

                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Represents a quality of a video track.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              interface VideoQuality {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  available: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  averageBandwidth?: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  bandwidth: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  codecs: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  firstFrame: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  frameRate: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  height: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  id: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  label: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  name: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  score: undefined | number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  uid: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  width: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  addEventListener<TType extends "update">(
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      type: TType | readonly TType[],
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      listener: EventListener<QualityEventMap[TType]>,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ): void;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  removeEventListener<TType extends "update">(
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      type: TType | readonly TType[],
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      listener: EventListener<QualityEventMap[TType]>,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ): void;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                              interface VideoQuality {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  available: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  averageBandwidth?: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  bandwidth: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  codecs: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  firstFrame: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  frameRate: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  height: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  id: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  label: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  name: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  score: undefined | number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  uid: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  width: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  addEventListener<TType extends "update">(
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      type: TType | readonly TType[],
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      listener: EventListener<QualityEventMap[TType]>,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ): void;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  removeEventListener<TType extends "update">(
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      type: TType | readonly TType[],
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      listener: EventListener<QualityEventMap[TType]>,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ): void;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                              available averageBandwidth? bandwidth codecs diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ViewChangeEvent.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ViewChangeEvent.html index 03da7c348607..5aebab3bc869 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ViewChangeEvent.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ViewChangeEvent.html @@ -1,5 +1,5 @@ ViewChangeEvent | THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Interface ViewChangeEvent

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Fired when a view's enabled changes.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                interface ViewChangeEvent {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    date: Date;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    type: "viewchange";
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    view: View;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Event<"viewchange">
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • ViewChangeEvent
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                interface ViewChangeEvent {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    date: Date;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    type: "viewchange";
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    view: View;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Event<"viewchange">
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • ViewChangeEvent
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                date: Date

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The creation date of the event.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ViewPositionChangeEvent.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ViewPositionChangeEvent.html index 3c539fd62567..6dd9b1247b72 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ViewPositionChangeEvent.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/ViewPositionChangeEvent.html @@ -1,5 +1,5 @@ ViewPositionChangeEvent | THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Interface ViewPositionChangeEvent

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Fired when a View has swapped positions in the list.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  interface ViewPositionChangeEvent {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      date: Date;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      newPosition: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      oldPosition: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      type: "viewpositionchange";
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Event<"viewpositionchange">
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • ViewPositionChangeEvent
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  interface ViewPositionChangeEvent {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      date: Date;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      newPosition: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      oldPosition: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      type: "viewpositionchange";
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Event<"viewpositionchange">
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • ViewPositionChangeEvent
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  date newPosition oldPosition type diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/VimondDRMConfiguration.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/VimondDRMConfiguration.html index 4915e3037e2d..063df19ecc2a 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/VimondDRMConfiguration.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/VimondDRMConfiguration.html @@ -1,5 +1,5 @@ VimondDRMConfiguration | THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Interface VimondDRMConfiguration

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Describes the configuration of the Vimond DRM integration.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    interface VimondDRMConfiguration {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        aes128?: AES128KeySystemConfiguration;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        clearkey?: ClearkeyKeySystemConfiguration;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        fairplay?: FairPlayKeySystemConfiguration;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        integration: "vimond";
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        integrationParameters?: { [parameterName: string]: any };
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        playready?: PlayReadyKeySystemConfiguration;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        preferredKeySystems?: (KeySystemId | string & {})[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        queryParameters?: { [key: string]: any };
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        useOipfDrmAgent?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        widevine?: KeySystemConfiguration;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    interface VimondDRMConfiguration {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        aes128?: AES128KeySystemConfiguration;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        clearkey?: ClearkeyKeySystemConfiguration;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        fairplay?: FairPlayKeySystemConfiguration;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        integration: "vimond";
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        integrationParameters?: { [parameterName: string]: any };
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        playready?: PlayReadyKeySystemConfiguration;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        preferredKeySystems?: (KeySystemId | string & {})[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        queryParameters?: { [key: string]: any };
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        useOipfDrmAgent?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        widevine?: KeySystemConfiguration;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    aes128? clearkey? fairplay? integration diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/VolumeChangeEvent.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/VolumeChangeEvent.html index e770941190f0..981d47f5c22d 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/VolumeChangeEvent.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/VolumeChangeEvent.html @@ -1,5 +1,5 @@ VolumeChangeEvent | THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Interface VolumeChangeEvent

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Fired when ChromelessPlayer.volume changes.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      interface VolumeChangeEvent {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          date: Date;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          type: "volumechange";
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          volume: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Event<"volumechange">
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • VolumeChangeEvent
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      interface VolumeChangeEvent {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          date: Date;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          type: "volumechange";
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          volume: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Event<"volumechange">
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • VolumeChangeEvent
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      date: Date

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The creation date of the event.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/VudrmDRMConfiguration.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/VudrmDRMConfiguration.html index 869186a544ad..b0165316792a 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/VudrmDRMConfiguration.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/VudrmDRMConfiguration.html @@ -2,7 +2,7 @@
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      var drmConfiguration = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      integration : 'vudrm',
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      playready: {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      licenseAcquisitionURL: 'yourVudrmPlayReadyLicenseAcquisitionURL'
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      },
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      widevine: {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      licenseAcquisitionURL: 'yourVudrmWidevineLicenseAcquisitionURL'
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      },
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      token: 'PEtleU9T...blhNTD4='
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      interface VudrmDRMConfiguration {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          aes128?: AES128KeySystemConfiguration;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          clearkey?: ClearkeyKeySystemConfiguration;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          fairplay?: FairPlayKeySystemConfiguration;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          integration: "vudrm";
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          integrationParameters?: { [parameterName: string]: any };
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          keyId?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          playready?: PlayReadyKeySystemConfiguration;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          preferredKeySystems?: (KeySystemId | string & {})[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          queryParameters?: { [key: string]: any };
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          token: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          useOipfDrmAgent?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          widevine?: KeySystemConfiguration;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      interface VudrmDRMConfiguration {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          aes128?: AES128KeySystemConfiguration;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          clearkey?: ClearkeyKeySystemConfiguration;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          fairplay?: FairPlayKeySystemConfiguration;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          integration: "vudrm";
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          integrationParameters?: { [parameterName: string]: any };
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          keyId?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          playready?: PlayReadyKeySystemConfiguration;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          preferredKeySystems?: (KeySystemId | string & {})[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          queryParameters?: { [key: string]: any };
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          token: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          useOipfDrmAgent?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          widevine?: KeySystemConfiguration;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      aes128? clearkey? fairplay? integration diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/WaitingEvent.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/WaitingEvent.html index 4135e3722a72..47dfbb2a1544 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/WaitingEvent.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/WaitingEvent.html @@ -1,5 +1,5 @@ WaitingEvent | THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Interface WaitingEvent

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Fired when playback has stopped because the next frame is not available, but the player expects that frame to become available in due course.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        interface WaitingEvent {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            currentTime: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            date: Date;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            type: "waiting";
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Event<"waiting">
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • WaitingEvent
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        interface WaitingEvent {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            currentTime: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            date: Date;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            type: "waiting";
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Event<"waiting">
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • WaitingEvent
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        currentTime: number

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The player's current time.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/WebVTTCue.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/WebVTTCue.html index 783c089b79a0..b58662a8c2d2 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/WebVTTCue.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/WebVTTCue.html @@ -1,5 +1,5 @@ WebVTTCue | THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Interface WebVTTCue

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Represents a cue of a WebVTT text track.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          interface WebVTTCue {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              align: VTTAlignSetting;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              content: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              endTime: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              id: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              line: VTTLine;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              lineAlign: VTTLineAlignSetting;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              position: VTTPosition;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              positionAlign: VTTPositionAlignSetting;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              region: null | WebVTTRegion;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              size: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              snapToLines: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              startTime: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              text: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              track: TextTrack;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              uid: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              vertical: VTTDirectionSetting;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              addEventListener<TType extends keyof TextTrackCueEventMap>(
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  type: TType | readonly TType[],
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  listener: EventListener<TextTrackCueEventMap[TType]>,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ): void;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              removeEventListener<TType extends keyof TextTrackCueEventMap>(
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  type: TType | readonly TType[],
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  listener: EventListener<TextTrackCueEventMap[TType]>,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ): void;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          interface WebVTTCue {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              align: VTTAlignSetting;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              content: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              endTime: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              id: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              line: VTTLine;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              lineAlign: VTTLineAlignSetting;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              position: VTTPosition;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              positionAlign: VTTPositionAlignSetting;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              region: null | WebVTTRegion;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              size: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              snapToLines: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              startTime: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              text: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              track: TextTrack;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              uid: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              vertical: VTTDirectionSetting;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              addEventListener<TType extends keyof TextTrackCueEventMap>(
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  type: TType | readonly TType[],
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  listener: EventListener<TextTrackCueEventMap[TType]>,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ): void;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              removeEventListener<TType extends keyof TextTrackCueEventMap>(
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  type: TType | readonly TType[],
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  listener: EventListener<TextTrackCueEventMap[TType]>,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ): void;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          align content endTime id diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/XstreamDRMConfiguration.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/XstreamDRMConfiguration.html index 24d7ae3b686b..a691641e8ff9 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/XstreamDRMConfiguration.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/XstreamDRMConfiguration.html @@ -2,7 +2,7 @@
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          const drmConfiguration = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          integration : 'xstream',
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          sessionId: 'yourSessionId',
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          streamId: 'yourStreamId'
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          fairplay: {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          licenseAcquisitionURL: 'yourLicenseAcquisitionURL'
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          certificateURL: 'yourCertificateAcquisitionURL'
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          },
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          interface XstreamDRMConfiguration {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              aes128?: AES128KeySystemConfiguration;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              clearkey?: ClearkeyKeySystemConfiguration;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              fairplay?: FairPlayKeySystemConfiguration;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              integration: "xstream";
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              integrationParameters?: { [parameterName: string]: any };
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              playready?: PlayReadyKeySystemConfiguration;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              preferredKeySystems?: (KeySystemId | string & {})[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              queryParameters?: { [key: string]: any };
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              sessionId: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              streamId: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ticketAcquisitionURL: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              useOipfDrmAgent?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              widevine?: KeySystemConfiguration;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          interface XstreamDRMConfiguration {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              aes128?: AES128KeySystemConfiguration;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              clearkey?: ClearkeyKeySystemConfiguration;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              fairplay?: FairPlayKeySystemConfiguration;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              integration: "xstream";
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              integrationParameters?: { [parameterName: string]: any };
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              playready?: PlayReadyKeySystemConfiguration;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              preferredKeySystems?: (KeySystemId | string & {})[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              queryParameters?: { [key: string]: any };
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              sessionId: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              streamId: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ticketAcquisitionURL: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              useOipfDrmAgent?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              widevine?: KeySystemConfiguration;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          aes128? clearkey? fairplay? integration diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/YouboraOptions.html b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/YouboraOptions.html index 4e2bc35660c0..f760121dbc61 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/YouboraOptions.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/interfaces/YouboraOptions.html @@ -10,7 +10,7 @@
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          - content.isLive
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          - content.rendition

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Available since v2.21.2.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          interface YouboraOptions {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              integration: "youbora";
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [key: string]: string | { [key: string]: string };
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Indexable

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • [key: string]: string | { [key: string]: string }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            An entry which contains a Youbora option with associated value.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          interface YouboraOptions {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              integration: "youbora";
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [key: string]: string | { [key: string]: string };
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Indexable

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • [key: string]: string | { [key: string]: string }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            An entry which contains a Youbora option with associated value.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          integration: "youbora"

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The identifier of the analytics integration.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/sitemap.xml b/theoplayer/static/theoplayer/v10/api-reference/web/sitemap.xml index 481433445c9b..1255de7d0066 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/sitemap.xml +++ b/theoplayer/static/theoplayer/v10/api-reference/web/sitemap.xml @@ -2,2102 +2,2122 @@ https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/index.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/hierarchy.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/enums/ErrorCategory.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/enums/ErrorCode.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/classes/ChromelessPlayer.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/classes/MultiViewPlayer.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/classes/Player.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/ABRConfiguration.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/ABRMetadata.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/ABRStrategyConfiguration.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/Ad.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/AdBreak.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/AdBreakEvent.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/AdBreakInit.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/AdBreakInterstitial.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/AdBufferingEvent.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/AddCachingTaskEvent.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/AdDescription.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/AddTrackEvent.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/AddViewEvent.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/AdEvent.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/AdInit.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/AdMetadataEvent.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/Ads.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/AdsConfiguration.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/AdsEventMap.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/AdSkipEvent.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/AdsManagerLoadedEvent.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/AdSource.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/AES128KeySystemConfiguration.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/AgamaConfiguration.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/AgamaPlayerConfiguration.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/AgamaSourceConfiguration.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/AirPlay.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/AnalyticsDescription.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/AudioQuality.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/AxinomDRMConfiguration.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/AzureDRMConfiguration.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/Base64Util.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/BaseSource.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/BoundaryC3.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/BoundaryC7.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/BoundaryHalftime.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/BoundaryInfo.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/BufferedSegments.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/Cache.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/CacheEventMap.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/CachingTask.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/CachingTaskEventMap.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/CachingTaskLicense.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/CachingTaskList.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/CachingTaskListEventMap.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/CachingTaskParameters.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/CanPlayEvent.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/CanPlayThroughEvent.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/Canvas.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/Cast.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/CastConfiguration.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/CastEventMap.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/CastStateChangeEvent.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/CertificateResponse.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/ChannelDrmConfigResponse.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/ChannelMillicastSource.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/Chromecast.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/ChromecastConfiguration.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/ChromecastConnectionCallback.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/ChromecastError.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/ChromecastErrorEvent.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/ChromecastEventMap.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/ChromecastMetadataDescription.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/ChromecastMetadataImage.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/ClearkeyDecryptionKey.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/ClearkeyKeySystemConfiguration.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/Clip.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/ClipEventMap.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/ClosedCaptionFile.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/ComcastDRMConfiguration.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/CommonUtils.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/CompanionAd.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/ConaxDRMConfiguration.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/ContentProtectionError.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/ContentProtectionErrorEvent.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/ContentProtectionIntegration.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/ContentProtectionIntegrationFactory.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/ContentProtectionRequest.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/ContentProtectionResponse.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z + + + https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/ContentSteeringErrorEvent.html + 2026-01-15T14:23:34.790Z + + + https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/ContentSteeringLocationChangeEvent.html + 2026-01-15T14:23:34.790Z + + + https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/ContentSteeringStartEvent.html + 2026-01-15T14:23:34.790Z + + + https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/ContentSteeringStopEvent.html + 2026-01-15T14:23:34.790Z + + + https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/ContentSteeringUpdateEvent.html + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/CsaiAdDescription.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/CurrentSourceChangeEvent.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/CustomTextTrackMap.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/CustomTextTrackOptions.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/CustomWebVTTTextTrack.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/DashPlaybackConfiguration.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/DateRangeCue.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/DeviceBasedTitaniumDRMConfiguration.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/DimensionChangeEvent.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/DistributionLoadStartEvent.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/DistributionOfflineEvent.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/DRMConfiguration.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/DRMTodayDRMConfiguration.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/DurationChangeEvent.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/EmptiedEvent.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/EmsgCue.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/EncryptedEvent.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/EndedEvent.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/Endpoint.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/EndpointLoadedEvent.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/EnterBadNetworkModeEvent.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/ErrorEvent.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/Event.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/EventDispatcher.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/EventedList.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/EventStreamCue.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/ExitBadNetworkModeEvent.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/ExpressPlayDRMConfiguration.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/EzdrmDRMConfiguration.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/FairPlayKeySystemConfiguration.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/FreeWheelAdDescription.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/FreeWheelCue.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/FullscreenOptions.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/Geo.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/GlobalCast.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/GlobalChromecast.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/GoogleDAI.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/GoogleDAIConfiguration.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/GoogleDAILiveConfiguration.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/GoogleDAITypedSource.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/GoogleDAIVodConfiguration.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/GoogleImaAd.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/GoogleImaConfiguration.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/HespApi.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/HespApiEventMap.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/HespSourceConfiguration.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/HespTypedSource.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/HlsPlaybackConfiguration.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/HTTPHeaders.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/ID3AttachedPicture.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/ID3BaseFrame.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/ID3Comments.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/ID3CommercialFrame.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/ID3Cue.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/ID3GenericEncapsulatedObject.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/ID3InvolvedPeopleList.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/ID3PositionSynchronisationFrame.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/ID3PrivateFrame.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/ID3SynchronizedLyricsText.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/ID3TermsOfUse.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/ID3Text.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/ID3UniqueFileIdentifier.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/ID3Unknown.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/ID3UnsynchronisedLyricsTextTranscription.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/ID3UrlLink.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/ID3UserDefinedText.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/ID3UserDefinedUrlLink.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/ID3Yospace.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/IMAAdDescription.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/IntentToFallbackEvent.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/InterceptableRequest.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/InterceptableResponse.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/Interstitial.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/InterstitialEvent.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/IrdetoDRMConfiguration.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/KeyOSDRMConfiguration.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/KeyOSFairplayKeySystemConfiguration.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/KeyOSKeySystemConfiguration.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/KeySystemConfiguration.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/LatencyConfiguration.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/LatencyManager.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/LayoutChangeEvent.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/LicenseRequest.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/LicenseResponse.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/LinearAd.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/List.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/LoadedDataEvent.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/LoadedMetadataEvent.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/ManifestErrorEvent.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/MeasurableNetworkEstimator.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/MediaError.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/MediaFile.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/MediaMelonConfiguration.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/MediaTailorSource.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/MediaTrack.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/MediaTrackEventMap.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/MediaTrackList.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/MetadataDescription.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/Metrics.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/Millicast.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/MillicastEventMap.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/MillicastMetadataCue.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/MillicastSource.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/MillicastStatsEvent.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/MoatConfiguration.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/MultiViewPlayerEventMap.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/Network.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/NetworkEstimator.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/NetworkEstimatorController.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/NetworkEventMap.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/NetworkInterceptorController.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/NonLinearAd.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/OverlayInterstitial.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/OverlayPosition.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/OverlaySize.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/PauseEvent.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/PiPConfiguration.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/PlayerConfiguration.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/PlayerEventMap.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/PlayerList.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/PlayEvent.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/PlayingEvent.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/PlayoutDelay.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/PlayReadyKeySystemConfiguration.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/PlayStation5Configuration.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/Presentation.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/PresentationEventMap.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/PresentationModeChangeEvent.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/ProgressEvent.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/Quality.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/QualityEvent.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/QualityEventMap.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/QualityList.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/RateChangeEvent.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/ReadyStateChangeEvent.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/RelatedContent.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/RelatedContentEventMap.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/RelatedContentSource.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/RemoveCachingTaskEvent.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/RemoveTrackEvent.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/RemoveViewEvent.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/Representation.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/RepresentationChangeEvent.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/Request.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/RequestInit.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/RequestMeasurer.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/ResponseInit.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/RetryConfiguration.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/SeekedEvent.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/SeekingEvent.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/SegmentErrorEvent.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/ServerSideAdInsertionConfiguration.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/ServerSideAdIntegrationController.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/ServerSideAdIntegrationHandler.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/SmartSightConfiguration.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/SocialSharing.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/SocialSharingItem.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/SourceAbrConfiguration.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/SourceChangeEvent.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/SourceConfiguration.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/SourceDescription.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/SourceLatencyConfiguration.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/SpotXAdDescription.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/SpotxData.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/SpotxQueryParameter.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/StreamOneConfiguration.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/TargetQualityChangedEvent.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/TextTrack.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/TextTrackAddCueEvent.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/TextTrackCue.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/TextTrackCueChangeEvent.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/TextTrackCueEnterEvent.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/TextTrackCueEventMap.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/TextTrackCueExitEvent.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/TextTrackCueList.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/TextTrackCueUpdateEvent.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/TextTrackDescription.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/TextTrackEnterCueEvent.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/TextTrackError.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/TextTrackErrorEvent.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/TextTrackEventMap.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/TextTrackExitCueEvent.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/TextTrackReadyStateChangeEvent.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/TextTrackRemoveCueEvent.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/TextTracksList.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/TextTrackStyle.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/TextTrackStyleEventMap.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/TextTrackTypeChangeEvent.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/TextTrackUpdateCueEvent.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/TheoAdDescription.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/TheoAds.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/TheoAdsEventsMap.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/TheoLiveApi.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/TheoLiveApiEventMap.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/TheoLiveConfiguration.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/TheoLivePublication.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/TheoLiveSource.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/THEOplayerError.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/ThumbnailResolution.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/TimeRanges.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/TimeUpdateEvent.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/TitaniumDRMConfiguration.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/TokenBasedTitaniumDRMConfiguration.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/Track.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/TrackChangeEvent.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/TrackEventMap.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/TrackList.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/TrackListEventMap.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/TrackUpdateEvent.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/TTMLCue.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/TTMLExtent.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/TypedSource.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/UIConfiguration.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/UIPlayerConfiguration.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/UIRelatedContent.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/UIRelatedContentEventMap.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/UniversalAdId.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/UpdateQualityEvent.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/Uplynk.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/UplynkAd.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/UplynkAdBeginEvent.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/UplynkAdBreak.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/UplynkAdBreakBeginEvent.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/UplynkAdBreakEndEvent.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/UplynkAdBreakEventMap.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/UplynkAdBreakList.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/UplynkAdBreakListEventMap.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/UplynkAdBreakSkipEvent.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/UplynkAdCompleteEvent.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/UplynkAddAdBreakEvent.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/UplynkAddAssetEvent.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/UplynkAdEndEvent.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/UplynkAdEventMap.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/UplynkAdFirstQuartileEvent.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/UplynkAdList.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/UplynkAdListEventMap.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/UplynkAdMidpointEvent.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/UplynkAds.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/UplynkAdThirdQuartileEvent.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/UplynkAsset.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/UplynkAssetEventMap.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/UplynkAssetInfoResponse.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/UplynkAssetInfoResponseEvent.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/UplynkAssetList.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/UplynkConfiguration.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/UplynkDRMConfiguration.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/UplynkEventMap.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/UplynkExternalId.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/UplynkPingConfiguration.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/UplynkPingErrorEvent.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/UplynkPingResponse.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/UplynkPingResponseEvent.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/UplynkPreplayBaseResponse.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/UplynkPreplayLiveResponse.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/UplynkPreplayResponseEvent.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/UplynkPreplayVodResponse.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/UplynkRemoveAdBreakEvent.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/UplynkRemoveAdEvent.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/UplynkRemoveAssetEvent.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/UplynkResponseDrm.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/UplynkResponseLiveAd.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/UplynkResponseLiveAdBreak.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/UplynkResponseLiveAds.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/UplynkResponseVodAd.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/UplynkResponseVodAdBreak.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/UplynkResponseVodAdBreakOffset.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/UplynkResponseVodAdPlaceholder.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/UplynkResponseVodAds.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/UplynkSource.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/UplynkUiConfiguration.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/UplynkUpdateAdBreakEvent.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/UpNextBar.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/UpNextManager.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/UpNextPanel.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/UpNextSource.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/UserActions.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/VastExtension.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/VendorCast.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/VendorCastEventMap.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/VerimatrixDRMConfiguration.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/VideoFrameCallbackMetadata.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/VideoQuality.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/View.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/ViewChangeEvent.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/ViewPositionChangeEvent.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/VimondDRMConfiguration.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/Visibility.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/VisibilityObserver.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/VolumeChangeEvent.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/VR.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/VRConfiguration.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/VRDirection.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/VREventMap.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/VudrmDRMConfiguration.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/WaitingEvent.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/WebAudio.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/WebRTCOptions.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/WebVTTCue.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/WebVTTRegion.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/XstreamDRMConfiguration.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/YouboraOptions.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/types/ABRStrategy.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/types/ABRStrategyType.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/types/AccessibilityRole.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/types/AdIntegrationKind.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/types/AdPreloadType.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/types/AdReadyState.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/types/AdSourceType.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/types/AdType.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/types/AgamaAnalyticsIntegrationID.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/types/AgamaLogLevelType.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/types/AgamaServiceName.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/types/AgamaStreamType.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/types/AnalyticsIntegrationID.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/types/AxinomIntegrationID.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/types/AzureIntegrationID.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/types/Boundary.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/types/BufferSource.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/types/CacheStatus.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/types/CacheTaskStatus.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/types/CastState.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/types/CertificateRequest.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/types/ChromecastErrorCode.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/types/ChromecastMetadataType.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/types/ComcastIntegrationID.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/types/ConaxIntegrationID.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/types/ContentProtectionErrorCode.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/types/ContentProtectionRequestSubType.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/types/CrossOriginSetting.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/types/CustomAdIntegrationKind.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/types/DAIAvailabilityType.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/types/DeliveryType.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/types/DirectionChangeEvent.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/types/DRMTodayIntegrationID.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/types/EdgeStyle.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/types/EventListener.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/types/EventMap.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/types/ExpressPlayIntegrationID.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/types/EzdrmIntegrationID.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/types/FreeWheelAdUnitType.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/types/GoogleDAISSAIIntegrationID.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/types/HespMediaType.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/types/HlsDiscontinuityAlignment.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/types/HTTPHeadersInit.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/types/ID3Frame.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/types/InterstitialType.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/types/IrdetoIntegrationID.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/types/JoinStrategy.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/types/KeyOSIntegrationID.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/types/KeySystemId.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/types/LicenseType.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/types/MaybeAsync.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/types/MediaErrorCode.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/types/MediaTrackType.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/types/MediaType.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/types/MoatAnalyticsIntegrationID.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/types/MultiViewPlayerLayout.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/types/MutedAutoplayConfiguration.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/types/NodeStyleVoidCallback.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/types/PiPPosition.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/types/PlayStation5PlayMode.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/types/PreloadType.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/types/PresentationMode.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/types/RelatedChangeEvent.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/types/RelatedHideEvent.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/types/RelatedShowEvent.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/types/RequestBody.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/types/RequestInterceptor.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/types/RequestLike.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/types/RequestMethod.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/types/RequestSubType.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/types/RequestType.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/types/ResponseBody.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/types/ResponseInterceptor.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/types/ResponseLike.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/types/ResponseType.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/types/SeamlessPeriodSwitchStrategy.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/types/SeamlessSwitchStrategy.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/types/ServerSideAdIntegrationFactory.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/types/SkippedAdStrategy.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/types/SmartSightIntegrationID.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/types/Source.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/types/SourceIntegrationId.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/types/Sources.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/types/SSAIIntegrationId.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/types/StateChangeEvent.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/types/StereoChangeEvent.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/types/StreamOneAnalyticsIntegrationID.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/types/StreamType.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/types/StringKeyOf.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/types/StylePropertyRecord.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/types/SupportedCustomTextTrackCueTypes.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/types/TextTrackErrorCode.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/types/TextTrackReadyState.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/types/TextTrackType.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/types/TheoAdsLayout.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/types/TheoAdsLayoutOverride.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/types/TitaniumIntegrationID.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/types/UILanguage.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/types/UplynkAssetId.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/types/UplynkAssetMovieRating.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/types/UplynkAssetTvRating.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/types/UplynkAssetType.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/types/UplynkIntegrationID.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/types/UplynkPreplayResponse.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/types/UplynkPreplayResponseType.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/types/VerimatrixIntegrationID.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/types/VideoFrameRequestCallback.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/types/VimondIntegrationID.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/types/VisibilityObserverCallback.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/types/VoidPromiseCallback.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/types/VPAIDMode.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/types/VRPanoramaMode.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/types/VRState.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/types/VRStereoMode.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/types/VTTAlignSetting.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/types/VTTDirectionSetting.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/types/VTTLine.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/types/VTTLineAlignSetting.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/types/VTTPosition.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/types/VTTPositionAlignSetting.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/types/VTTScrollSetting.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/types/VudrmIntegrationID.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/types/WaitUntilCallback.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/types/WidevineKeySystemConfiguration.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/types/XstreamIntegrationID.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/types/YospaceId.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/types/YouboraAnalyticsIntegrationID.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/variables/cache.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/variables/cast.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/variables/features.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/variables/players.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/variables/utils.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/variables/version.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/functions/registerContentProtectionIntegration.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/modules/ErrorCategory.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/functions/ErrorCategory.fromCode.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/modules/videojs.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web/interfaces/videojs.Player.html - 2025-12-19T13:47:09.722Z + 2026-01-15T14:23:34.790Z diff --git a/theoplayer/static/theoplayer/v10/api-reference/web/types/RequestType.html b/theoplayer/static/theoplayer/v10/api-reference/web/types/RequestType.html index b6677e21a95a..e6f799254bb6 100644 --- a/theoplayer/static/theoplayer/v10/api-reference/web/types/RequestType.html +++ b/theoplayer/static/theoplayer/v10/api-reference/web/types/RequestType.html @@ -1,6 +1,7 @@ -RequestType | THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Type Alias RequestType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            RequestType: "" | "manifest" | "segment" | "preload-hint" | "content-protection"

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The request's type, represented by a value from the following list: +RequestType | THEOplayer Web SDK

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            THEOplayer Web SDK
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Type Alias RequestType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              RequestType:
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  | ""
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  | "manifest"
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  | "segment"
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  | "preload-hint"
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  | "content-protection"
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  | "content-steering"

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The request's type, represented by a value from the following list:
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              - 'manifest'
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              - 'segment'
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              - 'preload-hint' -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              - 'content-protection'

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              - 'content-protection' +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              - 'content-steering'

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/theoplayer/version.txt b/theoplayer/version.txt index 1bcdaf5fec00..2a3262d8a948 100644 --- a/theoplayer/version.txt +++ b/theoplayer/version.txt @@ -1 +1 @@ -10.7.0 +10.8.0