rx-player 4.2.0-dev.2024082600 → 4.2.0-dev.2024090300
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/CHANGELOG.md +12 -3
- package/VERSION +1 -1
- package/dist/commonjs/__GENERATED_CODE/embedded_dash_wasm.d.ts.map +1 -1
- package/dist/commonjs/__GENERATED_CODE/embedded_dash_wasm.js +1 -1
- package/dist/commonjs/__GENERATED_CODE/embedded_worker.d.ts.map +1 -1
- package/dist/commonjs/__GENERATED_CODE/embedded_worker.js +1 -1
- package/dist/commonjs/compat/browser_detection.d.ts +3 -1
- package/dist/commonjs/compat/browser_detection.d.ts.map +1 -1
- package/dist/commonjs/compat/browser_detection.js +8 -1
- package/dist/commonjs/compat/can_reuse_media_keys.d.ts +2 -0
- package/dist/commonjs/compat/can_reuse_media_keys.d.ts.map +1 -1
- package/dist/commonjs/compat/can_reuse_media_keys.js +3 -1
- package/dist/commonjs/core/cmcd/cmcd_data_builder.js +1 -1
- package/dist/commonjs/core/main/worker/worker_main.js +1 -0
- package/dist/commonjs/main_thread/api/public_api.js +2 -2
- package/dist/commonjs/manifest/classes/adaptation.d.ts +13 -13
- package/dist/commonjs/manifest/classes/representation.d.ts +20 -12
- package/dist/commonjs/manifest/classes/representation.d.ts.map +1 -1
- package/dist/es2017/__GENERATED_CODE/embedded_dash_wasm.d.ts.map +1 -1
- package/dist/es2017/__GENERATED_CODE/embedded_dash_wasm.js +1 -1
- package/dist/es2017/__GENERATED_CODE/embedded_worker.d.ts.map +1 -1
- package/dist/es2017/__GENERATED_CODE/embedded_worker.js +1 -1
- package/dist/es2017/compat/browser_detection.d.ts +3 -1
- package/dist/es2017/compat/browser_detection.d.ts.map +1 -1
- package/dist/es2017/compat/browser_detection.js +7 -1
- package/dist/es2017/compat/can_reuse_media_keys.d.ts +2 -0
- package/dist/es2017/compat/can_reuse_media_keys.d.ts.map +1 -1
- package/dist/es2017/compat/can_reuse_media_keys.js +4 -2
- package/dist/es2017/core/cmcd/cmcd_data_builder.js +1 -1
- package/dist/es2017/core/main/worker/worker_main.js +1 -0
- package/dist/es2017/main_thread/api/public_api.js +2 -2
- package/dist/es2017/manifest/classes/adaptation.d.ts +13 -13
- package/dist/es2017/manifest/classes/representation.d.ts +20 -12
- package/dist/es2017/manifest/classes/representation.d.ts.map +1 -1
- package/dist/mpd-parser.wasm +0 -0
- package/dist/rx-player.js +18 -18
- package/dist/worker.js +5 -5
- package/package.json +1 -1
- package/src/__GENERATED_CODE/embedded_dash_wasm.ts +1 -1
- package/src/__GENERATED_CODE/embedded_worker.ts +1 -1
- package/src/compat/__tests__/can_reuse_media_keys.test.ts +33 -2
- package/src/compat/browser_detection.ts +9 -0
- package/src/compat/can_reuse_media_keys.ts +4 -2
- package/src/core/cmcd/cmcd_data_builder.ts +1 -1
- package/src/core/main/worker/worker_main.ts +1 -0
- package/src/main_thread/api/public_api.ts +2 -2
- package/src/manifest/classes/adaptation.ts +13 -13
- package/src/manifest/classes/representation.ts +20 -12
- package/.vscode/settings.json +0 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
##
|
|
3
|
+
## Current dev build: v4.2.0-dev.2024090300
|
|
4
4
|
|
|
5
5
|
### Features
|
|
6
6
|
|
|
@@ -8,16 +8,25 @@
|
|
|
8
8
|
[#1461]
|
|
9
9
|
- Add `checkManifestIntegrity` `loadVideo` option as a temporary work-around when you
|
|
10
10
|
suspect your packager or CDN to sometimes deliver corrupted data [#1471]
|
|
11
|
+
- Add `contentProtections` to the `representations` of the tracks API to know if they're
|
|
12
|
+
considered encrypted [#1505]
|
|
13
|
+
- Add `filterPlayableRepresentations` property to audio and video tracks API to get
|
|
14
|
+
information on ALL representations, even those that won't be played [#1501]
|
|
11
15
|
- Add `LogFormat` static property to the `RxPlayer` to try improving on bug reports
|
|
12
16
|
[#1469]
|
|
13
17
|
|
|
14
18
|
### Bug fixes
|
|
15
19
|
|
|
16
20
|
- Detect cases where an encrypted media's codec is not supported specifically when the
|
|
17
|
-
media is encrypted and prevent the playback of such contents [#
|
|
21
|
+
media is encrypted and prevent the playback of such contents [#1484]
|
|
18
22
|
- Work-around the "hulu issue" seen on firefox 129 and 130 (`1911283` and `1912238` on
|
|
19
|
-
bugzilla) which also impacted the RxPlayer [#1495]
|
|
23
|
+
bugzilla) which also impacted the RxPlayer [#1495, #1498]
|
|
20
24
|
- Fix rare cases where the active Period would not be advertised by the RxPlayer [#1502]
|
|
25
|
+
- DRM/Compat: Re-create MediaKeys for each content on Philips' NETTV [#1515]
|
|
26
|
+
- DRM/Compat: fix content not starting on Safari because key are never considered usable
|
|
27
|
+
for a track [#1479, #1512]
|
|
28
|
+
- MULTI_THREAD: fix wrong Period considered as current in multi-Period DASH contents with
|
|
29
|
+
the multi-thread feature [#1527]
|
|
21
30
|
|
|
22
31
|
### Other improvements
|
|
23
32
|
|
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
4.2.0-dev.
|
|
1
|
+
4.2.0-dev.2024090300
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"embedded_dash_wasm.d.ts","sourceRoot":"","sources":["../../../src/__GENERATED_CODE/embedded_dash_wasm.ts"],"names":[],"mappings":"AAAA,QAAA,MAAM,eAAe,
|
|
1
|
+
{"version":3,"file":"embedded_dash_wasm.d.ts","sourceRoot":"","sources":["../../../src/__GENERATED_CODE/embedded_dash_wasm.ts"],"names":[],"mappings":"AAAA,QAAA,MAAM,eAAe,iBAA2j0V,CAAC;AACjl0V,OAAO,EAAE,eAAe,IAAI,kBAAkB,EAAE,CAAC;AACjD,eAAe,eAAe,CAAC"}
|