diff --git a/theoplayer/changelog.md b/theoplayer/changelog.md index bcffbe11bb19..9e78961205b3 100644 --- a/theoplayer/changelog.md +++ b/theoplayer/changelog.md @@ -9,6 +9,14 @@ These are the release notes for THEOplayer 11.0.0 and higher. For older versions - [Version 5.x and 6.x](https://optiview.dolby.com/docs/theoplayer/v6/changelog/) - [Version 2.x, 3.x and 4.x](https://optiview.dolby.com/docs/theoplayer/v4/changelog/) +## 🚀 11.5.1 (2026/07/03) + +### iOS + +#### 🐛 Issues + +- Fixed an issue when playing cached sources where the player could switch to audio/video renditions that were not cached. + ## 🚀 11.5.0 (2026/06/16) ### General diff --git a/theoplayer/static/theoplayer/v11/api-reference/ios/Protocols/CachingTask.html b/theoplayer/static/theoplayer/v11/api-reference/ios/Protocols/CachingTask.html index a7f7c7d336ab..8c73fe85a52d 100644 --- a/theoplayer/static/theoplayer/v11/api-reference/ios/Protocols/CachingTask.html +++ b/theoplayer/static/theoplayer/v11/api-reference/ios/Protocols/CachingTask.html @@ -1079,6 +1079,11 @@

Declaration

The SourceDescription processed by this caching task.

+
+

Remark

+ Pass this as the player’s source object in order to play the cached content. Otherwise, the content will be played online. + +
diff --git a/theoplayer/static/theoplayer/v11/api-reference/ios/docsets/THEOplayerSDK.docset/Contents/Resources/Documents/Protocols/CachingTask.html b/theoplayer/static/theoplayer/v11/api-reference/ios/docsets/THEOplayerSDK.docset/Contents/Resources/Documents/Protocols/CachingTask.html index a7f7c7d336ab..8c73fe85a52d 100644 --- a/theoplayer/static/theoplayer/v11/api-reference/ios/docsets/THEOplayerSDK.docset/Contents/Resources/Documents/Protocols/CachingTask.html +++ b/theoplayer/static/theoplayer/v11/api-reference/ios/docsets/THEOplayerSDK.docset/Contents/Resources/Documents/Protocols/CachingTask.html @@ -1079,6 +1079,11 @@

Declaration

The SourceDescription processed by this caching task.

+
+

Remark

+ Pass this as the player’s source object in order to play the cached content. Otherwise, the content will be played online. + +
diff --git a/theoplayer/static/theoplayer/v11/api-reference/ios/undocumented.json b/theoplayer/static/theoplayer/v11/api-reference/ios/undocumented.json index d5a06cb675eb..470b91a7f98f 100644 --- a/theoplayer/static/theoplayer/v11/api-reference/ios/undocumented.json +++ b/theoplayer/static/theoplayer/v11/api-reference/ios/undocumented.json @@ -863,28 +863,28 @@ }, { "file": "/Users/distiller/project/ios/THEOplayer_SDK/Native/Models/Player/ContentPlayers/AVPlayerContentPlayerNative.swift", - "line": 1370, + "line": 1382, "symbol": "AVPlayerContentPlayerNative", "symbol_kind": "source.lang.swift.decl.extension", "warning": "undocumented" }, { "file": "/Users/distiller/project/ios/THEOplayer_SDK/Native/Models/Player/ContentPlayers/AVPlayerContentPlayerNative.swift", - "line": 1412, + "line": 1424, "symbol": "AVPlayerContentPlayerNative", "symbol_kind": "source.lang.swift.decl.extension", "warning": "undocumented" }, { "file": "/Users/distiller/project/ios/THEOplayer_SDK/Native/Models/Player/ContentPlayers/AVPlayerContentPlayerNative.swift", - "line": 1473, + "line": 1485, "symbol": "AVPlayerContentPlayerNative", "symbol_kind": "source.lang.swift.decl.extension", "warning": "undocumented" }, { "file": "/Users/distiller/project/ios/THEOplayer_SDK/Native/Models/Player/ContentPlayers/AVPlayerContentPlayerNative.swift", - "line": 1587, + "line": 1599, "symbol": "AVPlayerContentPlayerNative", "symbol_kind": "source.lang.swift.decl.extension", "warning": "undocumented" @@ -1150,56 +1150,56 @@ }, { "file": "/Users/distiller/project/ios/THEOplayer_SDK/iOS/API/Cache_API.swift", - "line": 279, + "line": 283, "symbol": "CachingTaskStatus.idle", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { "file": "/Users/distiller/project/ios/THEOplayer_SDK/iOS/API/Cache_API.swift", - "line": 280, + "line": 284, "symbol": "CachingTaskStatus.loading", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { "file": "/Users/distiller/project/ios/THEOplayer_SDK/iOS/API/Cache_API.swift", - "line": 281, + "line": 285, "symbol": "CachingTaskStatus.done", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { "file": "/Users/distiller/project/ios/THEOplayer_SDK/iOS/API/Cache_API.swift", - "line": 282, + "line": 286, "symbol": "CachingTaskStatus.error", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { "file": "/Users/distiller/project/ios/THEOplayer_SDK/iOS/API/Cache_API.swift", - "line": 283, + "line": 287, "symbol": "CachingTaskStatus.evicted", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { "file": "/Users/distiller/project/ios/THEOplayer_SDK/iOS/API/Cache_API.swift", - "line": 294, + "line": 298, "symbol": "CacheStatusIdleReason.notStarted", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { "file": "/Users/distiller/project/ios/THEOplayer_SDK/iOS/API/Cache_API.swift", - "line": 295, + "line": 299, "symbol": "CacheStatusIdleReason.paused", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { "file": "/Users/distiller/project/ios/THEOplayer_SDK/iOS/API/Cache_API.swift", - "line": 296, + "line": 300, "symbol": "CacheStatusIdleReason.lostNetwork", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" diff --git a/theoplayer/static/theoplayer/v11/api-reference/web/index.html b/theoplayer/static/theoplayer/v11/api-reference/web/index.html index 3cbc52022521..a5e4452f130c 100644 --- a/theoplayer/static/theoplayer/v11/api-reference/web/index.html +++ b/theoplayer/static/theoplayer/v11/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 11.5.0.

    +THEOplayer Web SDK
    THEOplayer Web SDK
      Preparing search index...

      THEOplayer Web SDK

      The API references for THEOplayer Web SDK version 11.5.1.

      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.

      diff --git a/theoplayer/static/theoplayer/v11/api-reference/web/sitemap.xml b/theoplayer/static/theoplayer/v11/api-reference/web/sitemap.xml index 08fd23e93ecc..25e463b18c00 100644 --- a/theoplayer/static/theoplayer/v11/api-reference/web/sitemap.xml +++ b/theoplayer/static/theoplayer/v11/api-reference/web/sitemap.xml @@ -2,2150 +2,2150 @@ https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/index.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/hierarchy.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/enums/ErrorCategory.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/enums/ErrorCode.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/classes/ChromelessPlayer.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/classes/MultiViewPlayer.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/classes/Player.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/ABRConfiguration.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/ABRMetadata.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/ABRStrategyConfiguration.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/Ad.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/AdBreak.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/AdBreakEvent.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/AdBreakInit.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/AdBreakInterstitial.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/AdBufferingEvent.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/AddCachingTaskEvent.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/AdDescription.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/AddTrackEvent.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/AddViewEvent.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/AdEvent.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/AdInit.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/AdMetadataEvent.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/Ads.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/AdsConfiguration.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/AdsEventMap.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/AdSkipEvent.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/AdsManagerLoadedEvent.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/AdSource.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/AES128KeySystemConfiguration.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/AgamaConfiguration.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/AgamaPlayerConfiguration.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/AgamaSourceConfiguration.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/AirPlay.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/AnalyticsDescription.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/AudioQuality.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/AxinomDRMConfiguration.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/AzureDRMConfiguration.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/Base64Util.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/BaseSource.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/BoundaryC3.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/BoundaryC7.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/BoundaryHalftime.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/BoundaryInfo.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/BufferedSegments.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/Cache.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/CacheEventMap.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/CachingTask.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/CachingTaskEventMap.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/CachingTaskLicense.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/CachingTaskList.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/CachingTaskListEventMap.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/CachingTaskParameters.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/CanPlayEvent.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/CanPlayThroughEvent.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/Canvas.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/Cast.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/CastConfiguration.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/CastEventMap.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/CastStateChangeEvent.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/CertificateResponse.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/ChannelDrmConfigResponse.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/ChannelDrmKeySystemResponse.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/ChannelMillicastSource.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/Chromecast.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/ChromecastConfiguration.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/ChromecastConnectionCallback.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/ChromecastError.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/ChromecastErrorEvent.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/ChromecastEventMap.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/ChromecastMetadataDescription.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/ChromecastMetadataImage.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/ClearkeyDecryptionKey.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/ClearkeyKeySystemConfiguration.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/Clip.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/ClipEventMap.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/ClosedCaptionFile.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/CmcdConfiguration.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/CmcdEndpointConfiguration.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/CmcdSourceConfiguration.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/ComcastDRMConfiguration.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/CommonUtils.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/CompanionAd.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/ConaxDRMConfiguration.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/ContentProtectionError.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/ContentProtectionErrorEvent.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/ContentProtectionIntegration.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/ContentProtectionIntegrationFactory.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/ContentProtectionRequest.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/ContentProtectionResponse.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/ContentSteeringErrorEvent.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/ContentSteeringLocationChangeEvent.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/ContentSteeringStartEvent.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/ContentSteeringStopEvent.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/ContentSteeringUpdateEvent.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/CsaiAdDescription.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/CurrentSourceChangeEvent.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/CustomTextTrackMap.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/CustomTextTrackOptions.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/CustomWebVTTTextTrack.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/DashPlaybackConfiguration.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/DateRangeCue.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/DeviceBasedTitaniumDRMConfiguration.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/DimensionChangeEvent.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/Distribution.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/DistributionLoadedEvent.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/DistributionLoadStartEvent.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/DistributionOfflineEvent.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/DRMConfiguration.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/DRMTodayDRMConfiguration.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/DurationChangeEvent.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/EmptiedEvent.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/EmsgCue.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/EncryptedEvent.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/EndedEvent.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/Endpoint.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/EndpointLoadedEvent.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/EnterBadNetworkModeEvent.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/ErrorEvent.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/Event.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/EventDispatcher.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/EventedList.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/EventStreamCue.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/ExitBadNetworkModeEvent.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/ExpressPlayDRMConfiguration.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/EzdrmDRMConfiguration.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/FairPlayChannelDrmKeySystemResponse.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/FairPlayKeySystemConfiguration.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/FreeWheelAdDescription.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/FreeWheelCue.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/FullscreenOptions.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/Geo.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/GlobalCast.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/GlobalChromecast.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/GoogleDAI.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/GoogleDAIConfiguration.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/GoogleDAILiveConfiguration.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/GoogleDAITypedSource.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/GoogleDAIVodConfiguration.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/GoogleImaAd.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/GoogleImaConfiguration.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/HespApi.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/HespApiEventMap.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/HespSourceConfiguration.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/HespTypedSource.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/HlsPlaybackConfiguration.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/HTTPHeaders.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/ID3AttachedPicture.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/ID3BaseFrame.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/ID3Comments.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/ID3CommercialFrame.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/ID3Cue.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/ID3GenericEncapsulatedObject.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/ID3InvolvedPeopleList.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/ID3PositionSynchronisationFrame.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/ID3PrivateFrame.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/ID3SynchronizedLyricsText.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/ID3TermsOfUse.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/ID3Text.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/ID3UniqueFileIdentifier.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/ID3Unknown.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/ID3UnsynchronisedLyricsTextTranscription.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/ID3UrlLink.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/ID3UserDefinedText.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/ID3UserDefinedUrlLink.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/ID3Yospace.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/IMAAdDescription.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/IntentToFallbackEvent.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/InterceptableRequest.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/InterceptableResponse.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/Interstitial.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/InterstitialEvent.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/IrdetoDRMConfiguration.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/KeyOSDRMConfiguration.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/KeyOSFairplayKeySystemConfiguration.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/KeyOSKeySystemConfiguration.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/KeySystemConfiguration.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/LatencyConfiguration.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/LatencyManager.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/LayoutChangeEvent.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/LicenseRequest.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/LicenseResponse.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/LinearAd.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/List.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/LoadedDataEvent.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/LoadedMetadataEvent.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/ManifestErrorEvent.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/MeasurableNetworkEstimator.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/MediaError.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/MediaFile.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/MediaMelonConfiguration.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/MediaTailorSource.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/MediaTrack.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/MediaTrackEventMap.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/MediaTrackList.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/MetadataDescription.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/Metrics.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/Millicast.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/MillicastEventMap.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/MillicastMetadataCue.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/MillicastSource.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/MillicastStatsEvent.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/MoatConfiguration.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/MultiViewPlayerEventMap.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/Network.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/NetworkEstimator.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/NetworkEstimatorController.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/NetworkEventMap.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/NetworkInterceptorController.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/NonLinearAd.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/OverlayInterstitial.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/OverlayPosition.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/OverlaySize.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/PauseEvent.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/PiPConfiguration.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/PlayerConfiguration.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/PlayerEventMap.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/PlayerList.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/PlayEvent.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/PlayingEvent.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/PlayoutDelay.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/PlayReadyKeySystemConfiguration.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/PlayStation5Configuration.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/Presentation.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/PresentationEventMap.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/PresentationModeChangeEvent.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/ProgressEvent.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/Quality.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/QualityEvent.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/QualityEventMap.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/QualityList.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/RateChangeEvent.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/ReadyStateChangeEvent.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/RelatedContent.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/RelatedContentEventMap.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/RelatedContentSource.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/RemoveCachingTaskEvent.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/RemoveTrackEvent.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/RemoveViewEvent.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/Representation.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/RepresentationChangeEvent.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/Request.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/RequestInit.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/RequestMeasurer.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/ResponseInit.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/RetryConfiguration.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/SeekedEvent.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/SeekingEvent.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/SegmentErrorEvent.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/ServerSideAdInsertionConfiguration.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/ServerSideAdIntegrationController.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/ServerSideAdIntegrationHandler.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/SmartSightConfiguration.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/SocialSharing.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/SocialSharingItem.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/SourceAbrConfiguration.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/SourceChangeEvent.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/SourceConfiguration.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/SourceDescription.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/SourceLatencyConfiguration.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/SpotXAdDescription.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/SpotxData.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/SpotxQueryParameter.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/StreamOneConfiguration.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/TargetQualityChangedEvent.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/TextTrack.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/TextTrackAddCueEvent.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/TextTrackCue.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/TextTrackCueChangeEvent.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/TextTrackCueEnterEvent.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/TextTrackCueEventMap.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/TextTrackCueExitEvent.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/TextTrackCueList.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/TextTrackCueUpdateEvent.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/TextTrackDescription.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/TextTrackEnterCueEvent.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/TextTrackError.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/TextTrackErrorEvent.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/TextTrackEventMap.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/TextTrackExitCueEvent.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/TextTrackReadyStateChangeEvent.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/TextTrackRemoveCueEvent.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/TextTracksList.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/TextTrackStyle.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/TextTrackStyleEventMap.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/TextTrackTypeChangeEvent.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/TextTrackUpdateCueEvent.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/TheoAdDescription.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/TheoAds.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/TheoAdsEventsMap.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/TheoLiveApi.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/TheoLiveApiEventMap.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/TheoLiveConfiguration.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/TheoLivePublication.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/TheoLiveSource.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/THEOplayerError.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/ThumbnailResolution.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/TimeRanges.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/TimeUpdateEvent.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/TitaniumDRMConfiguration.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/TokenBasedTitaniumDRMConfiguration.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/Track.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/TrackChangeEvent.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/TrackEventMap.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/TrackList.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/TrackListEventMap.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/TrackUpdateEvent.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/TTMLCue.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/TTMLExtent.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/TypedSource.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/UIConfiguration.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/UIPlayerConfiguration.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/UIRelatedContent.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/UIRelatedContentEventMap.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/UniversalAdId.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/UpdateQualityEvent.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/Uplynk.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/UplynkAd.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/UplynkAdBeginEvent.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/UplynkAdBreak.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/UplynkAdBreakBeginEvent.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/UplynkAdBreakEndEvent.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/UplynkAdBreakEventMap.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/UplynkAdBreakList.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/UplynkAdBreakListEventMap.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/UplynkAdBreakSkipEvent.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/UplynkAdCompleteEvent.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/UplynkAddAdBreakEvent.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/UplynkAddAssetEvent.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/UplynkAdEndEvent.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/UplynkAdEventMap.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/UplynkAdFirstQuartileEvent.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/UplynkAdList.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/UplynkAdListEventMap.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/UplynkAdMidpointEvent.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/UplynkAds.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/UplynkAdThirdQuartileEvent.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/UplynkAsset.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/UplynkAssetEventMap.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/UplynkAssetInfoResponse.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/UplynkAssetInfoResponseEvent.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/UplynkAssetList.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/UplynkConfiguration.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/UplynkDRMConfiguration.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/UplynkEventMap.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/UplynkExternalId.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/UplynkPingConfiguration.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/UplynkPingErrorEvent.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/UplynkPingResponse.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/UplynkPingResponseEvent.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/UplynkPreplayBaseResponse.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/UplynkPreplayLiveResponse.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/UplynkPreplayResponseEvent.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/UplynkPreplayVodResponse.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/UplynkRemoveAdBreakEvent.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/UplynkRemoveAdEvent.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/UplynkRemoveAssetEvent.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/UplynkResponseDrm.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/UplynkResponseLiveAd.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/UplynkResponseLiveAdBreak.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/UplynkResponseLiveAds.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/UplynkResponseVodAd.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/UplynkResponseVodAdBreak.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/UplynkResponseVodAdBreakOffset.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/UplynkResponseVodAdPlaceholder.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/UplynkResponseVodAds.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/UplynkSource.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/UplynkUiConfiguration.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/UplynkUpdateAdBreakEvent.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/UpNextBar.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/UpNextManager.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/UpNextPanel.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/UpNextSource.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/UserActions.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/VastExtension.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/VendorCast.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/VendorCastEventMap.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/VerimatrixDRMConfiguration.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/VideoFrameCallbackMetadata.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/VideoQuality.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/View.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/ViewChangeEvent.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/ViewPositionChangeEvent.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/VimondDRMConfiguration.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/Visibility.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/VisibilityObserver.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/VolumeChangeEvent.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/VR.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/VRConfiguration.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/VRDirection.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/VREventMap.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/VudrmDRMConfiguration.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/WaitingEvent.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/WebAudio.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/WebRTCOptions.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/WebVTTCue.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/WebVTTRegion.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/XstreamDRMConfiguration.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/YouboraOptions.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/types/ABRStrategy.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/types/ABRStrategyType.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/types/AccessibilityRole.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/types/AdIntegrationKind.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/types/AdPreloadType.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/types/AdReadyState.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/types/AdSourceType.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/types/AdType.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/types/AgamaAnalyticsIntegrationID.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/types/AgamaLogLevelType.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/types/AgamaServiceName.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/types/AgamaStreamType.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/types/AnalyticsIntegrationID.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/types/AxinomIntegrationID.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/types/AzureIntegrationID.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/types/Boundary.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/types/BufferSource.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/types/CacheStatus.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/types/CacheTaskStatus.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/types/CastState.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/types/CertificateRequest.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/types/ChromecastErrorCode.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/types/ChromecastMetadataType.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/types/ComcastIntegrationID.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/types/ConaxIntegrationID.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/types/ContentProtectionErrorCode.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/types/ContentProtectionRequestSubType.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/types/CrossOriginSetting.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/types/CustomAdIntegrationKind.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/types/DAIAvailabilityType.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/types/DeliveryType.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/types/DirectionChangeEvent.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/types/DRMTodayIntegrationID.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/types/EdgeStyle.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/types/EventListener.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/types/EventMap.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/types/ExpressPlayIntegrationID.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/types/EzdrmIntegrationID.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/types/FreeWheelAdUnitType.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/types/GoogleDAISSAIIntegrationID.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/types/HespMediaType.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/types/HlsDiscontinuityAlignment.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/types/HTTPHeadersInit.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/types/ID3Frame.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/types/InterstitialType.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/types/IrdetoIntegrationID.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/types/JoinStrategy.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/types/KeyOSIntegrationID.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/types/KeySystemId.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/types/LicenseType.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/types/MaybeAsync.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/types/MediaErrorCode.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/types/MediaTrackType.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/types/MediaType.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/types/MoatAnalyticsIntegrationID.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/types/MultiViewPlayerLayout.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/types/MutedAutoplayConfiguration.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/types/NodeStyleVoidCallback.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/types/PiPPosition.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/types/PlayStation5PlayMode.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/types/PreloadType.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/types/PresentationMode.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/types/RelatedChangeEvent.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/types/RelatedHideEvent.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/types/RelatedShowEvent.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/types/RequestBody.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/types/RequestInterceptor.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/types/RequestLike.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/types/RequestMethod.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/types/RequestSubType.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/types/RequestType.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/types/ResponseBody.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/types/ResponseInterceptor.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/types/ResponseLike.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/types/ResponseType.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/types/SeamlessPeriodSwitchStrategy.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/types/SeamlessSwitchStrategy.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/types/ServerSideAdIntegrationFactory.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/types/SkippedAdStrategy.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/types/SmartSightIntegrationID.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/types/Source.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/types/SourceIntegrationId.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/types/Sources.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/types/SSAIIntegrationId.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/types/StateChangeEvent.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/types/StereoChangeEvent.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/types/StreamOneAnalyticsIntegrationID.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/types/StreamType.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/types/StringKeyOf.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/types/StylePropertyRecord.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/types/SupportedCustomTextTrackCueTypes.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/types/TextTrackErrorCode.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/types/TextTrackReadyState.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/types/TextTrackType.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/types/TheoAdsLayout.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/types/TheoAdsLayoutOverride.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/types/TitaniumIntegrationID.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/types/UILanguage.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/types/UplynkAssetId.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/types/UplynkAssetMovieRating.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/types/UplynkAssetTvRating.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/types/UplynkAssetType.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/types/UplynkIntegrationID.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/types/UplynkPreplayResponse.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/types/UplynkPreplayResponseType.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/types/VerimatrixIntegrationID.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/types/VideoFrameRequestCallback.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/types/VimondIntegrationID.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/types/VisibilityObserverCallback.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/types/VoidPromiseCallback.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/types/VPAIDMode.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/types/VRPanoramaMode.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/types/VRState.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/types/VRStereoMode.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/types/VTTAlignSetting.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/types/VTTDirectionSetting.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/types/VTTLine.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/types/VTTLineAlignSetting.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/types/VTTPosition.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/types/VTTPositionAlignSetting.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/types/VTTScrollSetting.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/types/VudrmIntegrationID.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/types/WaitUntilCallback.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/types/WidevineKeySystemConfiguration.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/types/XstreamIntegrationID.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/types/YospaceId.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/types/YouboraAnalyticsIntegrationID.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/variables/cache.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/variables/cast.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/variables/features.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/variables/players.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/variables/utils.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/variables/version.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/functions/registerContentProtectionIntegration.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/modules/ErrorCategory.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/functions/ErrorCategory.fromCode.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/modules/videojs.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z https://optiview.dolby.com/docs/theoplayer/v11/api-reference/web/interfaces/videojs.Player.html - 2026-06-18T17:11:01.565Z + 2026-07-03T12:14:55.158Z diff --git a/theoplayer/version.txt b/theoplayer/version.txt index 7ef698131aec..326ba189b470 100644 --- a/theoplayer/version.txt +++ b/theoplayer/version.txt @@ -1 +1 @@ -11.5.0 +11.5.1