@theoplayer/extended 6.13.0 → 7.0.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 -6
- 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
|
@@ -1894,7 +1894,7 @@ interface ChromecastConfiguration {
|
|
|
1894
1894
|
/**
|
|
1895
1895
|
* The identifier of a custom Chromecast receiver app.
|
|
1896
1896
|
*
|
|
1897
|
-
* @defaultValue The default THEOplayer receiver app.
|
|
1897
|
+
* @defaultValue The default THEOplayer receiver app ID: 8E80B9CE.
|
|
1898
1898
|
*/
|
|
1899
1899
|
appID?: string;
|
|
1900
1900
|
}
|
|
@@ -2196,6 +2196,10 @@ interface PlayerConfiguration {
|
|
|
2196
2196
|
* <br/> - Available since v5.5.0.
|
|
2197
2197
|
*/
|
|
2198
2198
|
hideDeprecationWarnings?: boolean;
|
|
2199
|
+
/**
|
|
2200
|
+
* The THEOlive configuration for the player.
|
|
2201
|
+
*/
|
|
2202
|
+
theoLive?: TheoLiveConfiguration;
|
|
2199
2203
|
}
|
|
2200
2204
|
/**
|
|
2201
2205
|
* The muted autoplay policy of a player.
|
|
@@ -2207,6 +2211,21 @@ interface PlayerConfiguration {
|
|
|
2207
2211
|
* @public
|
|
2208
2212
|
*/
|
|
2209
2213
|
type MutedAutoplayConfiguration = 'none' | 'all' | 'content';
|
|
2214
|
+
/**
|
|
2215
|
+
* A configuration to configure THEOlive playback.
|
|
2216
|
+
*
|
|
2217
|
+
* @public
|
|
2218
|
+
*/
|
|
2219
|
+
interface TheoLiveConfiguration {
|
|
2220
|
+
/**
|
|
2221
|
+
* An id used to report usage analytics, if not explicitely given a random UUID is used.
|
|
2222
|
+
*/
|
|
2223
|
+
readonly externalSessionId?: string;
|
|
2224
|
+
/**
|
|
2225
|
+
* Whether this player should fallback or not when it has a fallback configured.
|
|
2226
|
+
*/
|
|
2227
|
+
readonly fallbackEnabled?: boolean;
|
|
2228
|
+
}
|
|
2210
2229
|
|
|
2211
2230
|
/**
|
|
2212
2231
|
* Describes the metadata of a Chromecast image.
|
|
@@ -3193,7 +3212,23 @@ declare enum ErrorCode {
|
|
|
3193
3212
|
/**
|
|
3194
3213
|
* Something went wrong while caching content protection's license.
|
|
3195
3214
|
*/
|
|
3196
|
-
CACHE_CONTENT_PROTECTION_ERROR = 12001
|
|
3215
|
+
CACHE_CONTENT_PROTECTION_ERROR = 12001,
|
|
3216
|
+
/**
|
|
3217
|
+
* Something went wrong with THEOlive playback.
|
|
3218
|
+
*/
|
|
3219
|
+
THEO_LIVE_UNKNOWN_ERROR = 13000,
|
|
3220
|
+
/**
|
|
3221
|
+
* 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.
|
|
3222
|
+
*/
|
|
3223
|
+
THEO_LIVE_CHANNEL_NOT_FOUND = 13001,
|
|
3224
|
+
/**
|
|
3225
|
+
* The THEOlive channel is a demo channel and the demo window has expired.
|
|
3226
|
+
*/
|
|
3227
|
+
THEO_LIVE_END_OF_DEMO = 13002,
|
|
3228
|
+
/**
|
|
3229
|
+
* A fatal error occurred regarding THEOlive analytics.
|
|
3230
|
+
*/
|
|
3231
|
+
THEO_LIVE_ANALYTICS_ERROR = 13003
|
|
3197
3232
|
}
|
|
3198
3233
|
/**
|
|
3199
3234
|
* The category of an error.
|
|
@@ -3249,7 +3284,11 @@ declare enum ErrorCategory {
|
|
|
3249
3284
|
/**
|
|
3250
3285
|
* This category clusters all errors related to caching.
|
|
3251
3286
|
*/
|
|
3252
|
-
CACHE = 12
|
|
3287
|
+
CACHE = 12,
|
|
3288
|
+
/**
|
|
3289
|
+
* This category clusters all errors related to THEOlive.
|
|
3290
|
+
*/
|
|
3291
|
+
THEOLIVE = 13
|
|
3253
3292
|
}
|
|
3254
3293
|
/**
|
|
3255
3294
|
* The category of an error.
|
|
@@ -3635,6 +3674,16 @@ interface TextTrack extends Track, EventDispatcher<TextTrackEventMap> {
|
|
|
3635
3674
|
removeEventListener<TType extends StringKeyOf<TextTrackEventMap>>(type: TType | readonly TType[], listener: EventListener<TextTrackEventMap[TType]>): void;
|
|
3636
3675
|
}
|
|
3637
3676
|
|
|
3677
|
+
/**
|
|
3678
|
+
* Represents a source for the THEOlive integration.
|
|
3679
|
+
*
|
|
3680
|
+
* @category Source
|
|
3681
|
+
* @public
|
|
3682
|
+
*/
|
|
3683
|
+
interface TheoLiveSource extends TypedSource {
|
|
3684
|
+
integration: 'theolive';
|
|
3685
|
+
}
|
|
3686
|
+
|
|
3638
3687
|
/**
|
|
3639
3688
|
* Represents a media resource.
|
|
3640
3689
|
*
|
|
@@ -3644,7 +3693,7 @@ interface TextTrack extends Track, EventDispatcher<TextTrackEventMap> {
|
|
|
3644
3693
|
* @category Source
|
|
3645
3694
|
* @public
|
|
3646
3695
|
*/
|
|
3647
|
-
type Source = string | TypedSource | VerizonMediaSource;
|
|
3696
|
+
type Source = string | TypedSource | VerizonMediaSource | TheoLiveSource;
|
|
3648
3697
|
/**
|
|
3649
3698
|
* A media resource or list of media resources.
|
|
3650
3699
|
*
|
|
@@ -4165,7 +4214,7 @@ type StreamType = 'live' | 'dvr' | 'vod';
|
|
|
4165
4214
|
* @category Source
|
|
4166
4215
|
* @public
|
|
4167
4216
|
*/
|
|
4168
|
-
type SourceIntegrationId = 'verizon-media' | 'mediatailor';
|
|
4217
|
+
type SourceIntegrationId = 'verizon-media' | 'mediatailor' | 'theolive';
|
|
4169
4218
|
/**
|
|
4170
4219
|
* The integration identifier of an analytics description, represented by a value from the following list:
|
|
4171
4220
|
* <br/> - `'agama'`: The description is an {@link AgamaConfiguration}
|
|
@@ -8930,6 +8979,84 @@ interface TimeRanges {
|
|
|
8930
8979
|
end(index: number): number;
|
|
8931
8980
|
}
|
|
8932
8981
|
|
|
8982
|
+
/**
|
|
8983
|
+
* Fired when the loading of a THEOlive publication starts.
|
|
8984
|
+
*
|
|
8985
|
+
* @public
|
|
8986
|
+
*/
|
|
8987
|
+
interface PublicationLoadStartEvent extends Event<'publicationloadstart'> {
|
|
8988
|
+
readonly publicationId: string;
|
|
8989
|
+
}
|
|
8990
|
+
/**
|
|
8991
|
+
* Fired when the loading of a THEOlive publication is complete and playback can start. This event is dispatched on publication reloads as well, which
|
|
8992
|
+
* can happen when an error is encountered or the player fallbacks.
|
|
8993
|
+
*
|
|
8994
|
+
* @public
|
|
8995
|
+
*/
|
|
8996
|
+
interface PublicationLoadedEvent extends Event<'publicationloaded'> {
|
|
8997
|
+
readonly publicationId: string;
|
|
8998
|
+
}
|
|
8999
|
+
/**
|
|
9000
|
+
* Fired when loading a THEOlive publication that cannot be played, for example because the publication is stopped.
|
|
9001
|
+
*
|
|
9002
|
+
* @public
|
|
9003
|
+
*/
|
|
9004
|
+
interface PublicationOfflineEvent extends Event<'publicationoffline'> {
|
|
9005
|
+
readonly publicationId: string;
|
|
9006
|
+
}
|
|
9007
|
+
/**
|
|
9008
|
+
* Fired when the player cannot play the current primary publication and would like to fallback. If a fallback has been configured it will fallback,
|
|
9009
|
+
* otherwise only the event is fired.
|
|
9010
|
+
*
|
|
9011
|
+
* @public
|
|
9012
|
+
*/
|
|
9013
|
+
interface IntentToFallbackEvent extends Event<'intenttofallback'> {
|
|
9014
|
+
}
|
|
9015
|
+
/**
|
|
9016
|
+
* Fired when the player enters bad network mode.
|
|
9017
|
+
*
|
|
9018
|
+
* @public
|
|
9019
|
+
*/
|
|
9020
|
+
interface EnterBadNetworkModeEvent extends Event<'enterbadnetworkmode'> {
|
|
9021
|
+
}
|
|
9022
|
+
/**
|
|
9023
|
+
* Fired when the player exits bad network mode.
|
|
9024
|
+
*
|
|
9025
|
+
* @public
|
|
9026
|
+
*/
|
|
9027
|
+
interface ExitBadNetworkModeEvent extends Event<'exitbadnetworkmode'> {
|
|
9028
|
+
}
|
|
9029
|
+
/**
|
|
9030
|
+
* A collection of events dispatched by the THEOlive api.
|
|
9031
|
+
*
|
|
9032
|
+
* @public
|
|
9033
|
+
*/
|
|
9034
|
+
interface TheoLiveApiEventMap {
|
|
9035
|
+
readonly publicationloadstart: PublicationLoadStartEvent;
|
|
9036
|
+
readonly publicationloaded: PublicationLoadedEvent;
|
|
9037
|
+
readonly publicationoffline: PublicationOfflineEvent;
|
|
9038
|
+
readonly intenttofallback: IntentToFallbackEvent;
|
|
9039
|
+
readonly enterbadnetworkmode: EnterBadNetworkModeEvent;
|
|
9040
|
+
readonly exitbadnetworkmode: ExitBadNetworkModeEvent;
|
|
9041
|
+
}
|
|
9042
|
+
/**
|
|
9043
|
+
* A THEOlive publication.
|
|
9044
|
+
*
|
|
9045
|
+
* @public
|
|
9046
|
+
*/
|
|
9047
|
+
interface TheoLivePublication {
|
|
9048
|
+
readonly name: string;
|
|
9049
|
+
}
|
|
9050
|
+
/**
|
|
9051
|
+
* The THEOlive api.
|
|
9052
|
+
*
|
|
9053
|
+
* @public
|
|
9054
|
+
*/
|
|
9055
|
+
interface TheoLiveApi extends EventDispatcher<TheoLiveApiEventMap> {
|
|
9056
|
+
badNetworkMode: boolean;
|
|
9057
|
+
preloadPublications(publicationIds: string[]): Promise<TheoLivePublication[]>;
|
|
9058
|
+
}
|
|
9059
|
+
|
|
8933
9060
|
/**
|
|
8934
9061
|
* The events fired by the {@link ChromelessPlayer}.
|
|
8935
9062
|
*
|
|
@@ -9310,6 +9437,7 @@ declare class ChromelessPlayer implements EventDispatcher<PlayerEventMap> {
|
|
|
9310
9437
|
*
|
|
9311
9438
|
*/
|
|
9312
9439
|
readonly textTrackStyle: TextTrackStyle;
|
|
9440
|
+
readonly theoLive?: TheoLiveApi;
|
|
9313
9441
|
/**
|
|
9314
9442
|
* Unique ID of the player.
|
|
9315
9443
|
*/
|
|
@@ -12744,4 +12872,4 @@ declare function registerContentProtectionIntegration(integrationId: string, key
|
|
|
12744
12872
|
*/
|
|
12745
12873
|
declare const utils: CommonUtils;
|
|
12746
12874
|
|
|
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 };
|
|
12875
|
+
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 };
|