@theoplayer/extended 8.5.1 → 8.6.1
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 +3 -3
- package/THEOplayer.chromeless.js +3 -3
- package/THEOplayer.common.d.ts +308 -234
- 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/iframe.html +1 -1
- package/package.json +1 -1
- package/theoplayer.d.js +3 -3
package/THEOplayer.common.d.ts
CHANGED
|
@@ -968,6 +968,17 @@ interface GoogleImaConfiguration {
|
|
|
968
968
|
* @internal
|
|
969
969
|
*/
|
|
970
970
|
useNativeIma: boolean;
|
|
971
|
+
/**
|
|
972
|
+
* Whether to use an ad UI element for clickthrough and displaying other ad UI.
|
|
973
|
+
*
|
|
974
|
+
* @remarks
|
|
975
|
+
* <br/> - Optional toggle for turning on usage of the adUiElement when using Google DAI SSAI. This is
|
|
976
|
+
* necessary for showing ads if they have UI specified, such as UI for GDPR compliance. If ads have extra
|
|
977
|
+
* UI elements specified and this is not enabled, ads with UI will not play. Enabling this option will
|
|
978
|
+
* remove the Learn More button and disable keyboard interactions with the ad.
|
|
979
|
+
* <br/> - This only applies to Google DAI SSAI content. IMA CSAI always uses the adUiElement.
|
|
980
|
+
*/
|
|
981
|
+
useAdUiElementForSsai?: boolean;
|
|
971
982
|
/**
|
|
972
983
|
* The maximum recommended bitrate in kbit/s. Ads with a bitrate below the specified maximum will be picked.
|
|
973
984
|
*
|
|
@@ -1162,6 +1173,14 @@ interface GoogleImaAd extends Ad {
|
|
|
1162
1173
|
* <br/> - This corresponds with the apiFramework specified in vast.
|
|
1163
1174
|
*/
|
|
1164
1175
|
apiFramework: string | undefined;
|
|
1176
|
+
/**
|
|
1177
|
+
* The description of the ad from the VAST response.
|
|
1178
|
+
*
|
|
1179
|
+
* @remarks
|
|
1180
|
+
* <br/> - Available since 8.6.0.
|
|
1181
|
+
* <br/> - Available for `google-ima` and `google-dai` integrations only.
|
|
1182
|
+
*/
|
|
1183
|
+
description: string | undefined;
|
|
1165
1184
|
}
|
|
1166
1185
|
/**
|
|
1167
1186
|
* Represents the information regarding the universal identifier of an ad.
|
|
@@ -3458,6 +3477,10 @@ interface TextTrackCueEventMap {
|
|
|
3458
3477
|
* @public
|
|
3459
3478
|
*/
|
|
3460
3479
|
interface TextTrackCue extends EventDispatcher<TextTrackCueEventMap> {
|
|
3480
|
+
/**
|
|
3481
|
+
* @internal
|
|
3482
|
+
*/
|
|
3483
|
+
_internalCue: unknown;
|
|
3461
3484
|
/**
|
|
3462
3485
|
* The text track of the cue.
|
|
3463
3486
|
*/
|
|
@@ -4044,7 +4067,11 @@ interface TextTrack extends Track, EventDispatcher<TextTrackEventMap> {
|
|
|
4044
4067
|
* @public
|
|
4045
4068
|
*/
|
|
4046
4069
|
interface TheoLiveSource extends TypedSource {
|
|
4047
|
-
|
|
4070
|
+
type: 'theolive';
|
|
4071
|
+
/**
|
|
4072
|
+
* @deprecated use {@link TheoLiveSource.type} instead.
|
|
4073
|
+
*/
|
|
4074
|
+
integration?: 'theolive';
|
|
4048
4075
|
}
|
|
4049
4076
|
|
|
4050
4077
|
/**
|
|
@@ -4066,7 +4093,14 @@ interface MillicastSource extends TypedSource {
|
|
|
4066
4093
|
*
|
|
4067
4094
|
* @see https://millicast.github.io/millicast-sdk/global.html#DirectorSubscriberOptions
|
|
4068
4095
|
*/
|
|
4069
|
-
|
|
4096
|
+
src: string;
|
|
4097
|
+
/**
|
|
4098
|
+
* The name of the Millicast stream to subscribe to.
|
|
4099
|
+
*
|
|
4100
|
+
* @see https://millicast.github.io/millicast-sdk/global.html#DirectorSubscriberOptions
|
|
4101
|
+
* @deprecated use {@link MillicastSource.src} instead
|
|
4102
|
+
*/
|
|
4103
|
+
streamName?: string;
|
|
4070
4104
|
/**
|
|
4071
4105
|
* The Millicast account identifier.
|
|
4072
4106
|
*
|
|
@@ -4142,6 +4176,14 @@ interface SourceLatencyConfiguration {
|
|
|
4142
4176
|
* @defaultValue `1.08`
|
|
4143
4177
|
*/
|
|
4144
4178
|
maximumPlaybackRate?: number;
|
|
4179
|
+
/**
|
|
4180
|
+
* The amount of seconds that target latency can be temporarily increased to counteract unstable
|
|
4181
|
+
* network conditions.
|
|
4182
|
+
*
|
|
4183
|
+
* @remarks
|
|
4184
|
+
* <br/> - This only works for HESP and THEOlive streams.
|
|
4185
|
+
*/
|
|
4186
|
+
leniency?: number;
|
|
4145
4187
|
}
|
|
4146
4188
|
|
|
4147
4189
|
/**
|
|
@@ -4634,6 +4676,7 @@ interface TypedSource extends BaseSource {
|
|
|
4634
4676
|
* <br/> - `'video/mp4'`, `'video/webm'` and other formats: The media resource should use native HTML5 playback if supported by the browser.
|
|
4635
4677
|
* <br/> - `'application/vnd.theo.hesp+json'`: The media resource is an HESP stream.
|
|
4636
4678
|
* <br/> - `'millicast'`: The media resource is a {@link MillicastSource | Millicast stream}.
|
|
4679
|
+
* <br/> - `'theolive'`: The media resource is a {@link TheoLiveSource | THEOlive stream}.
|
|
4637
4680
|
*
|
|
4638
4681
|
* @remarks
|
|
4639
4682
|
* <br/> - Available since v2.4.0.
|
|
@@ -4680,6 +4723,7 @@ type StreamType = 'live' | 'dvr' | 'vod';
|
|
|
4680
4723
|
* The integration identifier of a source specific to a pre-integration, represented by a value from the following list:
|
|
4681
4724
|
* <br/> - `'verizon-media'`: The source is a {@link VerizonMediaSource}
|
|
4682
4725
|
* <br/> - `'mediatailor'`: The source contains the MediaTailor initialization url
|
|
4726
|
+
* <br/> - `'theolive'`: The source is a {@link TheoLiveSource}. (Deprecated, see {@link TheoLiveSource.integration})
|
|
4683
4727
|
*
|
|
4684
4728
|
* @category Source
|
|
4685
4729
|
* @public
|
|
@@ -8618,38 +8662,6 @@ interface ContentProtectionErrorEvent extends Event<'contentprotectionerror'> {
|
|
|
8618
8662
|
readonly systemCode?: number;
|
|
8619
8663
|
}
|
|
8620
8664
|
|
|
8621
|
-
/**
|
|
8622
|
-
* A latency configuration object for managing the live offset of the player.
|
|
8623
|
-
* The buffer end is seen as the live point, so the live offset is defined as the difference between the buffer end and the current time.
|
|
8624
|
-
* @remarks
|
|
8625
|
-
* <br/> - Note: This API is in an experimental stage and may be subject to breaking changes.
|
|
8626
|
-
* <br/> - Only available with the feature `'hesp'`.
|
|
8627
|
-
* <br/> - Only applies to HESP streams.
|
|
8628
|
-
*
|
|
8629
|
-
* @category HESP
|
|
8630
|
-
* @public
|
|
8631
|
-
*/
|
|
8632
|
-
interface HespLatencyConfiguration {
|
|
8633
|
-
/**
|
|
8634
|
-
* The start of the target live window.
|
|
8635
|
-
* If the live offset becomes smaller than this value, the player will slow down.
|
|
8636
|
-
*/
|
|
8637
|
-
readonly windowStart: number;
|
|
8638
|
-
/**
|
|
8639
|
-
* The live offset that the player will aim for. When correcting the offset by tuning the playbackRate,
|
|
8640
|
-
* the player will stop correcting when it reaches this value.
|
|
8641
|
-
*/
|
|
8642
|
-
readonly target: number;
|
|
8643
|
-
/**
|
|
8644
|
-
* The end of the target live window.
|
|
8645
|
-
* If the live offset becomes higher than this value, the player will speed up.
|
|
8646
|
-
*/
|
|
8647
|
-
readonly windowEnd: number;
|
|
8648
|
-
/**
|
|
8649
|
-
* The live offset at which the player will automatically trigger a live seek.
|
|
8650
|
-
*/
|
|
8651
|
-
readonly maxOffset: number;
|
|
8652
|
-
}
|
|
8653
8665
|
/**
|
|
8654
8666
|
* The events fired by the {@link HespApi}.
|
|
8655
8667
|
* @remarks
|
|
@@ -8690,25 +8702,6 @@ interface HespApi extends EventDispatcher<HespApiEventMap> {
|
|
|
8690
8702
|
* True if the HESP playback is in live mode.
|
|
8691
8703
|
*/
|
|
8692
8704
|
readonly isLive: boolean;
|
|
8693
|
-
/**
|
|
8694
|
-
* Can be set to change the latency of the player.
|
|
8695
|
-
* A HespLatencyConfiguration object which gives latency configuration of the player.
|
|
8696
|
-
*
|
|
8697
|
-
* @deprecated use {@link ChromelessPlayer.latency} instead
|
|
8698
|
-
*/
|
|
8699
|
-
latency: HespLatencyConfiguration;
|
|
8700
|
-
/**
|
|
8701
|
-
* The `currentTime` equivalent of the latest frame generated on the HESP server.
|
|
8702
|
-
* This can be `undefined` if no suitable estimate is available.
|
|
8703
|
-
* This value should be accurate up to the largest of a frame duration or a RTT.
|
|
8704
|
-
*/
|
|
8705
|
-
readonly currentServerLiveTime: number | undefined;
|
|
8706
|
-
/**
|
|
8707
|
-
* The current latency measured between the `currentServerLiveTime` and client's `currentTime`.
|
|
8708
|
-
* This can be `undefined` if no `currentServerLiveTime` is available.
|
|
8709
|
-
* This value should be accurate up to the largest of a frame duration or a RTT.
|
|
8710
|
-
*/
|
|
8711
|
-
readonly currentLatency: number | undefined;
|
|
8712
8705
|
/**
|
|
8713
8706
|
* Returns the manifest for the current HESP source.
|
|
8714
8707
|
* @remarks
|
|
@@ -9150,7 +9143,7 @@ interface EncryptedEvent extends Event<'encrypted'> {
|
|
|
9150
9143
|
/**
|
|
9151
9144
|
* The latency manager, used to control low-latency live playback.
|
|
9152
9145
|
*
|
|
9153
|
-
* @
|
|
9146
|
+
* @remarks This is only used for live playback.
|
|
9154
9147
|
*
|
|
9155
9148
|
* @category Player
|
|
9156
9149
|
* @public
|
|
@@ -9323,6 +9316,256 @@ interface TheoLiveApi extends EventDispatcher<TheoLiveApiEventMap> {
|
|
|
9323
9316
|
preloadPublications(publicationIds: string[]): Promise<TheoLivePublication[]>;
|
|
9324
9317
|
}
|
|
9325
9318
|
|
|
9319
|
+
/**
|
|
9320
|
+
* A WebVTT-defined region scroll setting, represented by a value from the following list:
|
|
9321
|
+
* <br/> - `''`: None. Cues in the region stay fixed at the location they were first painted in.
|
|
9322
|
+
* <br/> - `'up'`: Up. Cues in the region will be added at the bottom of the region and push any already displayed cues in the region up until all lines of the new cue are visible in the region.
|
|
9323
|
+
*
|
|
9324
|
+
* @category Media and Text Tracks
|
|
9325
|
+
* @public
|
|
9326
|
+
*/
|
|
9327
|
+
type VTTScrollSetting = '' | /* none */ 'up';
|
|
9328
|
+
/**
|
|
9329
|
+
* Represents a WebVTT region.
|
|
9330
|
+
*
|
|
9331
|
+
* @category Media and Text Tracks
|
|
9332
|
+
* @public
|
|
9333
|
+
*/
|
|
9334
|
+
interface WebVTTRegion {
|
|
9335
|
+
/**
|
|
9336
|
+
* The identifier of the region.
|
|
9337
|
+
*/
|
|
9338
|
+
readonly id: string;
|
|
9339
|
+
/**
|
|
9340
|
+
* The number of lines in the region.
|
|
9341
|
+
*/
|
|
9342
|
+
readonly lines: number;
|
|
9343
|
+
/**
|
|
9344
|
+
* The horizontal coordinate of the anchor point of the region to the viewport, as a percentage of the video width.
|
|
9345
|
+
*/
|
|
9346
|
+
readonly regionAnchorX: number;
|
|
9347
|
+
/**
|
|
9348
|
+
* The vertical coordinate of the anchor point of the region to the viewport, as a percentage of the video height.
|
|
9349
|
+
*/
|
|
9350
|
+
readonly regionAnchorY: number;
|
|
9351
|
+
/**
|
|
9352
|
+
* The scroll setting of the region.
|
|
9353
|
+
*/
|
|
9354
|
+
readonly scrollValue: VTTScrollSetting;
|
|
9355
|
+
/**
|
|
9356
|
+
* The horizontal coordinate of the point of the viewport the anchor point of the region is anchored to, as a percentage of the video width.
|
|
9357
|
+
*/
|
|
9358
|
+
readonly viewportAnchorX: number;
|
|
9359
|
+
/**
|
|
9360
|
+
* The veritcal coordinate of the point of the viewport the anchor point of the region is anchored to, as a percentage of the video height.
|
|
9361
|
+
*/
|
|
9362
|
+
readonly viewportAnchorY: number;
|
|
9363
|
+
/**
|
|
9364
|
+
* The width of the region, as a percentage of the video width.
|
|
9365
|
+
*/
|
|
9366
|
+
readonly width: number;
|
|
9367
|
+
/**
|
|
9368
|
+
* The identifier of the region.
|
|
9369
|
+
*
|
|
9370
|
+
* @deprecated Superseded by {@link WebVTTRegion.id}.
|
|
9371
|
+
*/
|
|
9372
|
+
readonly identifier: string;
|
|
9373
|
+
}
|
|
9374
|
+
|
|
9375
|
+
/**
|
|
9376
|
+
* A WebVTT-defined writing direction, represented by a value from the following list:
|
|
9377
|
+
* <br/> - `''`: Horizontal. A line extends horizontally and is offset vertically from the video viewport’s top edge, with consecutive lines displayed below each other.
|
|
9378
|
+
* <br/> - `'rl'`: Vertical right-to-left. A line extends vertically and is offset horizontally from the video viewport’s right edge, with consecutive lines displayed to the left of each other.
|
|
9379
|
+
* <br/> - `'lr'`: vertical left-to-right. A line extends vertically and is offset horizontally from the video viewport’s left edge, with consecutive lines displayed to the right of each other.
|
|
9380
|
+
*
|
|
9381
|
+
* @category Media and Text Tracks
|
|
9382
|
+
* @public
|
|
9383
|
+
*/
|
|
9384
|
+
type VTTDirectionSetting = '' | 'rl' | 'lr';
|
|
9385
|
+
/**
|
|
9386
|
+
* A WebVTT-defined line alignment, represented by a value from the following list:
|
|
9387
|
+
* <br/> - `'start'`: The cue box's start is aligned at a specified line.
|
|
9388
|
+
* <br/> - `'center'`: The cue box's center is aligned at a specified line.
|
|
9389
|
+
* <br/> - `'end'`: The cue box's end is aligned at a specified line.
|
|
9390
|
+
*
|
|
9391
|
+
* @category Media and Text Tracks
|
|
9392
|
+
* @public
|
|
9393
|
+
*/
|
|
9394
|
+
type VTTLineAlignSetting = 'start' | 'center' | 'end';
|
|
9395
|
+
/**
|
|
9396
|
+
* A WebVTT-defined text alignment, represented by a value from the following list:
|
|
9397
|
+
* <br/> - `'start'`: The text of each line is aligned towards the start side of the box.
|
|
9398
|
+
* <br/> - `'center'`: The text of each line is aligned at the center of the box.
|
|
9399
|
+
* <br/> - `'end'`: The text of each line is aligned towards the end side of the box.
|
|
9400
|
+
* <br/> - `'left'`: The text of each line is aligned to the box’s left side for horizontal cues, or top side otherwise.
|
|
9401
|
+
* <br/> - `'right'`: The text of each line is aligned to the box’s right side for horizontal cues, or bottom side otherwise.
|
|
9402
|
+
*
|
|
9403
|
+
* @category Media and Text Tracks
|
|
9404
|
+
* @public
|
|
9405
|
+
*/
|
|
9406
|
+
type VTTAlignSetting = 'start' | 'center' | 'end' | 'left' | 'right';
|
|
9407
|
+
/**
|
|
9408
|
+
* A WebVTT-defined position alignment, represented by a value from the following list:
|
|
9409
|
+
* <br/> - `'line-left'`: The cue box's start is aligned at a specified position.
|
|
9410
|
+
* <br/> - `'center'`: The cue box's center is aligned at a specified position.
|
|
9411
|
+
* <br/> - `'line-right'`: The cue box's end is aligned at a specified position.
|
|
9412
|
+
* <br/> - `'auto'`: The cue box's alignment is dependent on its text alignment setting.
|
|
9413
|
+
*
|
|
9414
|
+
* @category Media and Text Tracks
|
|
9415
|
+
* @public
|
|
9416
|
+
*/
|
|
9417
|
+
type VTTPositionAlignSetting = 'line-left' | 'center' | 'line-right' | 'auto';
|
|
9418
|
+
/**
|
|
9419
|
+
* A WebVTT-defined line offset, represented by a value from the following list:
|
|
9420
|
+
* <br/> - a `number`: The line offset is expressed in a number of text lines or a percentage of the video viewport height or width.
|
|
9421
|
+
* <br/> - `'auto'`: The line offset depends on the other showing tracks.
|
|
9422
|
+
*
|
|
9423
|
+
* @remarks
|
|
9424
|
+
* <br/> - The semantics of the `number` variant are dependent on {@link WebVTTCue.snapToLines}.
|
|
9425
|
+
*
|
|
9426
|
+
* @category Media and Text Tracks
|
|
9427
|
+
* @public
|
|
9428
|
+
*/
|
|
9429
|
+
type VTTLine = number | 'auto';
|
|
9430
|
+
/**
|
|
9431
|
+
* A WebVTT-defined position, represented by a value from the following list:
|
|
9432
|
+
* <br/> - a number: The position is expressed as a percentage value.
|
|
9433
|
+
* <br/> - `'auto'`: The position depends on the text alignment of the cue.
|
|
9434
|
+
*
|
|
9435
|
+
* @category Media and Text Tracks
|
|
9436
|
+
* @public
|
|
9437
|
+
*/
|
|
9438
|
+
type VTTPosition = number | 'auto';
|
|
9439
|
+
/**
|
|
9440
|
+
* Represents a cue of a {@link https://www.w3.org/TR/webvtt1/ | WebVTT} text track.
|
|
9441
|
+
*
|
|
9442
|
+
* @category Media and Text Tracks
|
|
9443
|
+
* @public
|
|
9444
|
+
*/
|
|
9445
|
+
interface WebVTTCue extends TextTrackCue {
|
|
9446
|
+
/**
|
|
9447
|
+
* The text alignment of the cue.
|
|
9448
|
+
*/
|
|
9449
|
+
align: VTTAlignSetting;
|
|
9450
|
+
/**
|
|
9451
|
+
* The content of the cue in raw unparsed form.
|
|
9452
|
+
*/
|
|
9453
|
+
content: string;
|
|
9454
|
+
/**
|
|
9455
|
+
* The line offset of the cue.
|
|
9456
|
+
*/
|
|
9457
|
+
line: VTTLine;
|
|
9458
|
+
/**
|
|
9459
|
+
* The line alignment of the cue.
|
|
9460
|
+
*/
|
|
9461
|
+
lineAlign: VTTLineAlignSetting;
|
|
9462
|
+
/**
|
|
9463
|
+
* The position of the cue.
|
|
9464
|
+
*/
|
|
9465
|
+
position: VTTPosition;
|
|
9466
|
+
/**
|
|
9467
|
+
* The position alignment of the cue.
|
|
9468
|
+
*/
|
|
9469
|
+
positionAlign: VTTPositionAlignSetting;
|
|
9470
|
+
/**
|
|
9471
|
+
* The region of the cue.
|
|
9472
|
+
*/
|
|
9473
|
+
region: WebVTTRegion | null;
|
|
9474
|
+
/**
|
|
9475
|
+
* Whether snap-to-lines is enabled for the cue.
|
|
9476
|
+
*
|
|
9477
|
+
* @remarks
|
|
9478
|
+
* <br/> - This property indicates whether {@link WebVTTCue.line} is an integer number of lines or a percentage of the dimension of the video.
|
|
9479
|
+
*/
|
|
9480
|
+
snapToLines: boolean;
|
|
9481
|
+
/**
|
|
9482
|
+
* The size of the cue's box.
|
|
9483
|
+
*
|
|
9484
|
+
* @remarks
|
|
9485
|
+
* <br/> - This property is to be interpreted as a percentage of the video, relative to the cue direction stated by {@link WebVTTCue.vertical}.
|
|
9486
|
+
*/
|
|
9487
|
+
size: number;
|
|
9488
|
+
/**
|
|
9489
|
+
* The text of the cue in raw unparsed form.
|
|
9490
|
+
*/
|
|
9491
|
+
text: string;
|
|
9492
|
+
/**
|
|
9493
|
+
* The writing direction of the cue.
|
|
9494
|
+
*/
|
|
9495
|
+
vertical: VTTDirectionSetting;
|
|
9496
|
+
}
|
|
9497
|
+
|
|
9498
|
+
/**
|
|
9499
|
+
* Represents a text track of a media resource that can be filled with cues during playback.
|
|
9500
|
+
*
|
|
9501
|
+
* @category Media and Text Tracks
|
|
9502
|
+
* @public
|
|
9503
|
+
*/
|
|
9504
|
+
interface CustomWebVTTTextTrack extends TextTrack {
|
|
9505
|
+
/**
|
|
9506
|
+
* The kind of the text track.
|
|
9507
|
+
*/
|
|
9508
|
+
readonly type: 'webvtt';
|
|
9509
|
+
/**
|
|
9510
|
+
* Adds a cue to the text track.
|
|
9511
|
+
* @param startTime The start time of the cue.
|
|
9512
|
+
* @param endTime The end time of the cue.
|
|
9513
|
+
* @param content The content of the cue.
|
|
9514
|
+
*/
|
|
9515
|
+
addCue(startTime: number, endTime: number, content: string): WebVTTCue;
|
|
9516
|
+
/**
|
|
9517
|
+
* Removed a cue from the text track.
|
|
9518
|
+
* @param cue The cue to be removed.
|
|
9519
|
+
*/
|
|
9520
|
+
removeCue(cue: WebVTTCue): void;
|
|
9521
|
+
}
|
|
9522
|
+
|
|
9523
|
+
/**
|
|
9524
|
+
* Options for creating a custom text track.
|
|
9525
|
+
*
|
|
9526
|
+
* @category Media and Text Tracks
|
|
9527
|
+
* @public
|
|
9528
|
+
*/
|
|
9529
|
+
interface CustomTextTrackOptions {
|
|
9530
|
+
/**
|
|
9531
|
+
* The type of cues this track will support.
|
|
9532
|
+
*/
|
|
9533
|
+
type: SupportedCustomTextTrackCueTypes;
|
|
9534
|
+
/**
|
|
9535
|
+
* The kind of the text track, represented by a value from the following list:
|
|
9536
|
+
* <br/> - `'subtitles'`: The track contains subtitles.
|
|
9537
|
+
* <br/> - `'captions'`: The track contains closed captions, a translation of dialogue and sound effects.
|
|
9538
|
+
* <br/> - `'descriptions'`: The track contains descriptions, a textual description of the video.
|
|
9539
|
+
* <br/> - `'chapters'`: The track contains chapter titles.
|
|
9540
|
+
* <br/> - `'metadata'`: The track contains metadata. This track will not serve display purposes.
|
|
9541
|
+
*/
|
|
9542
|
+
kind: string;
|
|
9543
|
+
/**
|
|
9544
|
+
* The label of the text track.
|
|
9545
|
+
*/
|
|
9546
|
+
label?: string;
|
|
9547
|
+
/**
|
|
9548
|
+
* The language of the text track.
|
|
9549
|
+
*/
|
|
9550
|
+
language?: string;
|
|
9551
|
+
}
|
|
9552
|
+
/**
|
|
9553
|
+
* The supported cue types for custom text tracks.
|
|
9554
|
+
*
|
|
9555
|
+
* @category Media and Text Tracks
|
|
9556
|
+
* @public
|
|
9557
|
+
*/
|
|
9558
|
+
type SupportedCustomTextTrackCueTypes = 'webvtt';
|
|
9559
|
+
/**
|
|
9560
|
+
* The mapping between the type in {@link CustomTextTrackOptions} and which kind of TextTrack the `player.addTextTrack()` API will return.
|
|
9561
|
+
*
|
|
9562
|
+
* @category Media and Text Tracks
|
|
9563
|
+
* @public
|
|
9564
|
+
*/
|
|
9565
|
+
interface CustomTextTrackMap {
|
|
9566
|
+
webvtt: CustomWebVTTTextTrack;
|
|
9567
|
+
}
|
|
9568
|
+
|
|
9326
9569
|
/**
|
|
9327
9570
|
* The events fired by the {@link ChromelessPlayer}.
|
|
9328
9571
|
*
|
|
@@ -9790,6 +10033,16 @@ declare class ChromelessPlayer implements EventDispatcher<PlayerEventMap> {
|
|
|
9790
10033
|
* {@inheritDoc EventDispatcher.removeEventListener}
|
|
9791
10034
|
*/
|
|
9792
10035
|
removeEventListener<TType extends StringKeyOf<PlayerEventMap>>(type: TType | readonly TType[], listener: EventListener<PlayerEventMap[TType]>): void;
|
|
10036
|
+
/**
|
|
10037
|
+
* Adds a new custom text track to the player where cues can be added externally.
|
|
10038
|
+
*
|
|
10039
|
+
* @param options The options for creating the track.
|
|
10040
|
+
*
|
|
10041
|
+
* @remarks
|
|
10042
|
+
* <br/> - This needs to be called after the player dispatches a `loadedmetadata` event.
|
|
10043
|
+
* <br/> - All text tracks added using this method will be cleared when the source of the player changes.
|
|
10044
|
+
*/
|
|
10045
|
+
addTextTrack<TOptions extends CustomTextTrackOptions>(options: TOptions): CustomTextTrackMap[TOptions['type']];
|
|
9793
10046
|
/**
|
|
9794
10047
|
* The web audio API.
|
|
9795
10048
|
*
|
|
@@ -11978,185 +12231,6 @@ interface ID3Cue extends TextTrackCue {
|
|
|
11978
12231
|
readonly content: ID3Frame;
|
|
11979
12232
|
}
|
|
11980
12233
|
|
|
11981
|
-
/**
|
|
11982
|
-
* A WebVTT-defined region scroll setting, represented by a value from the following list:
|
|
11983
|
-
* <br/> - `''`: None. Cues in the region stay fixed at the location they were first painted in.
|
|
11984
|
-
* <br/> - `'up'`: Up. Cues in the region will be added at the bottom of the region and push any already displayed cues in the region up until all lines of the new cue are visible in the region.
|
|
11985
|
-
*
|
|
11986
|
-
* @category Media and Text Tracks
|
|
11987
|
-
* @public
|
|
11988
|
-
*/
|
|
11989
|
-
type VTTScrollSetting = '' | /* none */ 'up';
|
|
11990
|
-
/**
|
|
11991
|
-
* Represents a WebVTT region.
|
|
11992
|
-
*
|
|
11993
|
-
* @category Media and Text Tracks
|
|
11994
|
-
* @public
|
|
11995
|
-
*/
|
|
11996
|
-
interface WebVTTRegion {
|
|
11997
|
-
/**
|
|
11998
|
-
* The identifier of the region.
|
|
11999
|
-
*/
|
|
12000
|
-
readonly id: string;
|
|
12001
|
-
/**
|
|
12002
|
-
* The number of lines in the region.
|
|
12003
|
-
*/
|
|
12004
|
-
readonly lines: number;
|
|
12005
|
-
/**
|
|
12006
|
-
* The horizontal coordinate of the anchor point of the region to the viewport, as a percentage of the video width.
|
|
12007
|
-
*/
|
|
12008
|
-
readonly regionAnchorX: number;
|
|
12009
|
-
/**
|
|
12010
|
-
* The vertical coordinate of the anchor point of the region to the viewport, as a percentage of the video height.
|
|
12011
|
-
*/
|
|
12012
|
-
readonly regionAnchorY: number;
|
|
12013
|
-
/**
|
|
12014
|
-
* The scroll setting of the region.
|
|
12015
|
-
*/
|
|
12016
|
-
readonly scrollValue: VTTScrollSetting;
|
|
12017
|
-
/**
|
|
12018
|
-
* The horizontal coordinate of the point of the viewport the anchor point of the region is anchored to, as a percentage of the video width.
|
|
12019
|
-
*/
|
|
12020
|
-
readonly viewportAnchorX: number;
|
|
12021
|
-
/**
|
|
12022
|
-
* The veritcal coordinate of the point of the viewport the anchor point of the region is anchored to, as a percentage of the video height.
|
|
12023
|
-
*/
|
|
12024
|
-
readonly viewportAnchorY: number;
|
|
12025
|
-
/**
|
|
12026
|
-
* The width of the region, as a percentage of the video width.
|
|
12027
|
-
*/
|
|
12028
|
-
readonly width: number;
|
|
12029
|
-
/**
|
|
12030
|
-
* The identifier of the region.
|
|
12031
|
-
*
|
|
12032
|
-
* @deprecated Superseded by {@link WebVTTRegion.id}.
|
|
12033
|
-
*/
|
|
12034
|
-
readonly identifier: string;
|
|
12035
|
-
}
|
|
12036
|
-
|
|
12037
|
-
/**
|
|
12038
|
-
* A WebVTT-defined writing direction, represented by a value from the following list:
|
|
12039
|
-
* <br/> - `''`: Horizontal. A line extends horizontally and is offset vertically from the video viewport’s top edge, with consecutive lines displayed below each other.
|
|
12040
|
-
* <br/> - `'rl'`: Vertical right-to-left. A line extends vertically and is offset horizontally from the video viewport’s right edge, with consecutive lines displayed to the left of each other.
|
|
12041
|
-
* <br/> - `'lr'`: vertical left-to-right. A line extends vertically and is offset horizontally from the video viewport’s left edge, with consecutive lines displayed to the right of each other.
|
|
12042
|
-
*
|
|
12043
|
-
* @category Media and Text Tracks
|
|
12044
|
-
* @public
|
|
12045
|
-
*/
|
|
12046
|
-
type VTTDirectionSetting = '' | 'rl' | 'lr';
|
|
12047
|
-
/**
|
|
12048
|
-
* A WebVTT-defined line alignment, represented by a value from the following list:
|
|
12049
|
-
* <br/> - `'start'`: The cue box's start is aligned at a specified line.
|
|
12050
|
-
* <br/> - `'center'`: The cue box's center is aligned at a specified line.
|
|
12051
|
-
* <br/> - `'end'`: The cue box's end is aligned at a specified line.
|
|
12052
|
-
*
|
|
12053
|
-
* @category Media and Text Tracks
|
|
12054
|
-
* @public
|
|
12055
|
-
*/
|
|
12056
|
-
type VTTLineAlignSetting = 'start' | 'center' | 'end';
|
|
12057
|
-
/**
|
|
12058
|
-
* A WebVTT-defined text alignment, represented by a value from the following list:
|
|
12059
|
-
* <br/> - `'start'`: The text of each line is aligned towards the start side of the box.
|
|
12060
|
-
* <br/> - `'center'`: The text of each line is aligned at the center of the box.
|
|
12061
|
-
* <br/> - `'end'`: The text of each line is aligned towards the end side of the box.
|
|
12062
|
-
* <br/> - `'left'`: The text of each line is aligned to the box’s left side for horizontal cues, or top side otherwise.
|
|
12063
|
-
* <br/> - `'right'`: The text of each line is aligned to the box’s right side for horizontal cues, or bottom side otherwise.
|
|
12064
|
-
*
|
|
12065
|
-
* @category Media and Text Tracks
|
|
12066
|
-
* @public
|
|
12067
|
-
*/
|
|
12068
|
-
type VTTAlignSetting = 'start' | 'center' | 'end' | 'left' | 'right';
|
|
12069
|
-
/**
|
|
12070
|
-
* A WebVTT-defined position alignment, represented by a value from the following list:
|
|
12071
|
-
* <br/> - `'line-left'`: The cue box's start is aligned at a specified position.
|
|
12072
|
-
* <br/> - `'center'`: The cue box's center is aligned at a specified position.
|
|
12073
|
-
* <br/> - `'line-right'`: The cue box's end is aligned at a specified position.
|
|
12074
|
-
* <br/> - `'auto'`: The cue box's alignment is dependent on its text alignment setting.
|
|
12075
|
-
*
|
|
12076
|
-
* @category Media and Text Tracks
|
|
12077
|
-
* @public
|
|
12078
|
-
*/
|
|
12079
|
-
type VTTPositionAlignSetting = 'line-left' | 'center' | 'line-right' | 'auto';
|
|
12080
|
-
/**
|
|
12081
|
-
* A WebVTT-defined line offset, represented by a value from the following list:
|
|
12082
|
-
* <br/> - a `number`: The line offset is expressed in a number of text lines or a percentage of the video viewport height or width.
|
|
12083
|
-
* <br/> - `'auto'`: The line offset depends on the other showing tracks.
|
|
12084
|
-
*
|
|
12085
|
-
* @remarks
|
|
12086
|
-
* <br/> - The semantics of the `number` variant are dependent on {@link WebVTTCue.snapToLines}.
|
|
12087
|
-
*
|
|
12088
|
-
* @category Media and Text Tracks
|
|
12089
|
-
* @public
|
|
12090
|
-
*/
|
|
12091
|
-
type VTTLine = number | 'auto';
|
|
12092
|
-
/**
|
|
12093
|
-
* A WebVTT-defined position, represented by a value from the following list:
|
|
12094
|
-
* <br/> - a number: The position is expressed as a percentage value.
|
|
12095
|
-
* <br/> - `'auto'`: The position depends on the text alignment of the cue.
|
|
12096
|
-
*
|
|
12097
|
-
* @category Media and Text Tracks
|
|
12098
|
-
* @public
|
|
12099
|
-
*/
|
|
12100
|
-
type VTTPosition = number | 'auto';
|
|
12101
|
-
/**
|
|
12102
|
-
* Represents a cue of a {@link https://www.w3.org/TR/webvtt1/ | WebVTT} text track.
|
|
12103
|
-
*
|
|
12104
|
-
* @category Media and Text Tracks
|
|
12105
|
-
* @public
|
|
12106
|
-
*/
|
|
12107
|
-
interface WebVTTCue extends TextTrackCue {
|
|
12108
|
-
/**
|
|
12109
|
-
* The text alignment of the cue.
|
|
12110
|
-
*/
|
|
12111
|
-
align: VTTAlignSetting;
|
|
12112
|
-
/**
|
|
12113
|
-
* The content of the cue in raw unparsed form.
|
|
12114
|
-
*/
|
|
12115
|
-
content: string;
|
|
12116
|
-
/**
|
|
12117
|
-
* The line offset of the cue.
|
|
12118
|
-
*/
|
|
12119
|
-
line: VTTLine;
|
|
12120
|
-
/**
|
|
12121
|
-
* The line alignment of the cue.
|
|
12122
|
-
*/
|
|
12123
|
-
lineAlign: VTTLineAlignSetting;
|
|
12124
|
-
/**
|
|
12125
|
-
* The position of the cue.
|
|
12126
|
-
*/
|
|
12127
|
-
position: VTTPosition;
|
|
12128
|
-
/**
|
|
12129
|
-
* The position alignment of the cue.
|
|
12130
|
-
*/
|
|
12131
|
-
positionAlign: VTTPositionAlignSetting;
|
|
12132
|
-
/**
|
|
12133
|
-
* The region of the cue.
|
|
12134
|
-
*/
|
|
12135
|
-
region: WebVTTRegion | null;
|
|
12136
|
-
/**
|
|
12137
|
-
* Whether snap-to-lines is enabled for the cue.
|
|
12138
|
-
*
|
|
12139
|
-
* @remarks
|
|
12140
|
-
* <br/> - This property indicates whether {@link WebVTTCue.line} is an integer number of lines or a percentage of the dimension of the video.
|
|
12141
|
-
*/
|
|
12142
|
-
snapToLines: boolean;
|
|
12143
|
-
/**
|
|
12144
|
-
* The size of the cue's box.
|
|
12145
|
-
*
|
|
12146
|
-
* @remarks
|
|
12147
|
-
* <br/> - This property is to be interpreted as a percentage of the video, relative to the cue direction stated by {@link WebVTTCue.vertical}.
|
|
12148
|
-
*/
|
|
12149
|
-
size: number;
|
|
12150
|
-
/**
|
|
12151
|
-
* The text of the cue in raw unparsed form.
|
|
12152
|
-
*/
|
|
12153
|
-
text: string;
|
|
12154
|
-
/**
|
|
12155
|
-
* The writing direction of the cue.
|
|
12156
|
-
*/
|
|
12157
|
-
vertical: VTTDirectionSetting;
|
|
12158
|
-
}
|
|
12159
|
-
|
|
12160
12234
|
/**
|
|
12161
12235
|
* Record of style properties.
|
|
12162
12236
|
* Each entry contains the style property name with associated value.
|
|
@@ -13257,4 +13331,4 @@ declare function registerContentProtectionIntegration(integrationId: string, key
|
|
|
13257
13331
|
*/
|
|
13258
13332
|
declare const utils: CommonUtils;
|
|
13259
13333
|
|
|
13260
|
-
export { ABRConfiguration, ABRMetadata, ABRStrategy, ABRStrategyConfiguration, ABRStrategyType, AES128KeySystemConfiguration, AccessibilityRole, Ad, AdBreak, AdBreakEvent, AdBreakInit, 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, 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, CrossOriginSetting, CsaiAdDescription, CurrentSourceChangeEvent, CustomAdIntegrationKind, 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,
|
|
13334
|
+
export { ABRConfiguration, ABRMetadata, ABRStrategy, ABRStrategyConfiguration, ABRStrategyType, AES128KeySystemConfiguration, AccessibilityRole, Ad, AdBreak, AdBreakEvent, AdBreakInit, 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, 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, CrossOriginSetting, CsaiAdDescription, CurrentSourceChangeEvent, CustomAdIntegrationKind, CustomTextTrackMap, CustomTextTrackOptions, CustomWebVTTTextTrack, 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, 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, MillicastSource, 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, 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, THEOplayerAdDescription, 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, 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, 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, YospaceId, YouboraAnalyticsIntegrationID, YouboraOptions, cache, cast, features, playerSuiteVersion, players, registerContentProtectionIntegration, utils, version, videojs };
|