@theoplayer/extended 11.2.0 → 11.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -957,12 +957,6 @@ interface AdsConfiguration {
957
957
  * @public
958
958
  */
959
959
  interface GoogleImaConfiguration {
960
- /**
961
- * Whether the native (mobile) IMA implementation will be used.
962
- *
963
- * @internal
964
- */
965
- useNativeIma: boolean;
966
960
  /**
967
961
  * Whether to use an ad UI element for clickthrough and displaying other ad UI.
968
962
  *
@@ -1431,8 +1425,6 @@ interface AdsEventMap {
1431
1425
  * <br/> - Available since v2.60.0.
1432
1426
  */
1433
1427
  addad: AdEvent<'addad'>;
1434
- /** @internal */
1435
- adadded: Event<'adadded'>;
1436
1428
  /**
1437
1429
  * Fired when an ad is updated.
1438
1430
  *
@@ -1973,7 +1965,7 @@ interface SpotxQueryParameter {
1973
1965
  * <br/> - `'freewheel'`: {@link https://vi.freewheel.tv/ | FreeWheel} pre-integrated ad playback.
1974
1966
  * <br/> - `'mediatailor'`: {@link https://aws.amazon.com/mediatailor/ | MediaTailor} pre-integrated ad playback.
1975
1967
  * <br/> - `'chromecast'`: {@link https://developers.google.com/cast/docs/web_receiver/ad_breaks | Chromecast} ads playing on a remote receiver.
1976
- * <br/> - `'theoads'`: [Experimental] - API under development, do not use without consulting THEO Technologies.
1968
+ * <br/> - `'theoads'`: {@link https://optiview.dolby.com/docs/ads/ | OptiView Ads} (previously THEOads) pre-integrated ad playback.
1977
1969
  *
1978
1970
  * @remarks
1979
1971
  * <br/> - An empty string will default to `'csai'`.
@@ -2105,12 +2097,6 @@ interface KeySystemConfiguration {
2105
2097
  * <br/> - If not provided, the player will use the default license acquisition URLs.
2106
2098
  */
2107
2099
  licenseAcquisitionURL?: string;
2108
- /**
2109
- * The licence type.
2110
- *
2111
- * @internal
2112
- */
2113
- licenseType?: LicenseType;
2114
2100
  /**
2115
2101
  * Record of HTTP headers for the licence acquisition request.
2116
2102
  * Each entry contains a header name with associated value.
@@ -2805,18 +2791,77 @@ interface PlayStation5Configuration {
2805
2791
  }
2806
2792
 
2807
2793
  /**
2808
- * Describes a player's configuration.
2794
+ * Describes the CMCD (Common Media Client Data) configuration for event mode reporting at the player level.
2809
2795
  *
2810
- * @category Player
2796
+ * @remarks
2797
+ * <br/> - Available since v11.4.0.
2798
+ * <br/> - This configuration is only used for event mode reporting only, for now. For request mode, you should use the
2799
+ * CMCD connector on GitHub (https://github.com/THEOplayer/web-connectors/tree/main/cmcd).
2800
+ * <br/> - This configuration is set at the player level. For source-level configuration, see {@link CmcdSourceConfiguration}.
2801
+ *
2802
+ * @category CMCD
2811
2803
  * @public
2812
2804
  */
2813
- interface PlayerConfiguration {
2805
+ interface CmcdConfiguration {
2814
2806
  /**
2815
- * A unique identifier for the player.
2807
+ * An external session ID that can be used to identify the current playback session.
2808
+ */
2809
+ externalSessionId?: string;
2810
+ /**
2811
+ * A user ID that can be used to identify the user.
2812
+ */
2813
+ userId?: string;
2814
+ /**
2815
+ * A list of CMCD endpoints to which events should be sent.
2816
+ */
2817
+ eventEndpoints?: CmcdEndpointConfiguration[];
2818
+ }
2819
+ /**
2820
+ * Describes the CMCD (Common Media Client Data) configuration for event mode reporting at the source level.
2821
+ *
2822
+ * @remarks
2823
+ * <br/> - Available since v11.4.0.
2824
+ * <br/> - This configuration is only used for event mode reporting only, for now. For request mode, you should use the
2825
+ * CMCD connector on GitHub (https://github.com/THEOplayer/web-connectors/tree/main/cmcd).
2826
+ * <br/> - This extends the player-level {@link CmcdConfiguration} by additionally allowing a session ID to be specified
2827
+ * per source. Source-level values take precedence over player-level values for overlapping fields,
2828
+ * except for `eventEndpoints` which are merged (both player and source endpoints receive events).
2829
+ *
2830
+ * @category CMCD
2831
+ * @public
2832
+ */
2833
+ interface CmcdSourceConfiguration extends CmcdConfiguration {
2834
+ /**
2835
+ * A GUID identifying the current playback session.
2816
2836
  *
2817
- * @internal
2837
+ * @remarks
2838
+ * A playback session typically consists of the playback of a single media
2839
+ * asset along with accompanying content such as advertisements. This session may comprise the playback of primary content
2840
+ * combined with interstitial content. This session is being played on a single device. The maximum length is 64 characters.
2841
+ * It is RECOMMENDED to conform to the UUID specification (https://tools.ietf.org/html/rfc4122).
2818
2842
  */
2819
- uid?: number;
2843
+ sessionId?: string;
2844
+ }
2845
+ /**
2846
+ * Configuration for a CMCD endpoint.
2847
+ *
2848
+ * @category CMCD
2849
+ * @public
2850
+ */
2851
+ interface CmcdEndpointConfiguration {
2852
+ /**
2853
+ * The URL of the CMCD endpoint.
2854
+ */
2855
+ url: string;
2856
+ }
2857
+
2858
+ /**
2859
+ * Describes a player's configuration.
2860
+ *
2861
+ * @category Player
2862
+ * @public
2863
+ */
2864
+ interface PlayerConfiguration {
2820
2865
  /**
2821
2866
  * The directory in which the THEOplayer library worker files are located.
2822
2867
  * These worker files are theoplayer.d.js, theoplayer.e.js, theoplayer.p.js.
@@ -2861,7 +2906,7 @@ interface PlayerConfiguration {
2861
2906
  *
2862
2907
  * @remarks
2863
2908
  * <br/> - Available since 2.22.0.
2864
- * <br/> - By default, the player assumes that it cannot load HTTP URLs when inside a HTTPS page because of {@link https://developer.mozilla.org/en-US/docs/Web/Security/Mixed_content | mixed content restrictions}. Therefore, the player will automatically convert HTTP URLs to HTTPS before loading them.
2909
+ * <br/> - By default, the player assumes that it cannot load HTTP URLs when inside an HTTPS page because of {@link https://developer.mozilla.org/en-US/docs/Web/Security/Mixed_content | mixed content restrictions}. Therefore, the player will automatically convert HTTP URLs to HTTPS before loading them.
2865
2910
  * <br/> - When this option is set to true, the player may assume that mixed content is allowed on the current platform, and will not automatically convert HTTP URLs to HTTPS.
2866
2911
  *
2867
2912
  * @defaultValue `false`
@@ -2954,6 +2999,13 @@ interface PlayerConfiguration {
2954
2999
  * The PlayStation 5 configuration for the player.
2955
3000
  */
2956
3001
  ps5?: PlayStation5Configuration;
3002
+ /**
3003
+ * The CMCD configuration for the player.
3004
+ *
3005
+ * @remarks
3006
+ * <br/> - Available since v11.4.0.
3007
+ */
3008
+ cmcd?: CmcdConfiguration;
2957
3009
  }
2958
3010
  /**
2959
3011
  * The muted autoplay policy of a player.
@@ -2974,10 +3026,12 @@ type MutedAutoplayConfiguration = 'none' | 'all' | 'content';
2974
3026
  interface TheoLiveConfiguration {
2975
3027
  /**
2976
3028
  * An id used to report usage analytics, if not explicitly given a random UUID is used.
3029
+ *
3030
+ * @deprecated Use {@link CmcdConfiguration.externalSessionId} instead.
2977
3031
  */
2978
3032
  readonly externalSessionId?: string;
2979
3033
  /**
2980
- * Whether this player should fallback or not when it has a fallback configured.
3034
+ * Whether this player should fall back or not when it has a fallback configured.
2981
3035
  */
2982
3036
  readonly fallbackEnabled?: boolean;
2983
3037
  readonly discoveryHeader?: string;
@@ -3453,12 +3507,6 @@ interface DashPlaybackConfiguration {
3453
3507
  * THEOplayer support or engineering.
3454
3508
  */
3455
3509
  desiredTimescale?: number;
3456
- /**
3457
- * Whether the player should try to force the seek on period switching to realign video and audio.
3458
- *
3459
- * @internal
3460
- */
3461
- forceSeekToSynchronize?: boolean;
3462
3510
  /**
3463
3511
  * (Experimental) Force the player to ignore the availability window of individual segments in the MPD,
3464
3512
  * and instead consider every listed segment to be immediately available.
@@ -3469,12 +3517,6 @@ interface DashPlaybackConfiguration {
3469
3517
  * <br/> - This only applies to streams that use `<SegmentTimeline>`.
3470
3518
  */
3471
3519
  ignoreAvailabilityWindow?: boolean;
3472
- /**
3473
- * Whether the player should perform a hard switch when seeking backwards.
3474
- *
3475
- * @internal
3476
- */
3477
- forceHardSwitchWhenSeekingBackwards?: boolean;
3478
3520
  /**
3479
3521
  * A flag to indicate whether or not timestamps of segmented WebVTT subtitles are relative to the segment start time.
3480
3522
  *
@@ -3484,17 +3526,6 @@ interface DashPlaybackConfiguration {
3484
3526
  * @defaultValue `true`
3485
3527
  */
3486
3528
  segmentRelativeVttTiming?: boolean;
3487
- /**
3488
- * A flag to force re-creation of the MediaSource when switching audio tracks.
3489
- *
3490
- * @remarks
3491
- * <br/> - Available since v8.14.0.
3492
- *
3493
- * @defaultValue `false`
3494
- *
3495
- * @internal
3496
- */
3497
- forceRecreateMediaSourceOnAudioSwitch?: boolean;
3498
3529
  /**
3499
3530
  * A flag to enable or disable content steering for this source.
3500
3531
  *
@@ -3558,20 +3589,6 @@ interface HlsPlaybackConfiguration {
3558
3589
  delaySubtitlePreload?: boolean;
3559
3590
  }
3560
3591
 
3561
- /**
3562
- * Describes the DVR configuration for a specific source.
3563
- *
3564
- * @category Source
3565
- * @category DVR
3566
- * @internal
3567
- */
3568
- interface SourceDVRConfiguration {
3569
- /**
3570
- * The expected length of the DVR window, in seconds. It must be larger than 60 seconds to enable DVR seeking.
3571
- */
3572
- windowSize: number;
3573
- }
3574
-
3575
3592
  /**
3576
3593
  * Fired when a text track cue is entered.
3577
3594
  *
@@ -3638,10 +3655,6 @@ interface TextTrackCueEventMap {
3638
3655
  * @public
3639
3656
  */
3640
3657
  interface TextTrackCue extends EventDispatcher<TextTrackCueEventMap> {
3641
- /**
3642
- * @internal
3643
- */
3644
- _internalCue: unknown;
3645
3658
  /**
3646
3659
  * The text track of the cue.
3647
3660
  */
@@ -3940,12 +3953,34 @@ interface Quality extends EventDispatcher<QualityEventMap> {
3940
3953
  */
3941
3954
  label: string;
3942
3955
  /**
3943
- * Whether the quality is available.
3956
+ * Whether the quality is available for selection.
3944
3957
  *
3945
3958
  * @remarks
3946
- * <br/> - A quality can be unavailable due to a DRM restriction (e.g. HDCP).
3959
+ * <ul>
3960
+ * <li>A quality that is unavailable will be ignored during ABR selection
3961
+ * and when setting {@link MediaTrack.targetQuality}.</li>
3962
+ * <li>A quality can be unavailable due to a DRM restriction (e.g. HDCP).</li>
3963
+ * <li>To prevent a quality from being selected for reasons outside the player,
3964
+ * set {@link enabled} to `false`.</li>
3965
+ * </ul>
3947
3966
  */
3948
3967
  readonly available: boolean;
3968
+ /**
3969
+ * Whether the quality is allowed to be selected.
3970
+ *
3971
+ * @remarks
3972
+ * <ul>
3973
+ * <li>A quality that is disabled will be ignored during ABR selection,
3974
+ * and when setting {@link MediaTrack.targetQuality}.</li>
3975
+ * <li>Setting this to `false` will cause {@link available} to become `false`.
3976
+ * However, setting this to `true` **does not** guarantee that {@link available} will become `true`,
3977
+ * since the player might not be able to select this quality for its own reasons.</li>
3978
+ * <li>Available since v11.4.0.</li>
3979
+ * </ul>
3980
+ *
3981
+ * @defaultValue true
3982
+ */
3983
+ enabled: boolean;
3949
3984
  /**
3950
3985
  * The HLS SCORE attribute.
3951
3986
  *
@@ -4073,9 +4108,16 @@ interface MediaTrackEventMap extends TrackEventMap {
4073
4108
  * Fired when a quality of the track becomes unavailable.
4074
4109
  *
4075
4110
  * @remarks
4076
- * <br/> - A Quality can become unavailable due to a DRM restriction (e.g. HDCP).
4111
+ * <br/> - A quality can become unavailable due to a DRM restriction (e.g. HDCP).
4077
4112
  */
4078
4113
  qualityunavailable: QualityEvent<'qualityunavailable'>;
4114
+ /**
4115
+ * Fired when a quality of the track becomes available again.
4116
+ *
4117
+ * @remarks
4118
+ * <br/> - A quality can become unavailable due to a DRM restriction (e.g. HDCP).
4119
+ */
4120
+ qualityavailable: QualityEvent<'qualityavailable'>;
4079
4121
  }
4080
4122
  /**
4081
4123
  * Represents a media track (audio or video) of a media resource.
@@ -4783,15 +4825,6 @@ interface SourceConfiguration {
4783
4825
  * @deprecated Superseded by {@link SourceConfiguration.contentProtection}.
4784
4826
  */
4785
4827
  drm?: DRMConfiguration;
4786
- /**
4787
- * Enables smooth DVR seeking for THEOlive and Millicast streams.
4788
- *
4789
- * THEOlive and Millicast sources normally only support live playback without DVR functionality. When enabled, this option allows the player to
4790
- * seamlessly switch to a fallback HLS or DASH source (specified in [SourceDescription.sources]) when the user seeks away from the live point.
4791
- *
4792
- * @internal
4793
- */
4794
- dvr?: SourceDVRConfiguration;
4795
4828
  /**
4796
4829
  * The poster of the media source.
4797
4830
  *
@@ -4851,6 +4884,13 @@ interface SourceConfiguration {
4851
4884
  * <br/> - Available since v2.21.0.
4852
4885
  */
4853
4886
  metadata?: ChromecastMetadataDescription;
4887
+ /**
4888
+ * CMCD configuration.
4889
+ *
4890
+ * @remarks
4891
+ * <br/> - Available since v11.4.0.
4892
+ */
4893
+ cmcd?: CmcdSourceConfiguration;
4854
4894
  }
4855
4895
  /**
4856
4896
  * Describes the configuration of a player's source.
@@ -4963,12 +5003,6 @@ interface TextTrackDescription {
4963
5003
  * <br/> - This will be used as an identifier on the player API and in the UI.
4964
5004
  */
4965
5005
  label?: string;
4966
- /**
4967
- * The identifier of this text track.
4968
- *
4969
- * @internal
4970
- */
4971
- id?: string;
4972
5006
  }
4973
5007
  /**
4974
5008
  * Represents the common properties of a media resource.
@@ -5032,22 +5066,6 @@ interface BaseSource {
5032
5066
  * <br/> - Available since v2.61.0.
5033
5067
  */
5034
5068
  hlsDateRange?: boolean;
5035
- /**
5036
- * Whether to use an experimental rendering pipeline for playback.
5037
- *
5038
- * @remarks
5039
- * <br/> - The availability of an experimental rendering pipeline depends on the platform.
5040
- * <br/> - Only use after specifically being advised to.
5041
- *
5042
- * @internal
5043
- */
5044
- experimentalRendering?: boolean;
5045
- /**
5046
- * Whether to use native ui rendering.
5047
- *
5048
- * @internal
5049
- */
5050
- nativeUiRendering?: boolean;
5051
5069
  /**
5052
5070
  * Whether the source should be played in the low-latency-mode of the player.
5053
5071
  *
@@ -5216,18 +5234,6 @@ interface TypedSource extends BaseSource {
5216
5234
  * <br/> - Available since v2.4.0.
5217
5235
  */
5218
5236
  type?: string;
5219
- /**
5220
- * The source URL of the media resource that will be played during airplay.
5221
- *
5222
- * @internal
5223
- */
5224
- airplaySrc?: string;
5225
- /**
5226
- * The content type (MIME type) of the media resource that will be played during airplay.
5227
- *
5228
- * @internal
5229
- */
5230
- airplaySrcType?: string;
5231
5237
  /**
5232
5238
  * The content protection parameters for the media resource.
5233
5239
  *
@@ -5248,12 +5254,6 @@ interface TypedSource extends BaseSource {
5248
5254
  * <br/> - Available since v2.12.0.
5249
5255
  */
5250
5256
  ssai?: ServerSideAdInsertionConfiguration;
5251
- /**
5252
- * Whether the source is for an ad or a content playback
5253
- *
5254
- * @internal
5255
- */
5256
- isAdvertisement?: boolean;
5257
5257
  }
5258
5258
  /**
5259
5259
  * The stream type, represented by a value from the following list:
@@ -9314,6 +9314,13 @@ interface TheoAdDescription extends AdDescription {
9314
9314
  * The Google DAI asset key which will be used as a fallback source when THEOads is not supported.
9315
9315
  */
9316
9316
  daiAssetKey?: string;
9317
+ /**
9318
+ * The URL of the break manifest.
9319
+ *
9320
+ * @remarks
9321
+ * <br/> - The break manifest describes the upcoming ad breaks in the stream.
9322
+ */
9323
+ breakManifestUrl?: string;
9317
9324
  }
9318
9325
  /**
9319
9326
  * Describes how and when the layout of a THEOads ad break should be overridden:
@@ -10263,24 +10270,6 @@ interface HespApi extends EventDispatcher<HespApiEventMap> {
10263
10270
  * <br/> - Undefined if no HESP source is configured.
10264
10271
  */
10265
10272
  readonly manifest: object | undefined;
10266
- /**
10267
- * Returns an overview of the latencies of different parts of the pipeline.
10268
- *
10269
- * @internal
10270
- */
10271
- readonly latencies: Latencies | undefined;
10272
- /**
10273
- * Returns an overview of the video latencies of different parts of the pipeline.
10274
- *
10275
- * @internal
10276
- */
10277
- readonly videoLatencies: Latencies | undefined;
10278
- /**
10279
- * Returns an overview of the audio latencies of different parts of the pipeline.
10280
- *
10281
- * @internal
10282
- */
10283
- readonly audioLatencies: Latencies | undefined;
10284
10273
  }
