@theoplayer/extended 6.13.0 → 7.1.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/README.md +9 -9
- 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 +134 -7
- package/THEOplayer.common.esm.js +3 -3
- package/THEOplayer.d.ts +2 -2
- 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.common.d.ts
CHANGED
|
@@ -271,7 +271,6 @@ type AdPreloadType = 'none' | 'midroll-and-postroll';
|
|
|
271
271
|
*
|
|
272
272
|
* @remarks
|
|
273
273
|
* <br/> - An ad is loaded when the ad resource (e.g. VAST file) is downloaded.
|
|
274
|
-
* <br/> - another remark
|
|
275
274
|
*
|
|
276
275
|
* @category Ads
|
|
277
276
|
* @public
|
|
@@ -1894,7 +1893,7 @@ interface ChromecastConfiguration {
|
|
|
1894
1893
|
/**
|
|
1895
1894
|
* The identifier of a custom Chromecast receiver app.
|
|
1896
1895
|
*
|
|
1897
|
-
* @defaultValue The default THEOplayer receiver app.
|
|
1896
|
+
* @defaultValue The default THEOplayer receiver app ID: 8E80B9CE.
|
|
1898
1897
|
*/
|
|
1899
1898
|
appID?: string;
|
|
1900
1899
|
}
|
|
@@ -2196,6 +2195,10 @@ interface PlayerConfiguration {
|
|
|
2196
2195
|
* <br/> - Available since v5.5.0.
|
|
2197
2196
|
*/
|
|
2198
2197
|
hideDeprecationWarnings?: boolean;
|
|
2198
|
+
/**
|
|
2199
|
+
* The THEOlive configuration for the player.
|
|
2200
|
+
*/
|
|
2201
|
+
theoLive?: TheoLiveConfiguration;
|
|
2199
2202
|
}
|
|
2200
2203
|
/**
|
|
2201
2204
|
* The muted autoplay policy of a player.
|
|
@@ -2207,6 +2210,21 @@ interface PlayerConfiguration {
|
|
|
2207
2210
|
* @public
|
|
2208
2211
|
*/
|
|
2209
2212
|
type MutedAutoplayConfiguration = 'none' | 'all' | 'content';
|
|
2213
|
+
/**
|
|
2214
|
+
* A configuration to configure THEOlive playback.
|
|
2215
|
+
*
|
|
2216
|
+
* @public
|
|
2217
|
+
*/
|
|
2218
|
+
interface TheoLiveConfiguration {
|
|
2219
|
+
/**
|
|
2220
|
+
* An id used to report usage analytics, if not explicitely given a random UUID is used.
|
|
2221
|
+
*/
|
|
2222
|
+
readonly externalSessionId?: string;
|
|
2223
|
+
/**
|
|
2224
|
+
* Whether this player should fallback or not when it has a fallback configured.
|
|
2225
|
+
*/
|
|
2226
|
+
readonly fallbackEnabled?: boolean;
|
|
2227
|
+
}
|
|
2210
2228
|
|
|
2211
2229
|
/**
|
|
2212
2230
|
* Describes the metadata of a Chromecast image.
|
|
@@ -3193,7 +3211,23 @@ declare enum ErrorCode {
|
|
|
3193
3211
|
/**
|
|
3194
3212
|
* Something went wrong while caching content protection's license.
|
|
3195
3213
|
*/
|
|
3196
|
-
CACHE_CONTENT_PROTECTION_ERROR = 12001
|
|
3214
|
+
CACHE_CONTENT_PROTECTION_ERROR = 12001,
|
|
3215
|
+
/**
|
|
3216
|
+
* Something went wrong with THEOlive playback.
|
|
3217
|
+
*/
|
|
3218
|
+
THEO_LIVE_UNKNOWN_ERROR = 13000,
|
|
3219
|
+
/**
|
|
3220
|
+
* The THEOlive channel could not be played because it was not found. This can be because it was never created, it has been deleted or locked.
|
|
3221
|
+
*/
|
|
3222
|
+
THEO_LIVE_CHANNEL_NOT_FOUND = 13001,
|
|
3223
|
+
/**
|
|
3224
|
+
* The THEOlive channel is a demo channel and the demo window has expired.
|
|
3225
|
+
*/
|
|
3226
|
+
THEO_LIVE_END_OF_DEMO = 13002,
|
|
3227
|
+
/**
|
|
3228
|
+
* A fatal error occurred regarding THEOlive analytics.
|
|
3229
|
+
*/
|
|
3230
|
+
THEO_LIVE_ANALYTICS_ERROR = 13003
|
|
3197
3231
|
}
|
|
3198
3232
|
/**
|
|
3199
3233
|
* The category of an error.
|
|
@@ -3249,7 +3283,11 @@ declare enum ErrorCategory {
|
|
|
3249
3283
|
/**
|
|
3250
3284
|
* This category clusters all errors related to caching.
|
|
3251
3285
|
*/
|
|
3252
|
-
CACHE = 12
|
|
3286
|
+
CACHE = 12,
|
|
3287
|
+
/**
|
|
3288
|
+
* This category clusters all errors related to THEOlive.
|
|
3289
|
+
*/
|
|
3290
|
+
THEOLIVE = 13
|
|
3253
3291
|
}
|
|
3254
3292
|
/**
|
|
3255
3293
|
* The category of an error.
|
|
@@ -3635,6 +3673,16 @@ interface TextTrack extends Track, EventDispatcher<TextTrackEventMap> {
|
|
|
3635
3673
|
removeEventListener<TType extends StringKeyOf<TextTrackEventMap>>(type: TType | readonly TType[], listener: EventListener<TextTrackEventMap[TType]>): void;
|
|
3636
3674
|
}
|
|
3637
3675
|
|
|
3676
|
+
/**
|
|
3677
|
+
* Represents a source for the THEOlive integration.
|
|
3678
|
+
*
|
|
3679
|
+
* @category Source
|
|
3680
|
+
* @public
|
|
3681
|
+
*/
|
|
3682
|
+
interface TheoLiveSource extends TypedSource {
|
|
3683
|
+
integration: 'theolive';
|
|
3684
|
+
}
|
|
3685
|
+
|
|
3638
3686
|
/**
|
|
3639
3687
|
* Represents a media resource.
|
|
3640
3688
|
*
|
|
@@ -3644,7 +3692,7 @@ interface TextTrack extends Track, EventDispatcher<TextTrackEventMap> {
|
|
|
3644
3692
|
* @category Source
|
|
3645
3693
|
* @public
|
|
3646
3694
|
*/
|
|
3647
|
-
type Source = string | TypedSource | VerizonMediaSource;
|
|
3695
|
+
type Source = string | TypedSource | VerizonMediaSource | TheoLiveSource;
|
|
3648
3696
|
/**
|
|
3649
3697
|
* A media resource or list of media resources.
|
|
3650
3698
|
*
|
|
@@ -4165,7 +4213,7 @@ type StreamType = 'live' | 'dvr' | 'vod';
|
|
|
4165
4213
|
* @category Source
|
|
4166
4214
|
* @public
|
|
4167
4215
|
*/
|
|
4168
|
-
type SourceIntegrationId = 'verizon-media' | 'mediatailor';
|
|
4216
|
+
type SourceIntegrationId = 'verizon-media' | 'mediatailor' | 'theolive';
|
|
4169
4217
|
/**
|
|
4170
4218
|
* The integration identifier of an analytics description, represented by a value from the following list:
|
|
4171
4219
|
* <br/> - `'agama'`: The description is an {@link AgamaConfiguration}
|
|
@@ -8930,6 +8978,84 @@ interface TimeRanges {
|
|
|
8930
8978
|
end(index: number): number;
|
|
8931
8979
|
}
|
|
8932
8980
|
|
|
8981
|
+
/**
|
|
8982
|
+
* Fired when the loading of a THEOlive publication starts.
|
|
8983
|
+
*
|
|
8984
|
+
* @public
|
|
8985
|
+
*/
|
|
8986
|
+
interface PublicationLoadStartEvent extends Event<'publicationloadstart'> {
|
|
8987
|
+
readonly publicationId: string;
|
|
8988
|
+
}
|
|
8989
|
+
/**
|
|
8990
|
+
* Fired when the loading of a THEOlive publication is complete and playback can start. This event is dispatched on publication reloads as well, which
|
|
8991
|
+
* can happen when an error is encountered or the player fallbacks.
|
|
8992
|
+
*
|
|
8993
|
+
* @public
|
|
8994
|
+
*/
|
|
8995
|
+
interface PublicationLoadedEvent extends Event<'publicationloaded'> {
|
|
8996
|
+
readonly publicationId: string;
|
|
8997
|
+
}
|
|
8998
|
+
/**
|
|
8999
|
+
* Fired when loading a THEOlive publication that cannot be played, for example because the publication is stopped.
|
|
9000
|
+
*
|
|
9001
|
+
* @public
|
|
9002
|
+
*/
|
|
9003
|
+
interface PublicationOfflineEvent extends Event<'publicationoffline'> {
|
|
9004
|
+
readonly publicationId: string;
|
|
9005
|
+
}
|
|
9006
|
+
/**
|
|
9007
|
+
* Fired when the player cannot play the current primary publication and would like to fallback. If a fallback has been configured it will fallback,
|
|
9008
|
+
* otherwise only the event is fired.
|
|
9009
|
+
*
|
|
9010
|
+
* @public
|
|
9011
|
+
*/
|
|
9012
|
+
interface IntentToFallbackEvent extends Event<'intenttofallback'> {
|
|
9013
|
+
}
|
|
9014
|
+
/**
|
|
9015
|
+
* Fired when the player enters bad network mode.
|
|
9016
|
+
*
|
|
9017
|
+
* @public
|
|
9018
|
+
*/
|
|
9019
|
+
interface EnterBadNetworkModeEvent extends Event<'enterbadnetworkmode'> {
|
|
9020
|
+
}
|
|
9021
|
+
/**
|
|
9022
|
+
* Fired when the player exits bad network mode.
|
|
9023
|
+
*
|
|
9024
|
+
* @public
|
|
9025
|
+
*/
|
|
9026
|
+
interface ExitBadNetworkModeEvent extends Event<'exitbadnetworkmode'> {
|
|
9027
|
+
}
|
|
9028
|
+
/**
|
|
9029
|
+
* A collection of events dispatched by the THEOlive api.
|
|
9030
|
+
*
|
|
9031
|
+
* @public
|
|
9032
|
+
*/
|
|
9033
|
+
interface TheoLiveApiEventMap {
|
|
9034
|
+
readonly publicationloadstart: PublicationLoadStartEvent;
|
|
9035
|
+
readonly publicationloaded: PublicationLoadedEvent;
|
|
9036
|
+
readonly publicationoffline: PublicationOfflineEvent;
|
|
9037
|
+
readonly intenttofallback: IntentToFallbackEvent;
|
|
9038
|
+
readonly enterbadnetworkmode: EnterBadNetworkModeEvent;
|
|
9039
|
+
readonly exitbadnetworkmode: ExitBadNetworkModeEvent;
|
|
9040
|
+
}
|
|
9041
|
+
/**
|
|
9042
|
+
* A THEOlive publication.
|
|
9043
|
+
*
|
|
9044
|
+
* @public
|
|
9045
|
+
*/
|
|
9046
|
+
interface TheoLivePublication {
|
|
9047
|
+
readonly name: string;
|
|
9048
|
+
}
|
|
9049
|
+
/**
|
|
9050
|
+
* The THEOlive api.
|
|
9051
|
+
*
|
|
9052
|
+
* @public
|
|
9053
|
+
*/
|
|
9054
|
+
interface TheoLiveApi extends EventDispatcher<TheoLiveApiEventMap> {
|
|
9055
|
+
badNetworkMode: boolean;
|
|
9056
|
+
preloadPublications(publicationIds: string[]): Promise<TheoLivePublication[]>;
|
|
9057
|
+
}
|
|
9058
|
+
|
|
8933
9059
|
/**
|
|
8934
9060
|
* The events fired by the {@link ChromelessPlayer}.
|
|
8935
9061
|
*
|
|
@@ -9310,6 +9436,7 @@ declare class ChromelessPlayer implements EventDispatcher<PlayerEventMap> {
|
|
|
9310
9436
|
*
|
|
9311
9437
|
*/
|
|
9312
9438
|
readonly textTrackStyle: TextTrackStyle;
|
|
9439
|
+
readonly theoLive?: TheoLiveApi;
|
|
9313
9440
|
/**
|
|
9314
9441
|
* Unique ID of the player.
|
|
9315
9442
|
*/
|
|
@@ -12744,4 +12871,4 @@ declare function registerContentProtectionIntegration(integrationId: string, key
|
|
|
12744
12871
|
*/
|
|
12745
12872
|
declare const utils: CommonUtils;
|
|
12746
12873
|
|
|
12747
|
-
export { ABRConfiguration, ABRMetadata, ABRStrategy, ABRStrategyConfiguration, ABRStrategyType, AES128KeySystemConfiguration, AccessibilityRole, Ad, AdBreak, AdBreakEvent, AdBufferingEvent, AdDescription, AdEvent, AdIntegrationKind, AdMetadataEvent, AdPreloadType, AdReadyState, AdSkipEvent, AdSource, AdSourceType, AddCachingTaskEvent, AddTrackEvent, AddViewEvent, Ads, AdsConfiguration, AdsEventMap, AgamaAnalyticsIntegrationID, AgamaConfiguration, AgamaLogLevelType, AgamaPlayerConfiguration, AgamaServiceName, AgamaSourceConfiguration, AgamaStreamType, AirPlay, Analytics, 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, Chromecast, ChromecastConfiguration, ChromecastConnectionCallback, ChromecastError, ChromecastErrorCode, ChromecastErrorEvent, ChromecastEventMap, ChromecastMetadataDescription, ChromecastMetadataImage, ChromecastMetadataType, ChromelessPlayer, ClearkeyDecryptionKey, ClearkeyKeySystemConfiguration, Clip, ClipEventMap, ComcastDRMConfiguration, ComcastIntegrationID, CommonUtils, CompanionAd, ConaxDRMConfiguration, ConaxIntegrationID, ContentProtectionError, ContentProtectionErrorCode, ContentProtectionErrorEvent, ContentProtectionIntegration, ContentProtectionIntegrationFactory, ContentProtectionRequest, ContentProtectionRequestSubType, ContentProtectionResponse, Conviva, ConvivaAnalyticsIntegrationID, ConvivaConfiguration, ConvivaContentMetadata, CrossOriginSetting, CurrentSourceChangeEvent, DAIAvailabilityType, DRMConfiguration, DRMTodayDRMConfiguration, DRMTodayIntegrationID, DashPlaybackConfiguration, DateRangeCue, DeliveryType, DeviceBasedTitaniumDRMConfiguration, DimensionChangeEvent, DirectionChangeEvent, DurationChangeEvent, EdgeStyle, EmptiedEvent, EmsgCue, EncryptedEvent, EndedEvent, ErrorCategory, ErrorCode, ErrorEvent, Event, EventDispatcher, EventListener, EventMap, EventStreamCue, EventedList, ExpressPlayDRMConfiguration, ExpressPlayIntegrationID, EzdrmDRMConfiguration, EzdrmIntegrationID, FairPlayKeySystemConfiguration, FreeWheelAdDescription, FreeWheelAdUnitType, FreeWheelCue, FullscreenOptions$1 as FullscreenOptions, Geo, GlobalCast, GlobalChromecast, GoogleDAI, GoogleDAIConfiguration, GoogleDAILiveConfiguration, GoogleDAISSAIIntegrationID, GoogleDAITypedSource, GoogleDAIVodConfiguration, GoogleImaAd, GoogleImaConfiguration, HTTPHeaders, HespApi, HespApiEventMap, HespLatencyConfiguration, 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, Imagine, ImagineEventMap, ImagineSSAIIntegrationID, ImagineServerSideAdInsertionConfiguration, ImagineTrackingEvent, ImagineTypedSource, InterceptableRequest, InterceptableResponse, IrdetoDRMConfiguration, IrdetoIntegrationID, JoinStrategy, KeyOSDRMConfiguration, KeyOSFairplayKeySystemConfiguration, KeyOSIntegrationID, KeyOSKeySystemConfiguration, KeySystemConfiguration, KeySystemId, Latencies, LatencyConfiguration, LatencyManager, LayoutChangeEvent, LicenseRequest, LicenseResponse, LicenseType, LinearAd, List, LoadedDataEvent, LoadedMetadataEvent, MaybeAsync, MeasurableNetworkEstimator, MediaError, MediaErrorCode, MediaFile, MediaMelonConfiguration, MediaTailorSource, MediaTrack, MediaTrackEventMap, MediaTrackList, MediaType, MetadataDescription, Metrics, MoatAnalyticsIntegrationID, MoatConfiguration, MultiViewPlayer, MultiViewPlayerEventMap, MultiViewPlayerLayout, MutedAutoplayConfiguration, Network, NetworkEstimator, NetworkEstimatorController, NetworkEventMap, NetworkInterceptorController, NodeStyleVoidCallback, NonLinearAd, PauseEvent, PiPConfiguration, PiPPosition, PlayEvent, PlayReadyKeySystemConfiguration, PlayerConfiguration, PlayerEventMap, PlayerList, PlayingEvent, 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, ServerSideAdInsertionConfiguration, SkippedAdStrategy, SmartSightConfiguration, SmartSightIntegrationID, Source, SourceAbrConfiguration, SourceChangeEvent, SourceConfiguration, SourceDescription, SourceIntegrationId, Sources, SpotXAdDescription, SpotxData, SpotxQueryParameter, StateChangeEvent, StereoChangeEvent, StreamOneAnalyticsIntegrationID, StreamOneConfiguration, StreamType, StringKeyOf, StylePropertyRecord, THEOplayerAdDescription, THEOplayerError, TTMLCue, 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, ThumbnailResolution, TimeRanges, TimeUpdateEvent, TitaniumDRMConfiguration, TitaniumIntegrationID, TokenBasedTitaniumDRMConfiguration, Track, TrackChangeEvent, TrackEventMap, TrackList, TrackListEventMap, TrackUpdateEvent, TypedSource, UIConfiguration, UILanguage, UIPlayerConfiguration, UIRelatedContent, UIRelatedContentEventMap, UniversalAdId, UpdateQualityEvent, UplynkDRMConfiguration, UplynkIntegrationID, UserActions, VPAIDMode, VR, VRConfiguration, VRDirection, VREventMap, VRPanoramaMode, VRPlayerConfiguration, VRState, VRStereoMode, VTTAlignSetting, VTTDirectionSetting, VTTLine, VTTLineAlignSetting, VTTPosition, VTTPositionAlignSetting, VTTScrollSetting, VendorCast, VendorCastEventMap, VerimatrixDRMConfiguration, VerimatrixIntegrationID, VerizonMedia, VerizonMediaAd, VerizonMediaAdBeginEvent, VerizonMediaAdBreak, VerizonMediaAdBreakBeginEvent, VerizonMediaAdBreakEndEvent, VerizonMediaAdBreakEventMap, VerizonMediaAdBreakList, VerizonMediaAdBreakListEventMap, VerizonMediaAdBreakSkipEvent, VerizonMediaAdCompleteEvent, VerizonMediaAdEndEvent, VerizonMediaAdEventMap, VerizonMediaAdFirstQuartileEvent, VerizonMediaAdList, VerizonMediaAdListEventMap, VerizonMediaAdMidpointEvent, VerizonMediaAdThirdQuartileEvent, VerizonMediaAddAdBreakEvent, VerizonMediaAddAssetEvent, VerizonMediaAds, VerizonMediaAsset, VerizonMediaAssetEventMap, VerizonMediaAssetId, VerizonMediaAssetInfoResponse, VerizonMediaAssetInfoResponseEvent, VerizonMediaAssetList, VerizonMediaAssetMovieRating, VerizonMediaAssetTvRating, VerizonMediaAssetType, VerizonMediaConfiguration, VerizonMediaEventMap, VerizonMediaExternalId, VerizonMediaPingConfiguration, VerizonMediaPingErrorEvent, VerizonMediaPingResponse, VerizonMediaPingResponseEvent, VerizonMediaPreplayBaseResponse, VerizonMediaPreplayLiveResponse, VerizonMediaPreplayResponse, VerizonMediaPreplayResponseEvent, VerizonMediaPreplayResponseType, VerizonMediaPreplayVodResponse, VerizonMediaRemoveAdBreakEvent, VerizonMediaRemoveAdEvent, VerizonMediaRemoveAssetEvent, VerizonMediaResponseDrm, VerizonMediaResponseLiveAd, VerizonMediaResponseLiveAdBreak, VerizonMediaResponseLiveAds, VerizonMediaResponseVodAd, VerizonMediaResponseVodAdBreak, VerizonMediaResponseVodAdBreakOffset, VerizonMediaResponseVodAdPlaceholder, VerizonMediaResponseVodAds, VerizonMediaSource, VerizonMediaUiConfiguration, VerizonMediaUpdateAdBreakEvent, VideoFrameCallbackMetadata, VideoFrameRequestCallback, VideoQuality, View, ViewChangeEvent, ViewPositionChangeEvent, VimondDRMConfiguration, VimondIntegrationID, Visibility, VisibilityObserver, VisibilityObserverCallback, VoidPromiseCallback, VolumeChangeEvent, VudrmDRMConfiguration, VudrmIntegrationID, WaitUntilCallback, WaitingEvent, WebAudio, WebVTTCue, WebVTTRegion, WidevineKeySystemConfiguration, XstreamDRMConfiguration, XstreamIntegrationID, Yospace, YospaceCallbackObject, YospaceEventMap, YospaceId, YospaceSSAIIntegrationID, YospaceServerSideAdInsertionConfiguration, YospaceStreamType, YospaceTypedSource, YouboraAnalyticsIntegrationID, YouboraOptions, cache, cast, features, playerSuiteVersion, players, registerContentProtectionIntegration, utils, version };
|
|
12874
|
+
export { ABRConfiguration, ABRMetadata, ABRStrategy, ABRStrategyConfiguration, ABRStrategyType, AES128KeySystemConfiguration, AccessibilityRole, Ad, AdBreak, AdBreakEvent, AdBufferingEvent, AdDescription, AdEvent, AdIntegrationKind, AdMetadataEvent, AdPreloadType, AdReadyState, AdSkipEvent, AdSource, AdSourceType, AddCachingTaskEvent, AddTrackEvent, AddViewEvent, Ads, AdsConfiguration, AdsEventMap, AgamaAnalyticsIntegrationID, AgamaConfiguration, AgamaLogLevelType, AgamaPlayerConfiguration, AgamaServiceName, AgamaSourceConfiguration, AgamaStreamType, AirPlay, Analytics, 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, Chromecast, ChromecastConfiguration, ChromecastConnectionCallback, ChromecastError, ChromecastErrorCode, ChromecastErrorEvent, ChromecastEventMap, ChromecastMetadataDescription, ChromecastMetadataImage, ChromecastMetadataType, ChromelessPlayer, ClearkeyDecryptionKey, ClearkeyKeySystemConfiguration, Clip, ClipEventMap, ComcastDRMConfiguration, ComcastIntegrationID, CommonUtils, CompanionAd, ConaxDRMConfiguration, ConaxIntegrationID, ContentProtectionError, ContentProtectionErrorCode, ContentProtectionErrorEvent, ContentProtectionIntegration, ContentProtectionIntegrationFactory, ContentProtectionRequest, ContentProtectionRequestSubType, ContentProtectionResponse, Conviva, ConvivaAnalyticsIntegrationID, ConvivaConfiguration, ConvivaContentMetadata, CrossOriginSetting, CurrentSourceChangeEvent, DAIAvailabilityType, DRMConfiguration, DRMTodayDRMConfiguration, DRMTodayIntegrationID, DashPlaybackConfiguration, DateRangeCue, DeliveryType, DeviceBasedTitaniumDRMConfiguration, DimensionChangeEvent, DirectionChangeEvent, DurationChangeEvent, EdgeStyle, EmptiedEvent, EmsgCue, EncryptedEvent, EndedEvent, 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, HespApi, HespApiEventMap, HespLatencyConfiguration, 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, Imagine, ImagineEventMap, ImagineSSAIIntegrationID, ImagineServerSideAdInsertionConfiguration, ImagineTrackingEvent, ImagineTypedSource, IntentToFallbackEvent, InterceptableRequest, InterceptableResponse, IrdetoDRMConfiguration, IrdetoIntegrationID, JoinStrategy, KeyOSDRMConfiguration, KeyOSFairplayKeySystemConfiguration, KeyOSIntegrationID, KeyOSKeySystemConfiguration, KeySystemConfiguration, KeySystemId, Latencies, LatencyConfiguration, LatencyManager, LayoutChangeEvent, LicenseRequest, LicenseResponse, LicenseType, LinearAd, List, LoadedDataEvent, LoadedMetadataEvent, MaybeAsync, MeasurableNetworkEstimator, MediaError, MediaErrorCode, MediaFile, MediaMelonConfiguration, MediaTailorSource, MediaTrack, MediaTrackEventMap, MediaTrackList, MediaType, MetadataDescription, Metrics, MoatAnalyticsIntegrationID, MoatConfiguration, MultiViewPlayer, MultiViewPlayerEventMap, MultiViewPlayerLayout, MutedAutoplayConfiguration, Network, NetworkEstimator, NetworkEstimatorController, NetworkEventMap, NetworkInterceptorController, NodeStyleVoidCallback, NonLinearAd, PauseEvent, PiPConfiguration, PiPPosition, PlayEvent, PlayReadyKeySystemConfiguration, PlayerConfiguration, PlayerEventMap, PlayerList, PlayingEvent, PreloadType, Presentation, PresentationEventMap, PresentationMode, PresentationModeChangeEvent, ProgressEvent, PublicationLoadStartEvent, PublicationLoadedEvent, PublicationOfflineEvent, 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, ServerSideAdInsertionConfiguration, SkippedAdStrategy, SmartSightConfiguration, SmartSightIntegrationID, Source, SourceAbrConfiguration, SourceChangeEvent, SourceConfiguration, SourceDescription, SourceIntegrationId, Sources, SpotXAdDescription, SpotxData, SpotxQueryParameter, StateChangeEvent, StereoChangeEvent, StreamOneAnalyticsIntegrationID, StreamOneConfiguration, StreamType, StringKeyOf, StylePropertyRecord, THEOplayerAdDescription, THEOplayerError, TTMLCue, 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, 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, UplynkDRMConfiguration, UplynkIntegrationID, UserActions, VPAIDMode, VR, VRConfiguration, VRDirection, VREventMap, VRPanoramaMode, VRPlayerConfiguration, VRState, VRStereoMode, VTTAlignSetting, VTTDirectionSetting, VTTLine, VTTLineAlignSetting, VTTPosition, VTTPositionAlignSetting, VTTScrollSetting, VendorCast, VendorCastEventMap, VerimatrixDRMConfiguration, VerimatrixIntegrationID, VerizonMedia, VerizonMediaAd, VerizonMediaAdBeginEvent, VerizonMediaAdBreak, VerizonMediaAdBreakBeginEvent, VerizonMediaAdBreakEndEvent, VerizonMediaAdBreakEventMap, VerizonMediaAdBreakList, VerizonMediaAdBreakListEventMap, VerizonMediaAdBreakSkipEvent, VerizonMediaAdCompleteEvent, VerizonMediaAdEndEvent, VerizonMediaAdEventMap, VerizonMediaAdFirstQuartileEvent, VerizonMediaAdList, VerizonMediaAdListEventMap, VerizonMediaAdMidpointEvent, VerizonMediaAdThirdQuartileEvent, VerizonMediaAddAdBreakEvent, VerizonMediaAddAssetEvent, VerizonMediaAds, VerizonMediaAsset, VerizonMediaAssetEventMap, VerizonMediaAssetId, VerizonMediaAssetInfoResponse, VerizonMediaAssetInfoResponseEvent, VerizonMediaAssetList, VerizonMediaAssetMovieRating, VerizonMediaAssetTvRating, VerizonMediaAssetType, VerizonMediaConfiguration, VerizonMediaEventMap, VerizonMediaExternalId, VerizonMediaPingConfiguration, VerizonMediaPingErrorEvent, VerizonMediaPingResponse, VerizonMediaPingResponseEvent, VerizonMediaPreplayBaseResponse, VerizonMediaPreplayLiveResponse, VerizonMediaPreplayResponse, VerizonMediaPreplayResponseEvent, VerizonMediaPreplayResponseType, VerizonMediaPreplayVodResponse, VerizonMediaRemoveAdBreakEvent, VerizonMediaRemoveAdEvent, VerizonMediaRemoveAssetEvent, VerizonMediaResponseDrm, VerizonMediaResponseLiveAd, VerizonMediaResponseLiveAdBreak, VerizonMediaResponseLiveAds, VerizonMediaResponseVodAd, VerizonMediaResponseVodAdBreak, VerizonMediaResponseVodAdBreakOffset, VerizonMediaResponseVodAdPlaceholder, VerizonMediaResponseVodAds, VerizonMediaSource, VerizonMediaUiConfiguration, VerizonMediaUpdateAdBreakEvent, VideoFrameCallbackMetadata, VideoFrameRequestCallback, VideoQuality, View, ViewChangeEvent, ViewPositionChangeEvent, VimondDRMConfiguration, VimondIntegrationID, Visibility, VisibilityObserver, VisibilityObserverCallback, VoidPromiseCallback, VolumeChangeEvent, VudrmDRMConfiguration, VudrmIntegrationID, WaitUntilCallback, WaitingEvent, WebAudio, WebVTTCue, WebVTTRegion, WidevineKeySystemConfiguration, XstreamDRMConfiguration, XstreamIntegrationID, Yospace, YospaceCallbackObject, YospaceEventMap, YospaceId, YospaceSSAIIntegrationID, YospaceServerSideAdInsertionConfiguration, YospaceStreamType, YospaceTypedSource, YouboraAnalyticsIntegrationID, YouboraOptions, cache, cast, features, playerSuiteVersion, players, registerContentProtectionIntegration, utils, version };
|