theoplayer 11.2.0 → 11.3.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.
- package/THEOplayer.chromeless.d.ts +2 -2
- package/THEOplayer.chromeless.esm.js +2 -2
- package/THEOplayer.chromeless.js +3 -3
- package/THEOplayer.common.d.ts +2 -174
- package/THEOplayer.common.esm.js +3 -3
- package/THEOplayer.d.ts +4 -3
- package/THEOplayer.esm.js +3 -3
- package/THEOplayer.js +3 -3
- package/THEOplayer.transmux.asmjs.js +3 -3
- package/THEOplayer.transmux.js +3 -3
- package/package.json +1 -1
- package/theoplayer.d.js +3 -3
- package/theoplayer.sw.js +3 -3
package/THEOplayer.common.d.ts
CHANGED
|
@@ -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
|
*
|
|
@@ -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.
|
|
@@ -2811,12 +2797,6 @@ interface PlayStation5Configuration {
|
|
|
2811
2797
|
* @public
|
|
2812
2798
|
*/
|
|
2813
2799
|
interface PlayerConfiguration {
|
|
2814
|
-
/**
|
|
2815
|
-
* A unique identifier for the player.
|
|
2816
|
-
*
|
|
2817
|
-
* @internal
|
|
2818
|
-
*/
|
|
2819
|
-
uid?: number;
|
|
2820
2800
|
/**
|
|
2821
2801
|
* The directory in which the THEOplayer library worker files are located.
|
|
2822
2802
|
* These worker files are theoplayer.d.js, theoplayer.e.js, theoplayer.p.js.
|
|
@@ -3453,12 +3433,6 @@ interface DashPlaybackConfiguration {
|
|
|
3453
3433
|
* THEOplayer support or engineering.
|
|
3454
3434
|
*/
|
|
3455
3435
|
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
3436
|
/**
|
|
3463
3437
|
* (Experimental) Force the player to ignore the availability window of individual segments in the MPD,
|
|
3464
3438
|
* and instead consider every listed segment to be immediately available.
|
|
@@ -3469,12 +3443,6 @@ interface DashPlaybackConfiguration {
|
|
|
3469
3443
|
* <br/> - This only applies to streams that use `<SegmentTimeline>`.
|
|
3470
3444
|
*/
|
|
3471
3445
|
ignoreAvailabilityWindow?: boolean;
|
|
3472
|
-
/**
|
|
3473
|
-
* Whether the player should perform a hard switch when seeking backwards.
|
|
3474
|
-
*
|
|
3475
|
-
* @internal
|
|
3476
|
-
*/
|
|
3477
|
-
forceHardSwitchWhenSeekingBackwards?: boolean;
|
|
3478
3446
|
/**
|
|
3479
3447
|
* A flag to indicate whether or not timestamps of segmented WebVTT subtitles are relative to the segment start time.
|
|
3480
3448
|
*
|
|
@@ -3484,17 +3452,6 @@ interface DashPlaybackConfiguration {
|
|
|
3484
3452
|
* @defaultValue `true`
|
|
3485
3453
|
*/
|
|
3486
3454
|
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
3455
|
/**
|
|
3499
3456
|
* A flag to enable or disable content steering for this source.
|
|
3500
3457
|
*
|
|
@@ -3558,20 +3515,6 @@ interface HlsPlaybackConfiguration {
|
|
|
3558
3515
|
delaySubtitlePreload?: boolean;
|
|
3559
3516
|
}
|
|
3560
3517
|
|
|
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
3518
|
/**
|
|
3576
3519
|
* Fired when a text track cue is entered.
|
|
3577
3520
|
*
|
|
@@ -3638,10 +3581,6 @@ interface TextTrackCueEventMap {
|
|
|
3638
3581
|
* @public
|
|
3639
3582
|
*/
|
|
3640
3583
|
interface TextTrackCue extends EventDispatcher<TextTrackCueEventMap> {
|
|
3641
|
-
/**
|
|
3642
|
-
* @internal
|
|
3643
|
-
*/
|
|
3644
|
-
_internalCue: unknown;
|
|
3645
3584
|
/**
|
|
3646
3585
|
* The text track of the cue.
|
|
3647
3586
|
*/
|
|
@@ -4783,15 +4722,6 @@ interface SourceConfiguration {
|
|
|
4783
4722
|
* @deprecated Superseded by {@link SourceConfiguration.contentProtection}.
|
|
4784
4723
|
*/
|
|
4785
4724
|
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
4725
|
/**
|
|
4796
4726
|
* The poster of the media source.
|
|
4797
4727
|
*
|
|
@@ -4963,12 +4893,6 @@ interface TextTrackDescription {
|
|
|
4963
4893
|
* <br/> - This will be used as an identifier on the player API and in the UI.
|
|
4964
4894
|
*/
|
|
4965
4895
|
label?: string;
|
|
4966
|
-
/**
|
|
4967
|
-
* The identifier of this text track.
|
|
4968
|
-
*
|
|
4969
|
-
* @internal
|
|
4970
|
-
*/
|
|
4971
|
-
id?: string;
|
|
4972
4896
|
}
|
|
4973
4897
|
/**
|
|
4974
4898
|
* Represents the common properties of a media resource.
|
|
@@ -5032,22 +4956,6 @@ interface BaseSource {
|
|
|
5032
4956
|
* <br/> - Available since v2.61.0.
|
|
5033
4957
|
*/
|
|
5034
4958
|
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
4959
|
/**
|
|
5052
4960
|
* Whether the source should be played in the low-latency-mode of the player.
|
|
5053
4961
|
*
|
|
@@ -5216,18 +5124,6 @@ interface TypedSource extends BaseSource {
|
|
|
5216
5124
|
* <br/> - Available since v2.4.0.
|
|
5217
5125
|
*/
|
|
5218
5126
|
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
5127
|
/**
|
|
5232
5128
|
* The content protection parameters for the media resource.
|
|
5233
5129
|
*
|
|
@@ -5248,12 +5144,6 @@ interface TypedSource extends BaseSource {
|
|
|
5248
5144
|
* <br/> - Available since v2.12.0.
|
|
5249
5145
|
*/
|
|
5250
5146
|
ssai?: ServerSideAdInsertionConfiguration;
|
|
5251
|
-
/**
|
|
5252
|
-
* Whether the source is for an ad or a content playback
|
|
5253
|
-
*
|
|
5254
|
-
* @internal
|
|
5255
|
-
*/
|
|
5256
|
-
isAdvertisement?: boolean;
|
|
5257
5147
|
}
|
|
5258
5148
|
/**
|
|
5259
5149
|
* The stream type, represented by a value from the following list:
|
|
@@ -10263,24 +10153,6 @@ interface HespApi extends EventDispatcher<HespApiEventMap> {
|
|
|
10263
10153
|
* <br/> - Undefined if no HESP source is configured.
|
|
10264
10154
|
*/
|
|
10265
10155
|
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
10156
|
}
|
|
10285
10157
|
/**
|
|
10286
10158
|
* Specific source configuration for an HESP media resource.
|
|
@@ -10317,29 +10189,6 @@ interface HespTypedSource extends TypedSource {
|
|
|
10317
10189
|
*/
|
|
10318
10190
|
hesp?: HespSourceConfiguration;
|
|
10319
10191
|
}
|
|
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
10192
|
|
|
10344
10193
|
/**
|
|
10345
10194
|
* @category HESP
|
|
@@ -13677,28 +13526,6 @@ interface PlayerEventMap {
|
|
|
13677
13526
|
* <br/> - Available since v2.33.3.
|
|
13678
13527
|
*/
|
|
13679
13528
|
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
13529
|
}
|
|
13703
13530
|
/**
|
|
13704
13531
|
* The player API.
|
|
@@ -14114,4 +13941,5 @@ declare function registerContentProtectionIntegration(integrationId: string, key
|
|
|
14114
13941
|
*/
|
|
14115
13942
|
declare const utils: CommonUtils;
|
|
14116
13943
|
|
|
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 };
|
|
13944
|
+
export { ChromelessPlayer, ErrorCategory, ErrorCode, MultiViewPlayer, cache, cast, features, players, registerContentProtectionIntegration, utils, version, videojs };
|
|
13945
|
+
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, 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 };
|