10285
10274
  /**
10286
10275
  * Specific source configuration for an HESP media resource.
@@ -10317,29 +10306,6 @@ interface HespTypedSource extends TypedSource {
10317
10306
  */
10318
10307
  hesp?: HespSourceConfiguration;
10319
10308
  }
10320
- /**
10321
- * An overview of different latencies in the pipeline.
10322
- *
10323
- * @internal
10324
- */
10325
- interface Latencies {
10326
- /**
10327
- * The total latency between a frame entering the transcoder and being displayed on the screen.
10328
- */
10329
- readonly theolive: number;
10330
- /**
10331
- * The latency a frame spends in the transcoding and packaging step.
10332
- */
10333
- readonly engine: number;
10334
- /**
10335
- * The latency between a frame exiting the packager and being received by the player.
10336
- */
10337
- readonly distribution: number;
10338
- /**
10339
- * The latency added by the player in the form of buffer.
10340
- */
10341
- readonly player: number;
10342
- }
10343
10309
 
10344
10310
  /**
10345
10311
  * @category HESP
@@ -13677,28 +13643,6 @@ interface PlayerEventMap {
13677
13643
  * <br/> - Available since v2.33.3.
13678
13644
  */
13679
13645
  destroy: Event<'destroy'>;
13680
- /** @internal */
13681
- airplaychanged_: Event<'airplaychanged_'>;
13682
- /** @internal */
13683
- fullscreenVideoElementChange_: Event<'fullscreenVideoElementChange_'>;
13684
- /** @internal */
13685
- imagesourcechange_: Event<'imagesourcechange_'>;
13686
- /** @internal */
13687
- nosupportedrepresentationfound: Event<'nosupportedrepresentationfound'>;
13688
- /** @internal */
13689
- metricschange: Event<'metricschange'>;
13690
- /** @internal */
13691
- offline: Event<'offline'>;
13692
- /** @internal */
13693
- online: Event<'online'>;
13694
- /** @internal */
13695
- presentationmodechange: Event<'presentationmodechange'>;
13696
- /** @internal */
13697
- segmentrequest_: Event<'segmentrequest_'>;
13698
- /** @internal */
13699
- segmentresponse_: Event<'segmentresponse_'>;
13700
- /** @internal */
13701
- manifestnotfound_: Event<'manifestnotfound_'>;
13702
13646
  }
