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.
Files changed (49) hide show
  1. package/CHANGELOG.md +12 -3
  2. package/VERSION +1 -1
  3. package/dist/commonjs/__GENERATED_CODE/embedded_dash_wasm.d.ts.map +1 -1
  4. package/dist/commonjs/__GENERATED_CODE/embedded_dash_wasm.js +1 -1
  5. package/dist/commonjs/__GENERATED_CODE/embedded_worker.d.ts.map +1 -1
  6. package/dist/commonjs/__GENERATED_CODE/embedded_worker.js +1 -1
  7. package/dist/commonjs/compat/browser_detection.d.ts +3 -1
  8. package/dist/commonjs/compat/browser_detection.d.ts.map +1 -1
  9. package/dist/commonjs/compat/browser_detection.js +8 -1
  10. package/dist/commonjs/compat/can_reuse_media_keys.d.ts +2 -0
  11. package/dist/commonjs/compat/can_reuse_media_keys.d.ts.map +1 -1
  12. package/dist/commonjs/compat/can_reuse_media_keys.js +3 -1
  13. package/dist/commonjs/core/cmcd/cmcd_data_builder.js +1 -1
  14. package/dist/commonjs/core/main/worker/worker_main.js +1 -0
  15. package/dist/commonjs/main_thread/api/public_api.js +2 -2
  16. package/dist/commonjs/manifest/classes/adaptation.d.ts +13 -13
  17. package/dist/commonjs/manifest/classes/representation.d.ts +20 -12
  18. package/dist/commonjs/manifest/classes/representation.d.ts.map +1 -1
  19. package/dist/es2017/__GENERATED_CODE/embedded_dash_wasm.d.ts.map +1 -1
  20. package/dist/es2017/__GENERATED_CODE/embedded_dash_wasm.js +1 -1
  21. package/dist/es2017/__GENERATED_CODE/embedded_worker.d.ts.map +1 -1
  22. package/dist/es2017/__GENERATED_CODE/embedded_worker.js +1 -1
  23. package/dist/es2017/compat/browser_detection.d.ts +3 -1
  24. package/dist/es2017/compat/browser_detection.d.ts.map +1 -1
  25. package/dist/es2017/compat/browser_detection.js +7 -1
  26. package/dist/es2017/compat/can_reuse_media_keys.d.ts +2 -0
  27. package/dist/es2017/compat/can_reuse_media_keys.d.ts.map +1 -1
  28. package/dist/es2017/compat/can_reuse_media_keys.js +4 -2
  29. package/dist/es2017/core/cmcd/cmcd_data_builder.js +1 -1
  30. package/dist/es2017/core/main/worker/worker_main.js +1 -0
  31. package/dist/es2017/main_thread/api/public_api.js +2 -2
  32. package/dist/es2017/manifest/classes/adaptation.d.ts +13 -13
  33. package/dist/es2017/manifest/classes/representation.d.ts +20 -12
  34. package/dist/es2017/manifest/classes/representation.d.ts.map +1 -1
  35. package/dist/mpd-parser.wasm +0 -0
  36. package/dist/rx-player.js +18 -18
  37. package/dist/worker.js +5 -5
  38. package/package.json +1 -1
  39. package/src/__GENERATED_CODE/embedded_dash_wasm.ts +1 -1
  40. package/src/__GENERATED_CODE/embedded_worker.ts +1 -1
  41. package/src/compat/__tests__/can_reuse_media_keys.test.ts +33 -2
  42. package/src/compat/browser_detection.ts +9 -0
  43. package/src/compat/can_reuse_media_keys.ts +4 -2
  44. package/src/core/cmcd/cmcd_data_builder.ts +1 -1
  45. package/src/core/main/worker/worker_main.ts +1 -0
  46. package/src/main_thread/api/public_api.ts +2 -2
  47. package/src/manifest/classes/adaptation.ts +13 -13
  48. package/src/manifest/classes/representation.ts +20 -12
  49. package/.vscode/settings.json +0 -7
package/CHANGELOG.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Changelog
2
2
 
3
- ## 4.2.0 (upcoming)
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 [#1479]
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.2024082600
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,iBAAsikU,CAAC;AAC5jkU,OAAO,EAAE,eAAe,IAAI,kBAAkB,EAAE,CAAC;AACjD,eAAe,eAAe,CAAC"}
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"}