@theoplayer/extended 7.4.0 → 7.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 +1 -1
- package/THEOplayer.chromeless.esm.js +2 -2
- package/THEOplayer.chromeless.js +3 -3
- package/THEOplayer.common.d.ts +10 -0
- 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/THEOplayer.common.d.ts
CHANGED
|
@@ -3402,6 +3402,16 @@ interface HlsPlaybackConfiguration {
|
|
|
3402
3402
|
* @defaultValue `'auto'`
|
|
3403
3403
|
*/
|
|
3404
3404
|
discontinuityAlignment?: HlsDiscontinuityAlignment;
|
|
3405
|
+
/**
|
|
3406
|
+
* Flag for delaying preloading of subtitles until after video/audio for HLS streams, intended to be used for MediaTailor streams.
|
|
3407
|
+
*
|
|
3408
|
+
* A bug on the MediaTailor server side is currently causing them to return manifests without ads if the subtitle request is handled before
|
|
3409
|
+
* video/audio. Enabling this flag will cause the player to delay starting subtitle loading until after video/audio manifests have successfully
|
|
3410
|
+
* been requested, in order to work around the issue.
|
|
3411
|
+
*
|
|
3412
|
+
* @defaultValue `false`
|
|
3413
|
+
*/
|
|
3414
|
+
delaySubtitlePreload?: boolean;
|
|
3405
3415
|
}
|
|
3406
3416
|
|
|
3407
3417
|
/**
|