@theoplayer/extended 6.1.0 → 6.2.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.
@@ -3625,6 +3625,20 @@ interface BaseSource {
3625
3625
  * <br/> - Only supported on browsers that can play HLS streams natively, will error otherwise.
3626
3626
  */
3627
3627
  useNativePlayback?: boolean;
3628
+ /**
3629
+ * (Experimental) Whether to use `ManagedMediaSource` if available.
3630
+ *
3631
+ * @defaultValue `false`
3632
+ *
3633
+ * @remarks
3634
+ * <br/> - Available since v6.2.0.
3635
+ * <br/> - At the moment, this requires iOS 17.1 beta 2 or higher, with the "Managed Media Source API" feature flag
3636
+ * turned on in the Advanced settings of Safari.
3637
+ * <br/> - Ignored if {@link BaseSource.useNativePlayback} is `true`.
3638
+ *
3639
+ * @see https://github.com/w3c/media-source/issues/320
3640
+ */
3641
+ useManagedMediaSource?: boolean;
3628
3642
  /**
3629
3643
  * The configuration for controlling playback of an MPEG-DASH stream.
3630
3644
  *
@@ -5184,8 +5198,7 @@ interface NetworkInterceptorController {
5184
5198
  * Network estimator API which can be used to get or set the active `MeasurableNetworkEstimator`.
5185
5199
  *
5186
5200
  * @remarks
5187
- * <br/> - EXPERIMENTAL: Setting an external `MeasurableNetworkEstimator` implementation will only affect playback
5188
- * of HLS streams where`lowLatency: true` has been set on the `TypedSource`.
5201
+ * <br/> - EXPERIMENTAL: Setting an external `MeasurableNetworkEstimator` implementation will only affect playback of HLS streams.
5189
5202
  *
5190
5203
  * @public
5191
5204
  */