@theoplayer/extended 6.5.0 → 6.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 +1 -1
- package/THEOplayer.chromeless.esm.js +3 -3
- package/THEOplayer.chromeless.js +3 -3
- package/THEOplayer.common.d.ts +25 -12
- package/THEOplayer.common.esm.js +3 -3
- package/THEOplayer.d.ts +1 -1
- 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/ui.css +1 -1
package/THEOplayer.common.d.ts
CHANGED
|
@@ -7792,17 +7792,13 @@ interface Latencies {
|
|
|
7792
7792
|
*/
|
|
7793
7793
|
readonly theolive: number;
|
|
7794
7794
|
/**
|
|
7795
|
-
* The latency a frame spends in the transcoding step.
|
|
7795
|
+
* The latency a frame spends in the transcoding and packaging step.
|
|
7796
7796
|
*/
|
|
7797
|
-
readonly
|
|
7798
|
-
/**
|
|
7799
|
-
* The latency a frame spends in the packaging step.
|
|
7800
|
-
*/
|
|
7801
|
-
readonly packager: number;
|
|
7797
|
+
readonly engine: number;
|
|
7802
7798
|
/**
|
|
7803
7799
|
* The latency between a frame exiting the packager and being received by the player.
|
|
7804
7800
|
*/
|
|
7805
|
-
readonly
|
|
7801
|
+
readonly distribution: number;
|
|
7806
7802
|
/**
|
|
7807
7803
|
* The latency added by the player in the form of buffer.
|
|
7808
7804
|
*/
|
|
@@ -8433,6 +8429,26 @@ interface PlayerEventMap {
|
|
|
8433
8429
|
* <br/> - Available since v2.33.3.
|
|
8434
8430
|
*/
|
|
8435
8431
|
destroy: Event<'destroy'>;
|
|
8432
|
+
/** @internal */
|
|
8433
|
+
airplaychanged_: Event<'airplaychanged_'>;
|
|
8434
|
+
/** @internal */
|
|
8435
|
+
fullscreenVideoElementChange_: Event<'fullscreenVideoElementChange_'>;
|
|
8436
|
+
/** @internal */
|
|
8437
|
+
imagesourcechange_: Event<'imagesourcechange_'>;
|
|
8438
|
+
/** @internal */
|
|
8439
|
+
nosupportedrepresentationfound: Event<'nosupportedrepresentationfound'>;
|
|
8440
|
+
/** @internal */
|
|
8441
|
+
metricschange: Event<'metricschange'>;
|
|
8442
|
+
/** @internal */
|
|
8443
|
+
offline: Event<'offline'>;
|
|
8444
|
+
/** @internal */
|
|
8445
|
+
online: Event<'online'>;
|
|
8446
|
+
/** @internal */
|
|
8447
|
+
presentationmodechange: Event<'presentationmodechange'>;
|
|
8448
|
+
/** @internal */
|
|
8449
|
+
segmentrequest_: Event<'segmentrequest_'>;
|
|
8450
|
+
/** @internal */
|
|
8451
|
+
segmentresponse_: Event<'segmentresponse_'>;
|
|
8436
8452
|
}
|
|
8437
8453
|
/**
|
|
8438
8454
|
* The player API.
|
|
@@ -8452,7 +8468,7 @@ declare class ChromelessPlayer implements EventDispatcher<PlayerEventMap> {
|
|
|
8452
8468
|
/**
|
|
8453
8469
|
* The analytics API.
|
|
8454
8470
|
*/
|
|
8455
|
-
readonly analytics
|
|
8471
|
+
readonly analytics: Analytics;
|
|
8456
8472
|
/**
|
|
8457
8473
|
* Whether the player should immediately start playback after source change.
|
|
8458
8474
|
*
|
|
@@ -8747,11 +8763,8 @@ declare class ChromelessPlayer implements EventDispatcher<PlayerEventMap> {
|
|
|
8747
8763
|
readonly vr?: VR;
|
|
8748
8764
|
/**
|
|
8749
8765
|
* The visibility API.
|
|
8750
|
-
*
|
|
8751
|
-
* @remarks
|
|
8752
|
-
* <br/> - Only available with the feature `'visibility'`.
|
|
8753
8766
|
*/
|
|
8754
|
-
readonly visibility
|
|
8767
|
+
readonly visibility: Visibility;
|
|
8755
8768
|
/**
|
|
8756
8769
|
* The Verizon Media API.
|
|
8757
8770
|
*
|