@theoplayer/extended 3.5.0 → 3.6.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.js +3 -3
- package/THEOplayer.d.ts +16 -1
- package/THEOplayer.js +3 -3
- package/THEOplayer.transmux.asmjs.js +3 -3
- package/THEOplayer.transmux.js +3 -3
- package/THEOplayer.transmux.wasm +0 -0
- package/package.json +1 -1
- package/theoplayer.d.js +3 -3
- package/theoplayer.e.js +3 -3
- package/theoplayer.p.js +3 -3
- package/theoplayer.sw.js +3 -3
package/THEOplayer.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* THEOplayer
|
|
3
3
|
* https://www.theoplayer.com
|
|
4
4
|
*
|
|
5
|
-
* Version: 2022.
|
|
5
|
+
* Version: 2022.3.0 (3.6.0)
|
|
6
6
|
*/
|
|
7
7
|
|
|
8
8
|
/**
|
|
@@ -1101,6 +1101,15 @@ export declare interface BaseSource {
|
|
|
1101
1101
|
* <br/> - Used for DASH and LL-HLS streams.
|
|
1102
1102
|
*/
|
|
1103
1103
|
abr?: SourceAbrConfiguration;
|
|
1104
|
+
/**
|
|
1105
|
+
* Whether this source should be played using the LCEVC sdk.
|
|
1106
|
+
*
|
|
1107
|
+
* @remarks
|
|
1108
|
+
* <br/> - Requires the LCEVC feature to be enabled.
|
|
1109
|
+
* <br/> - Requires the V-Nova LCEVC SDK to be loaded on the page.
|
|
1110
|
+
* <br/> - Only available for DASH and HLS streams.
|
|
1111
|
+
*/
|
|
1112
|
+
lcevc?: boolean;
|
|
1104
1113
|
}
|
|
1105
1114
|
|
|
1106
1115
|
/**
|
|
@@ -4858,6 +4867,12 @@ export declare interface IMAAdDescription extends AdDescription {
|
|
|
4858
4867
|
* <br/> - VAST, VMAP and VPAID are supported.
|
|
4859
4868
|
*/
|
|
4860
4869
|
sources: string | AdSource;
|
|
4870
|
+
/**
|
|
4871
|
+
* Optional settings object for mapping verification vendors (google.ima.OmidVerificationVendor) to OMID Access Modes (google.ima.OmidAccessMode).
|
|
4872
|
+
*/
|
|
4873
|
+
omidAccessModeRules?: {
|
|
4874
|
+
[key: number]: string;
|
|
4875
|
+
};
|
|
4861
4876
|
}
|
|
4862
4877
|
|
|
4863
4878
|
/**
|