13703
13647
  /**
13704
13648
  * The player API.
@@ -14114,4 +14058,5 @@ declare function registerContentProtectionIntegration(integrationId: string, key
14114
14058
  */
14115
14059
  declare const utils: CommonUtils;
14116
14060
 
14117
- export { ABRConfiguration, ABRMetadata, ABRStrategy, ABRStrategyConfiguration, ABRStrategyType, AES128KeySystemConfiguration, AccessibilityRole, Ad, AdBreak, AdBreakEvent, AdBreakInit, AdBreakInterstitial, AdBufferingEvent, AdDescription, AdEvent, AdInit, AdIntegrationKind, AdMetadataEvent, AdPreloadType, AdReadyState, AdSkipEvent, AdSource, AdSourceType, AdType, AddCachingTaskEvent, AddTrackEvent, AddViewEvent, Ads, AdsConfiguration, AdsEventMap, AdsManagerLoadedEvent, AgamaAnalyticsIntegrationID, AgamaConfiguration, AgamaLogLevelType, AgamaPlayerConfiguration, AgamaServiceName, AgamaSourceConfiguration, AgamaStreamType, AirPlay, AnalyticsDescription, AnalyticsIntegrationID, AudioQuality, AxinomDRMConfiguration, AxinomIntegrationID, AzureDRMConfiguration, AzureIntegrationID, Base64Util, BaseSource, Boundary, BoundaryC3, BoundaryC7, BoundaryHalftime, BoundaryInfo, BufferSource, BufferedSegments, Cache, CacheEventMap, CacheStatus, CacheTaskStatus, CachingTask, CachingTaskEventMap, CachingTaskLicense, CachingTaskList, CachingTaskListEventMap, CachingTaskParameters, CanPlayEvent, CanPlayThroughEvent, Canvas, Cast, CastConfiguration, CastEventMap, CastState, CastStateChangeEvent, CertificateRequest, CertificateResponse, ChannelDrmConfigResponse, ChannelMillicastSource, Chromecast, ChromecastConfiguration, ChromecastConnectionCallback, ChromecastError, ChromecastErrorCode, ChromecastErrorEvent, ChromecastEventMap, ChromecastMetadataDescription, ChromecastMetadataImage, ChromecastMetadataType, ChromelessPlayer, ClearkeyDecryptionKey, ClearkeyKeySystemConfiguration, Clip, ClipEventMap, ClosedCaptionFile, ComcastDRMConfiguration, ComcastIntegrationID, CommonUtils, CompanionAd, ConaxDRMConfiguration, ConaxIntegrationID, ContentProtectionError, ContentProtectionErrorCode, ContentProtectionErrorEvent, ContentProtectionIntegration, ContentProtectionIntegrationFactory, ContentProtectionRequest, ContentProtectionRequestSubType, ContentProtectionResponse, ContentSteeringErrorEvent, ContentSteeringLocationChangeEvent, ContentSteeringStartEvent, ContentSteeringStopEvent, ContentSteeringUpdateEvent, CrossOriginSetting, CsaiAdDescription, CurrentSourceChangeEvent, CustomAdIntegrationKind, CustomTextTrackMap, CustomTextTrackOptions, CustomWebVTTTextTrack, DAIAvailabilityType, DRMConfiguration, DRMTodayDRMConfiguration, DRMTodayIntegrationID, DashPlaybackConfiguration, DateRangeCue, DeliveryType, DeviceBasedTitaniumDRMConfiguration, DimensionChangeEvent, DirectionChangeEvent, Distribution, DistributionLoadStartEvent, DistributionLoadedEvent, DistributionOfflineEvent, DurationChangeEvent, EdgeStyle, EmptiedEvent, EmsgCue, EncryptedEvent, EndedEvent, Endpoint, EndpointLoadedEvent, EnterBadNetworkModeEvent, ErrorCategory, ErrorCode, ErrorEvent, Event, EventDispatcher, EventListener, EventMap, EventStreamCue, EventedList, ExitBadNetworkModeEvent, ExpressPlayDRMConfiguration, ExpressPlayIntegrationID, EzdrmDRMConfiguration, EzdrmIntegrationID, FairPlayKeySystemConfiguration, FreeWheelAdDescription, FreeWheelAdUnitType, FreeWheelCue, FullscreenOptions$1 as FullscreenOptions, Geo, GlobalCast, GlobalChromecast, GoogleDAI, GoogleDAIConfiguration, GoogleDAILiveConfiguration, GoogleDAISSAIIntegrationID, GoogleDAITypedSource, GoogleDAIVodConfiguration, GoogleImaAd, GoogleImaConfiguration, HTTPHeaders, HTTPHeadersInit, HespApi, HespApiEventMap, HespMediaType, HespSourceConfiguration, HespTypedSource, HlsDiscontinuityAlignment, HlsPlaybackConfiguration, ID3AttachedPicture, ID3BaseFrame, ID3Comments, ID3CommercialFrame, ID3Cue, ID3Frame, ID3GenericEncapsulatedObject, ID3InvolvedPeopleList, ID3PositionSynchronisationFrame, ID3PrivateFrame, ID3SynchronizedLyricsText, ID3TermsOfUse, ID3Text, ID3UniqueFileIdentifier, ID3Unknown, ID3UnsynchronisedLyricsTextTranscription, ID3UrlLink, ID3UserDefinedText, ID3UserDefinedUrlLink, ID3Yospace, IMAAdDescription, IntentToFallbackEvent, InterceptableRequest, InterceptableResponse, Interstitial, InterstitialEvent, InterstitialType, IrdetoDRMConfiguration, IrdetoIntegrationID, JoinStrategy, KeyOSDRMConfiguration, KeyOSFairplayKeySystemConfiguration, KeyOSIntegrationID, KeyOSKeySystemConfiguration, KeySystemConfiguration, KeySystemId, Latencies, LatencyConfiguration, LatencyManager, LayoutChangeEvent, LicenseRequest, LicenseResponse, LicenseType, LinearAd, List, LoadedDataEvent, LoadedMetadataEvent, ManifestErrorEvent, MaybeAsync, MeasurableNetworkEstimator, MediaError, MediaErrorCode, MediaFile, MediaMelonConfiguration, MediaTailorSource, MediaTrack, MediaTrackEventMap, MediaTrackList, MediaTrackType, MediaType, MetadataDescription, Metrics, Millicast, MillicastEventMap, MillicastMetadataCue, MillicastSource, MillicastStatsEvent, MoatAnalyticsIntegrationID, MoatConfiguration, MultiViewPlayer, MultiViewPlayerEventMap, MultiViewPlayerLayout, MutedAutoplayConfiguration, Network, NetworkEstimator, NetworkEstimatorController, NetworkEventMap, NetworkInterceptorController, NodeStyleVoidCallback, NonLinearAd, OverlayInterstitial, OverlayPosition, OverlaySize, PauseEvent, PiPConfiguration, PiPPosition, PlayEvent, PlayReadyKeySystemConfiguration, PlayStation5Configuration, PlayStation5PlayMode, PlayerConfiguration, PlayerEventMap, PlayerList, PlayingEvent, PlayoutDelay, PreloadType, Presentation, PresentationEventMap, PresentationMode, PresentationModeChangeEvent, ProgressEvent, Quality, QualityEvent, QualityEventMap, QualityList, RateChangeEvent, ReadyStateChangeEvent, RelatedChangeEvent, RelatedContent, RelatedContentEventMap, RelatedContentSource, RelatedHideEvent, RelatedShowEvent, RemoveCachingTaskEvent, RemoveTrackEvent, RemoveViewEvent, Representation, RepresentationChangeEvent, Request, RequestBody, RequestInit, RequestInterceptor, RequestLike, RequestMeasurer, RequestMethod, RequestSubType, RequestType, ResponseBody, ResponseInit, ResponseInterceptor, ResponseLike, ResponseType, RetryConfiguration, SSAIIntegrationId, SeamlessPeriodSwitchStrategy, SeamlessSwitchStrategy, SeekedEvent, SeekingEvent, SegmentErrorEvent, ServerSideAdInsertionConfiguration, ServerSideAdIntegrationController, ServerSideAdIntegrationFactory, ServerSideAdIntegrationHandler, SkippedAdStrategy, SmartSightConfiguration, SmartSightIntegrationID, Source, SourceAbrConfiguration, SourceChangeEvent, SourceConfiguration, SourceDescription, SourceIntegrationId, SourceLatencyConfiguration, Sources, SpotXAdDescription, SpotxData, SpotxQueryParameter, StateChangeEvent, StereoChangeEvent, StreamOneAnalyticsIntegrationID, StreamOneConfiguration, StreamType, StringKeyOf, StylePropertyRecord, SupportedCustomTextTrackCueTypes, THEOplayerError, TTMLCue, TTMLExtent, TargetQualityChangedEvent, TextTrack, TextTrackAddCueEvent, TextTrackCue, TextTrackCueChangeEvent, TextTrackCueEnterEvent, TextTrackCueEventMap, TextTrackCueExitEvent, TextTrackCueList, TextTrackCueUpdateEvent, TextTrackDescription, TextTrackEnterCueEvent, TextTrackError, TextTrackErrorCode, TextTrackErrorEvent, TextTrackEventMap, TextTrackExitCueEvent, TextTrackReadyState, TextTrackReadyStateChangeEvent, TextTrackRemoveCueEvent, TextTrackStyle, TextTrackStyleEventMap, TextTrackType, TextTrackTypeChangeEvent, TextTrackUpdateCueEvent, TextTracksList, TheoAdDescription, TheoAds, TheoAdsEventsMap, TheoAdsLayout, TheoAdsLayoutOverride, TheoLiveApi, TheoLiveApiEventMap, TheoLiveConfiguration, TheoLivePublication, TheoLiveSource, ThumbnailResolution, TimeRanges, TimeUpdateEvent, TitaniumDRMConfiguration, TitaniumIntegrationID, TokenBasedTitaniumDRMConfiguration, Track, TrackChangeEvent, TrackEventMap, TrackList, TrackListEventMap, TrackUpdateEvent, TypedSource, UIConfiguration, UILanguage, UIPlayerConfiguration, UIRelatedContent, UIRelatedContentEventMap, UniversalAdId, UpdateQualityEvent, Uplynk, UplynkAd, UplynkAdBeginEvent, UplynkAdBreak, UplynkAdBreakBeginEvent, UplynkAdBreakEndEvent, UplynkAdBreakEventMap, UplynkAdBreakList, UplynkAdBreakListEventMap, UplynkAdBreakSkipEvent, UplynkAdCompleteEvent, UplynkAdEndEvent, UplynkAdEventMap, UplynkAdFirstQuartileEvent, UplynkAdList, UplynkAdListEventMap, UplynkAdMidpointEvent, UplynkAdThirdQuartileEvent, UplynkAddAdBreakEvent, UplynkAddAssetEvent, UplynkAds, UplynkAsset, UplynkAssetEventMap, UplynkAssetId, UplynkAssetInfoResponse, UplynkAssetInfoResponseEvent, UplynkAssetList, UplynkAssetMovieRating, UplynkAssetTvRating, UplynkAssetType, UplynkConfiguration, UplynkDRMConfiguration, UplynkEventMap, UplynkExternalId, UplynkIntegrationID, UplynkPingConfiguration, UplynkPingErrorEvent, UplynkPingResponse, UplynkPingResponseEvent, UplynkPreplayBaseResponse, UplynkPreplayLiveResponse, UplynkPreplayResponse, UplynkPreplayResponseEvent, UplynkPreplayResponseType, UplynkPreplayVodResponse, UplynkRemoveAdBreakEvent, UplynkRemoveAdEvent, UplynkRemoveAssetEvent, UplynkResponseDrm, UplynkResponseLiveAd, UplynkResponseLiveAdBreak, UplynkResponseLiveAds, UplynkResponseVodAd, UplynkResponseVodAdBreak, UplynkResponseVodAdBreakOffset, UplynkResponseVodAdPlaceholder, UplynkResponseVodAds, UplynkSource, UplynkUiConfiguration, UplynkUpdateAdBreakEvent, UserActions, VPAIDMode, VR, VRConfiguration, VRDirection, VREventMap, VRPanoramaMode, VRState, VRStereoMode, VTTAlignSetting, VTTDirectionSetting, VTTLine, VTTLineAlignSetting, VTTPosition, VTTPositionAlignSetting, VTTScrollSetting, VastExtension, VendorCast, VendorCastEventMap, VerimatrixDRMConfiguration, VerimatrixIntegrationID, VideoFrameCallbackMetadata, VideoFrameRequestCallback, VideoQuality, View, ViewChangeEvent, ViewPositionChangeEvent, VimondDRMConfiguration, VimondIntegrationID, Visibility, VisibilityObserver, VisibilityObserverCallback, VoidPromiseCallback, VolumeChangeEvent, VudrmDRMConfiguration, VudrmIntegrationID, WaitUntilCallback, WaitingEvent, WebAudio, WebRTCOptions, WebVTTCue, WebVTTRegion, WidevineKeySystemConfiguration, XstreamDRMConfiguration, XstreamIntegrationID, YospaceId, YouboraAnalyticsIntegrationID, YouboraOptions, cache, cast, features, players, registerContentProtectionIntegration, utils, version, videojs };
14061
+ export { ChromelessPlayer, ErrorCategory, ErrorCode, MultiViewPlayer, cache, cast, features, players, registerContentProtectionIntegration, utils, version, videojs };
14062
+ export type { ABRConfiguration, ABRMetadata, ABRStrategy, ABRStrategyConfiguration, ABRStrategyType, AES128KeySystemConfiguration, AccessibilityRole, Ad, AdBreak, AdBreakEvent, AdBreakInit, AdBreakInterstitial, AdBufferingEvent, AdDescription, AdEvent, AdInit, AdIntegrationKind, AdMetadataEvent, AdPreloadType, AdReadyState, AdSkipEvent, AdSource, AdSourceType, AdType, AddCachingTaskEvent, AddTrackEvent, AddViewEvent, Ads, AdsConfiguration, AdsEventMap, AdsManagerLoadedEvent, AgamaAnalyticsIntegrationID, AgamaConfiguration, AgamaLogLevelType, AgamaPlayerConfiguration, AgamaServiceName, AgamaSourceConfiguration, AgamaStreamType, AirPlay, AnalyticsDescription, AnalyticsIntegrationID, AudioQuality, AxinomDRMConfiguration, AxinomIntegrationID, AzureDRMConfiguration, AzureIntegrationID, Base64Util, BaseSource, Boundary, BoundaryC3, BoundaryC7, BoundaryHalftime, BoundaryInfo, BufferSource, BufferedSegments, Cache, CacheEventMap, CacheStatus, CacheTaskStatus, CachingTask, CachingTaskEventMap, CachingTaskLicense, CachingTaskList, CachingTaskListEventMap, CachingTaskParameters, CanPlayEvent, CanPlayThroughEvent, Canvas, Cast, CastConfiguration, CastEventMap, CastState, CastStateChangeEvent, CertificateRequest, CertificateResponse, ChannelDrmConfigResponse, ChannelMillicastSource, Chromecast, ChromecastConfiguration, ChromecastConnectionCallback, ChromecastError, ChromecastErrorCode, ChromecastErrorEvent, ChromecastEventMap, ChromecastMetadataDescription, ChromecastMetadataImage, ChromecastMetadataType, ClearkeyDecryptionKey, ClearkeyKeySystemConfiguration, Clip, ClipEventMap, ClosedCaptionFile, CmcdConfiguration, CmcdEndpointConfiguration, CmcdSourceConfiguration, ComcastDRMConfiguration, ComcastIntegrationID, CommonUtils, CompanionAd, ConaxDRMConfiguration, ConaxIntegrationID, ContentProtectionError, ContentProtectionErrorCode, ContentProtectionErrorEvent, ContentProtectionIntegration, ContentProtectionIntegrationFactory, ContentProtectionRequest, ContentProtectionRequestSubType, ContentProtectionResponse, ContentSteeringErrorEvent, ContentSteeringLocationChangeEvent, ContentSteeringStartEvent, ContentSteeringStopEvent, ContentSteeringUpdateEvent, CrossOriginSetting, CsaiAdDescription, CurrentSourceChangeEvent, CustomAdIntegrationKind, CustomTextTrackMap, CustomTextTrackOptions, CustomWebVTTTextTrack, DAIAvailabilityType, DRMConfiguration, DRMTodayDRMConfiguration, DRMTodayIntegrationID, DashPlaybackConfiguration, DateRangeCue, DeliveryType, DeviceBasedTitaniumDRMConfiguration, DimensionChangeEvent, DirectionChangeEvent, Distribution, DistributionLoadStartEvent, DistributionLoadedEvent, DistributionOfflineEvent, DurationChangeEvent, EdgeStyle, EmptiedEvent, EmsgCue, EncryptedEvent, EndedEvent, Endpoint, EndpointLoadedEvent, EnterBadNetworkModeEvent, ErrorEvent, Event, EventDispatcher, EventListener, EventMap, EventStreamCue, EventedList, ExitBadNetworkModeEvent, ExpressPlayDRMConfiguration, ExpressPlayIntegrationID, EzdrmDRMConfiguration, EzdrmIntegrationID, FairPlayKeySystemConfiguration, FreeWheelAdDescription, FreeWheelAdUnitType, FreeWheelCue, FullscreenOptions$1 as FullscreenOptions, Geo, GlobalCast, GlobalChromecast, GoogleDAI, GoogleDAIConfiguration, GoogleDAILiveConfiguration, GoogleDAISSAIIntegrationID, GoogleDAITypedSource, GoogleDAIVodConfiguration, GoogleImaAd, GoogleImaConfiguration, HTTPHeaders, HTTPHeadersInit, HespApi, HespApiEventMap, HespMediaType, HespSourceConfiguration, HespTypedSource, HlsDiscontinuityAlignment, HlsPlaybackConfiguration, ID3AttachedPicture, ID3BaseFrame, ID3Comments, ID3CommercialFrame, ID3Cue, ID3Frame, ID3GenericEncapsulatedObject, ID3InvolvedPeopleList, ID3PositionSynchronisationFrame, ID3PrivateFrame, ID3SynchronizedLyricsText, ID3TermsOfUse, ID3Text, ID3UniqueFileIdentifier, ID3Unknown, ID3UnsynchronisedLyricsTextTranscription, ID3UrlLink, ID3UserDefinedText, ID3UserDefinedUrlLink, ID3Yospace, IMAAdDescription, IntentToFallbackEvent, InterceptableRequest, InterceptableResponse, Interstitial, InterstitialEvent, InterstitialType, IrdetoDRMConfiguration, IrdetoIntegrationID, JoinStrategy, KeyOSDRMConfiguration, KeyOSFairplayKeySystemConfiguration, KeyOSIntegrationID, KeyOSKeySystemConfiguration, KeySystemConfiguration, KeySystemId, LatencyConfiguration, LatencyManager, LayoutChangeEvent, LicenseRequest, LicenseResponse, LicenseType, LinearAd, List, LoadedDataEvent, LoadedMetadataEvent, ManifestErrorEvent, MaybeAsync, MeasurableNetworkEstimator, MediaError, MediaErrorCode, MediaFile, MediaMelonConfiguration, MediaTailorSource, MediaTrack, MediaTrackEventMap, MediaTrackList, MediaTrackType, MediaType, MetadataDescription, Metrics, Millicast, MillicastEventMap, MillicastMetadataCue, MillicastSource, MillicastStatsEvent, MoatAnalyticsIntegrationID, MoatConfiguration, MultiViewPlayerEventMap, MultiViewPlayerLayout, MutedAutoplayConfiguration, Network, NetworkEstimator, NetworkEstimatorController, NetworkEventMap, NetworkInterceptorController, NodeStyleVoidCallback, NonLinearAd, OverlayInterstitial, OverlayPosition, OverlaySize, PauseEvent, PiPConfiguration, PiPPosition, PlayEvent, PlayReadyKeySystemConfiguration, PlayStation5Configuration, PlayStation5PlayMode, PlayerConfiguration, PlayerEventMap, PlayerList, PlayingEvent, PlayoutDelay, PreloadType, Presentation, PresentationEventMap, PresentationMode, PresentationModeChangeEvent, ProgressEvent, Quality, QualityEvent, QualityEventMap, QualityList, RateChangeEvent, ReadyStateChangeEvent, RelatedChangeEvent, RelatedContent, RelatedContentEventMap, RelatedContentSource, RelatedHideEvent, RelatedShowEvent, RemoveCachingTaskEvent, RemoveTrackEvent, RemoveViewEvent, Representation, RepresentationChangeEvent, Request, RequestBody, RequestInit, RequestInterceptor, RequestLike, RequestMeasurer, RequestMethod, RequestSubType, RequestType, ResponseBody, ResponseInit, ResponseInterceptor, ResponseLike, ResponseType, RetryConfiguration, SSAIIntegrationId, SeamlessPeriodSwitchStrategy, SeamlessSwitchStrategy, SeekedEvent, SeekingEvent, SegmentErrorEvent, ServerSideAdInsertionConfiguration, ServerSideAdIntegrationController, ServerSideAdIntegrationFactory, ServerSideAdIntegrationHandler, SkippedAdStrategy, SmartSightConfiguration, SmartSightIntegrationID, Source, SourceAbrConfiguration, SourceChangeEvent, SourceConfiguration, SourceDescription, SourceIntegrationId, SourceLatencyConfiguration, Sources, SpotXAdDescription, SpotxData, SpotxQueryParameter, StateChangeEvent, StereoChangeEvent, StreamOneAnalyticsIntegrationID, StreamOneConfiguration, StreamType, StringKeyOf, StylePropertyRecord, SupportedCustomTextTrackCueTypes, THEOplayerError, TTMLCue, TTMLExtent, TargetQualityChangedEvent, TextTrack, TextTrackAddCueEvent, TextTrackCue, TextTrackCueChangeEvent, TextTrackCueEnterEvent, TextTrackCueEventMap, TextTrackCueExitEvent, TextTrackCueList, TextTrackCueUpdateEvent, TextTrackDescription, TextTrackEnterCueEvent, TextTrackError, TextTrackErrorCode, TextTrackErrorEvent, TextTrackEventMap, TextTrackExitCueEvent, TextTrackReadyState, TextTrackReadyStateChangeEvent, TextTrackRemoveCueEvent, TextTrackStyle, TextTrackStyleEventMap, TextTrackType, TextTrackTypeChangeEvent, TextTrackUpdateCueEvent, TextTracksList, TheoAdDescription, TheoAds, TheoAdsEventsMap, TheoAdsLayout, TheoAdsLayoutOverride, TheoLiveApi, TheoLiveApiEventMap, TheoLiveConfiguration, TheoLivePublication, TheoLiveSource, ThumbnailResolution, TimeRanges, TimeUpdateEvent, TitaniumDRMConfiguration, TitaniumIntegrationID, TokenBasedTitaniumDRMConfiguration, Track, TrackChangeEvent, TrackEventMap, TrackList, TrackListEventMap, TrackUpdateEvent, TypedSource, UIConfiguration, UILanguage, UIPlayerConfiguration, UIRelatedContent, UIRelatedContentEventMap, UniversalAdId, UpdateQualityEvent, Uplynk, UplynkAd, UplynkAdBeginEvent, UplynkAdBreak, UplynkAdBreakBeginEvent, UplynkAdBreakEndEvent, UplynkAdBreakEventMap, UplynkAdBreakList, UplynkAdBreakListEventMap, UplynkAdBreakSkipEvent, UplynkAdCompleteEvent, UplynkAdEndEvent, UplynkAdEventMap, UplynkAdFirstQuartileEvent, UplynkAdList, UplynkAdListEventMap, UplynkAdMidpointEvent, UplynkAdThirdQuartileEvent, UplynkAddAdBreakEvent, UplynkAddAssetEvent, UplynkAds, UplynkAsset, UplynkAssetEventMap, UplynkAssetId, UplynkAssetInfoResponse, UplynkAssetInfoResponseEvent, UplynkAssetList, UplynkAssetMovieRating, UplynkAssetTvRating, UplynkAssetType, UplynkConfiguration, UplynkDRMConfiguration, UplynkEventMap, UplynkExternalId, UplynkIntegrationID, UplynkPingConfiguration, UplynkPingErrorEvent, UplynkPingResponse, UplynkPingResponseEvent, UplynkPreplayBaseResponse, UplynkPreplayLiveResponse, UplynkPreplayResponse, UplynkPreplayResponseEvent, UplynkPreplayResponseType, UplynkPreplayVodResponse, UplynkRemoveAdBreakEvent, UplynkRemoveAdEvent, UplynkRemoveAssetEvent, UplynkResponseDrm, UplynkResponseLiveAd, UplynkResponseLiveAdBreak, UplynkResponseLiveAds, UplynkResponseVodAd, UplynkResponseVodAdBreak, UplynkResponseVodAdBreakOffset, UplynkResponseVodAdPlaceholder, UplynkResponseVodAds, UplynkSource, UplynkUiConfiguration, UplynkUpdateAdBreakEvent, UserActions, VPAIDMode, VR, VRConfiguration, VRDirection, VREventMap, VRPanoramaMode, VRState, VRStereoMode, VTTAlignSetting, VTTDirectionSetting, VTTLine, VTTLineAlignSetting, VTTPosition, VTTPositionAlignSetting, VTTScrollSetting, VastExtension, VendorCast, VendorCastEventMap, VerimatrixDRMConfiguration, VerimatrixIntegrationID, VideoFrameCallbackMetadata, VideoFrameRequestCallback, VideoQuality, View, ViewChangeEvent, ViewPositionChangeEvent, VimondDRMConfiguration, VimondIntegrationID, Visibility, VisibilityObserver, VisibilityObserverCallback, VoidPromiseCallback, VolumeChangeEvent, VudrmDRMConfiguration, VudrmIntegrationID, WaitUntilCallback, WaitingEvent, WebAudio, WebRTCOptions, WebVTTCue, WebVTTRegion, WidevineKeySystemConfiguration, XstreamDRMConfiguration, XstreamIntegrationID, YospaceId, YouboraAnalyticsIntegrationID, YouboraOptions };