@theoplayer/extended 11.3.0 → 11.5.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 +206 -18
- 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.sw.js +3 -3
- package/ui.css +1 -1
package/THEOplayer.common.d.ts
CHANGED
|
@@ -1965,7 +1965,7 @@ interface SpotxQueryParameter {
|
|
|
1965
1965
|
* <br/> - `'freewheel'`: {@link https://vi.freewheel.tv/ | FreeWheel} pre-integrated ad playback.
|
|
1966
1966
|
* <br/> - `'mediatailor'`: {@link https://aws.amazon.com/mediatailor/ | MediaTailor} pre-integrated ad playback.
|
|
1967
1967
|
* <br/> - `'chromecast'`: {@link https://developers.google.com/cast/docs/web_receiver/ad_breaks | Chromecast} ads playing on a remote receiver.
|
|
1968
|
-
* <br/> - `'theoads'`:
|
|
1968
|
+
* <br/> - `'theoads'`: {@link https://optiview.dolby.com/docs/ads/ | OptiView Ads} (previously THEOads) pre-integrated ad playback.
|
|
1969
1969
|
*
|
|
1970
1970
|
* @remarks
|
|
1971
1971
|
* <br/> - An empty string will default to `'csai'`.
|
|
@@ -2790,6 +2790,71 @@ interface PlayStation5Configuration {
|
|
|
2790
2790
|
passThrough?: boolean;
|
|
2791
2791
|
}
|
|
2792
2792
|
|
|
2793
|
+
/**
|
|
2794
|
+
* Describes the CMCD (Common Media Client Data) configuration for event mode reporting at the player level.
|
|
2795
|
+
*
|
|
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
|
|
2803
|
+
* @public
|
|
2804
|
+
*/
|
|
2805
|
+
interface CmcdConfiguration {
|
|
2806
|
+
/**
|
|
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.
|
|
2836
|
+
*
|
|
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).
|
|
2842
|
+
*/
|
|
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
|
+
|
|
2793
2858
|
/**
|
|
2794
2859
|
* Describes a player's configuration.
|
|
2795
2860
|
*
|
|
@@ -2841,7 +2906,7 @@ interface PlayerConfiguration {
|
|
|
2841
2906
|
*
|
|
2842
2907
|
* @remarks
|
|
2843
2908
|
* <br/> - Available since 2.22.0.
|
|
2844
|
-
* <br/> - By default, the player assumes that it cannot load HTTP URLs when inside
|
|
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.
|
|
2845
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.
|
|
2846
2911
|
*
|
|
2847
2912
|
* @defaultValue `false`
|
|
@@ -2934,6 +2999,13 @@ interface PlayerConfiguration {
|
|
|
2934
2999
|
* The PlayStation 5 configuration for the player.
|
|
2935
3000
|
*/
|
|
2936
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;
|
|
2937
3009
|
}
|
|
2938
3010
|
/**
|
|
2939
3011
|
* The muted autoplay policy of a player.
|
|
@@ -2954,10 +3026,12 @@ type MutedAutoplayConfiguration = 'none' | 'all' | 'content';
|
|
|
2954
3026
|
interface TheoLiveConfiguration {
|
|
2955
3027
|
/**
|
|
2956
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.
|
|
2957
3031
|
*/
|
|
2958
3032
|
readonly externalSessionId?: string;
|
|
2959
3033
|
/**
|
|
2960
|
-
* Whether this player should
|
|
3034
|
+
* Whether this player should fall back or not when it has a fallback configured.
|
|
2961
3035
|
*/
|
|
2962
3036
|
readonly fallbackEnabled?: boolean;
|
|
2963
3037
|
readonly discoveryHeader?: string;
|
|
@@ -3879,12 +3953,34 @@ interface Quality extends EventDispatcher<QualityEventMap> {
|
|
|
3879
3953
|
*/
|
|
3880
3954
|
label: string;
|
|
3881
3955
|
/**
|
|
3882
|
-
* Whether the quality is available.
|
|
3956
|
+
* Whether the quality is available for selection.
|
|
3883
3957
|
*
|
|
3884
3958
|
* @remarks
|
|
3885
|
-
* <
|
|
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>
|
|
3886
3966
|
*/
|
|
3887
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;
|
|
3888
3984
|
/**
|
|
3889
3985
|
* The HLS SCORE attribute.
|
|
3890
3986
|
*
|
|
@@ -4012,9 +4108,16 @@ interface MediaTrackEventMap extends TrackEventMap {
|
|
|
4012
4108
|
* Fired when a quality of the track becomes unavailable.
|
|
4013
4109
|
*
|
|
4014
4110
|
* @remarks
|
|
4015
|
-
* <br/> - A
|
|
4111
|
+
* <br/> - A quality can become unavailable due to a DRM restriction (e.g. HDCP).
|
|
4016
4112
|
*/
|
|
4017
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'>;
|
|
4018
4121
|
}
|
|
4019
4122
|
/**
|
|
4020
4123
|
* Represents a media track (audio or video) of a media resource.
|
|
@@ -4520,6 +4623,15 @@ interface TextTrack extends Track, EventDispatcher<TextTrackEventMap> {
|
|
|
4520
4623
|
* @public
|
|
4521
4624
|
*/
|
|
4522
4625
|
interface TheoLiveSource extends TypedSource {
|
|
4626
|
+
/**
|
|
4627
|
+
* The identifier for the THEOlive distribution.
|
|
4628
|
+
*
|
|
4629
|
+
* @remarks
|
|
4630
|
+
* This can be specified in three formats:
|
|
4631
|
+
* <br/> - A V1 channel ID, e.g. `'2jENbm22UH5PobDm0Dqjtmkrx2E'`
|
|
4632
|
+
* <br/> - A V2/V3 distribution ID, e.g. `'1f17631a-861d-42c2-9105-d97de0ab9c07'`
|
|
4633
|
+
* <br/> - A v3 organization ID and distribution name separated by a `/`, e.g. `'1f17631a-861d-42c2-9105-d97de0ab9c06/my-distribution'`
|
|
4634
|
+
*/
|
|
4523
4635
|
src: string;
|
|
4524
4636
|
type: 'theolive';
|
|
4525
4637
|
/**
|
|
@@ -4781,6 +4893,13 @@ interface SourceConfiguration {
|
|
|
4781
4893
|
* <br/> - Available since v2.21.0.
|
|
4782
4894
|
*/
|
|
4783
4895
|
metadata?: ChromecastMetadataDescription;
|
|
4896
|
+
/**
|
|
4897
|
+
* CMCD configuration.
|
|
4898
|
+
*
|
|
4899
|
+
* @remarks
|
|
4900
|
+
* <br/> - Available since v11.4.0.
|
|
4901
|
+
*/
|
|
4902
|
+
cmcd?: CmcdSourceConfiguration;
|
|
4784
4903
|
}
|
|
4785
4904
|
/**
|
|
4786
4905
|
* Describes the configuration of a player's source.
|
|
@@ -5031,7 +5150,6 @@ interface BaseSource {
|
|
|
5031
5150
|
* @remarks
|
|
5032
5151
|
* <br/> - Available since v5.9.0
|
|
5033
5152
|
* <br/> - Only 'cea608' and 'emsg' can currently be ignored.
|
|
5034
|
-
* <br/> - Only for DASH and HLS playback.
|
|
5035
5153
|
*
|
|
5036
5154
|
*/
|
|
5037
5155
|
ignoreEmbeddedTextTrackTypes?: TextTrackType[];
|
|
@@ -9204,6 +9322,13 @@ interface TheoAdDescription extends AdDescription {
|
|
|
9204
9322
|
* The Google DAI asset key which will be used as a fallback source when THEOads is not supported.
|
|
9205
9323
|
*/
|
|
9206
9324
|
daiAssetKey?: string;
|
|
9325
|
+
/**
|
|
9326
|
+
* The URL of the break manifest.
|
|
9327
|
+
*
|
|
9328
|
+
* @remarks
|
|
9329
|
+
* <br/> - The break manifest describes the upcoming ad breaks in the stream.
|
|
9330
|
+
*/
|
|
9331
|
+
breakManifestUrl?: string;
|
|
9207
9332
|
}
|
|
9208
9333
|
/**
|
|
9209
9334
|
* Describes how and when the layout of a THEOads ad break should be overridden:
|
|
@@ -10328,6 +10453,7 @@ interface IntentToFallbackEvent extends Event<'intenttofallback'> {
|
|
|
10328
10453
|
* Fired when the player enters bad network mode.
|
|
10329
10454
|
*
|
|
10330
10455
|
* @category THEOlive
|
|
10456
|
+
* @deprecated Bad network mode is no longer supported. This event will be removed in the next major version.
|
|
10331
10457
|
* @public
|
|
10332
10458
|
*/
|
|
10333
10459
|
interface EnterBadNetworkModeEvent extends Event<'enterbadnetworkmode'> {
|
|
@@ -10336,6 +10462,7 @@ interface EnterBadNetworkModeEvent extends Event<'enterbadnetworkmode'> {
|
|
|
10336
10462
|
* Fired when the player exits bad network mode.
|
|
10337
10463
|
*
|
|
10338
10464
|
* @category THEOlive
|
|
10465
|
+
* @deprecated Bad network mode is no longer supported. This event will be removed in the next major version.
|
|
10339
10466
|
* @public
|
|
10340
10467
|
*/
|
|
10341
10468
|
interface ExitBadNetworkModeEvent extends Event<'exitbadnetworkmode'> {
|
|
@@ -10352,7 +10479,13 @@ interface TheoLiveApiEventMap {
|
|
|
10352
10479
|
readonly endpointloaded: EndpointLoadedEvent;
|
|
10353
10480
|
readonly distributionoffline: DistributionOfflineEvent;
|
|
10354
10481
|
readonly intenttofallback: IntentToFallbackEvent;
|
|
10482
|
+
/**
|
|
10483
|
+
* @deprecated Bad network mode is no longer supported. This event will be removed in the next major version.
|
|
10484
|
+
*/
|
|
10355
10485
|
readonly enterbadnetworkmode: EnterBadNetworkModeEvent;
|
|
10486
|
+
/**
|
|
10487
|
+
* @deprecated Bad network mode is no longer supported. This event will be removed in the next major version.
|
|
10488
|
+
*/
|
|
10356
10489
|
readonly exitbadnetworkmode: ExitBadNetworkModeEvent;
|
|
10357
10490
|
}
|
|
10358
10491
|
/**
|
|
@@ -10371,6 +10504,14 @@ interface TheoLivePublication {
|
|
|
10371
10504
|
* @public
|
|
10372
10505
|
*/
|
|
10373
10506
|
interface TheoLiveApi extends EventDispatcher<TheoLiveApiEventMap> {
|
|
10507
|
+
/**
|
|
10508
|
+
* When set to true, the player enters "bad network mode" and will immediately switch to the lowest quality.
|
|
10509
|
+
* Once the network conditions improve, the player will automatically switch to a better quality and exit bad network mode.
|
|
10510
|
+
*
|
|
10511
|
+
* @deprecated
|
|
10512
|
+
* Bad network mode is no longer supported, and this API is now a no-op.
|
|
10513
|
+
* It will be removed in the next major version.
|
|
10514
|
+
*/
|
|
10374
10515
|
badNetworkMode: boolean;
|
|
10375
10516
|
/**
|
|
10376
10517
|
* Get or set the auth token that will be used when requesting a manifest or segment.
|
|
@@ -10384,11 +10525,44 @@ interface TheoLiveApi extends EventDispatcher<TheoLiveApiEventMap> {
|
|
|
10384
10525
|
* @public
|
|
10385
10526
|
*/
|
|
10386
10527
|
interface Endpoint {
|
|
10528
|
+
/**
|
|
10529
|
+
* The source of this endpoint.
|
|
10530
|
+
*
|
|
10531
|
+
* For most endpoint types, this is the source URL string.
|
|
10532
|
+
* For millicast endpoints, this is a {@link ChannelMillicastSource} object.
|
|
10533
|
+
*/
|
|
10534
|
+
src: string | ChannelMillicastSource;
|
|
10535
|
+
/**
|
|
10536
|
+
* The type of source (e.g. 'hesp', 'hls', 'hlsMpegTs', 'millicast', 'dai').
|
|
10537
|
+
*/
|
|
10538
|
+
srcType: string;
|
|
10539
|
+
/**
|
|
10540
|
+
* The provider of this endpoint (e.g. 'optiview', 'mediakind').
|
|
10541
|
+
*/
|
|
10542
|
+
provider?: string;
|
|
10543
|
+
/**
|
|
10544
|
+
* @deprecated Use {@link src} with {@link srcType} `'hesp'` instead. Only populated for V1/V2 distributions.
|
|
10545
|
+
*/
|
|
10387
10546
|
hespSrc?: string;
|
|
10547
|
+
/**
|
|
10548
|
+
* @deprecated Use {@link src} with {@link srcType} `'hls'` instead. Only populated for V1/V2 distributions.
|
|
10549
|
+
*/
|
|
10388
10550
|
hlsSrc?: string;
|
|
10551
|
+
/**
|
|
10552
|
+
* @deprecated Use {@link src} with {@link srcType} `'hlsMpegTs'` instead. Only populated for V1/V2 distributions.
|
|
10553
|
+
*/
|
|
10389
10554
|
hlsMpegTsSrc?: string;
|
|
10555
|
+
/**
|
|
10556
|
+
* @deprecated Use {@link src} with {@link srcType} `'millicast'` instead. Only populated for V1/V2 distributions.
|
|
10557
|
+
*/
|
|
10390
10558
|
millicastSrc?: ChannelMillicastSource;
|
|
10559
|
+
/**
|
|
10560
|
+
* @deprecated Only populated for V1/V2 distributions.
|
|
10561
|
+
*/
|
|
10391
10562
|
adSrc?: string;
|
|
10563
|
+
/**
|
|
10564
|
+
* @deprecated Only populated for V1/V2 distributions.
|
|
10565
|
+
*/
|
|
10392
10566
|
daiAssetKey?: string;
|
|
10393
10567
|
cdn?: string;
|
|
10394
10568
|
weight: number;
|
|
@@ -10446,16 +10620,30 @@ interface PlayoutDelay {
|
|
|
10446
10620
|
*/
|
|
10447
10621
|
interface ChannelDrmConfigResponse {
|
|
10448
10622
|
integration: string;
|
|
10449
|
-
widevine?:
|
|
10450
|
-
|
|
10451
|
-
|
|
10452
|
-
|
|
10453
|
-
|
|
10454
|
-
|
|
10455
|
-
|
|
10456
|
-
|
|
10457
|
-
|
|
10458
|
-
|
|
10623
|
+
widevine?: ChannelDrmKeySystemResponse;
|
|
10624
|
+
playready?: ChannelDrmKeySystemResponse;
|
|
10625
|
+
fairplay?: FairPlayChannelDrmKeySystemResponse;
|
|
10626
|
+
}
|
|
10627
|
+
/**
|
|
10628
|
+
* The key system configuration of a THEOlive endpoint.
|
|
10629
|
+
*
|
|
10630
|
+
* @category THEOlive
|
|
10631
|
+
* @public
|
|
10632
|
+
*/
|
|
10633
|
+
interface ChannelDrmKeySystemResponse {
|
|
10634
|
+
licenseUrl: string;
|
|
10635
|
+
queryParameters: {
|
|
10636
|
+
[key: string]: any;
|
|
10637
|
+
} | undefined;
|
|
10638
|
+
}
|
|
10639
|
+
/**
|
|
10640
|
+
* The FairPlay key system configuration of a THEOlive endpoint.
|
|
10641
|
+
*
|
|
10642
|
+
* @category THEOlive
|
|
10643
|
+
* @public
|
|
10644
|
+
*/
|
|
10645
|
+
interface FairPlayChannelDrmKeySystemResponse extends ChannelDrmKeySystemResponse {
|
|
10646
|
+
certificateUrl: string;
|
|
10459
10647
|
}
|
|
10460
10648
|
|
|
10461
10649
|
/**
|
|
@@ -13942,4 +14130,4 @@ declare function registerContentProtectionIntegration(integrationId: string, key
|
|
|
13942
14130
|
declare const utils: CommonUtils;
|
|
13943
14131
|
|
|
13944
14132
|
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 };
|
|
14133
|
+
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, ChannelDrmKeySystemResponse, 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, FairPlayChannelDrmKeySystemResponse, 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 };
|