trtc-sdk-v5 5.9.2-beta.17 → 5.9.2-beta.18

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 (59) hide show
  1. package/README-zh_CN.md +1 -2
  2. package/README.md +1 -2
  3. package/index.d.ts +1791 -1795
  4. package/package.json +1 -1
  5. package/plugins/cdn-streaming/cdn-streaming.esm.js +1 -1
  6. package/plugins/cdn-streaming/cdn-streaming.iife.js +1 -0
  7. package/plugins/cdn-streaming/package.json +2 -1
  8. package/plugins/cross-room/cross-room.esm.js +1 -1
  9. package/plugins/cross-room/cross-room.iife.js +1 -0
  10. package/plugins/cross-room/package.json +2 -1
  11. package/plugins/device-detector/device-detector.esm.js +1234 -93
  12. package/plugins/device-detector/device-detector.iife.js +1472 -0
  13. package/plugins/device-detector/package.json +2 -1
  14. package/plugins/video-decoder/package.json +1 -1
  15. package/plugins/video-decoder/video-decoder.esm.d.ts +20 -20
  16. package/plugins/video-decoder/video-decoder.esm.js +43 -1
  17. package/plugins/video-decoder/video-decoder.iife.js +43 -0
  18. package/plugins/video-effect/basic-beauty/basic-beauty.esm.js +2 -1
  19. package/plugins/video-effect/basic-beauty/basic-beauty.iife.js +2 -0
  20. package/plugins/video-effect/basic-beauty/package.json +2 -1
  21. package/plugins/video-effect/beauty/beauty.esm.js +2954 -1
  22. package/plugins/video-effect/beauty/beauty.iife.js +2954 -0
  23. package/plugins/video-effect/beauty/package.json +2 -1
  24. package/plugins/video-effect/virtual-background/package.json +2 -1
  25. package/plugins/video-effect/virtual-background/virtual-background.esm.js +60 -1
  26. package/plugins/video-effect/virtual-background/virtual-background.iife.js +60 -0
  27. package/plugins/video-effect/watermark/package.json +2 -1
  28. package/plugins/video-effect/watermark/watermark.esm.d.ts +2 -10
  29. package/plugins/video-effect/watermark/watermark.esm.js +1 -1
  30. package/plugins/video-effect/watermark/watermark.iife.js +1 -0
  31. package/trtc.esm.js +29 -29
  32. package/trtc.js +1 -1
  33. package/assets/debug-dialog.js +0 -1
  34. package/assets/selfie_segmentation/package.json +0 -27
  35. package/assets/selfie_segmentation/selfie_segmentation.binarypb +0 -0
  36. package/assets/selfie_segmentation/selfie_segmentation.tflite +0 -0
  37. package/assets/selfie_segmentation/selfie_segmentation_landscape.tflite +0 -0
  38. package/assets/selfie_segmentation/selfie_segmentation_solution_simd_wasm_bin.data +0 -0
  39. package/assets/selfie_segmentation/selfie_segmentation_solution_simd_wasm_bin.wasm +0 -0
  40. package/assets/selfie_segmentation/selfie_segmentation_solution_wasm_bin.wasm +0 -0
  41. package/assets/videodec.wasm +0 -0
  42. package/assets/videodec_simd.wasm +0 -0
  43. package/plugins/cdn-streaming/cdn-streaming.umd.js +0 -1
  44. package/plugins/cross-room/cross-room.umd.js +0 -1
  45. package/plugins/custom-encryption/custom-encryption.esm.d.ts +0 -31
  46. package/plugins/custom-encryption/custom-encryption.esm.js +0 -1
  47. package/plugins/custom-encryption/custom-encryption.umd.js +0 -1
  48. package/plugins/custom-encryption/package.json +0 -7
  49. package/plugins/device-detector/device-detector.umd.js +0 -39
  50. package/plugins/video-decoder/video-decoder.umd.js +0 -1
  51. package/plugins/video-effect/basic-beauty/basic-beauty.umd.js +0 -1
  52. package/plugins/video-effect/beauty/beauty.umd.js +0 -1
  53. package/plugins/video-effect/virtual-background/virtual-background.umd.js +0 -1
  54. package/plugins/video-effect/watermark/watermark.umd.js +0 -1
  55. package/plugins/voice-changer/package.json +0 -9
  56. package/plugins/voice-changer/voice-changer.esm.d.ts +0 -20
  57. package/plugins/voice-changer/voice-changer.esm.js +0 -1
  58. package/plugins/voice-changer/voice-changer.umd.js +0 -1
  59. /package/{assets → plugins/ai-denoiser}/denoiser-wasm.js +0 -0
package/README-zh_CN.md CHANGED
@@ -84,8 +84,7 @@ import TRTC from 'trtc-sdk-v5';
84
84
  ├── trtc.js // npm 包入口文件(umd 格式)
85
85
  ├── trtc.esm.js // 基于 es 模块的 sdk 包(esm 格式)
86
86
  ├── index.d.ts // 类型声明文件
87
- ├── plugins // 插件目录
88
- └── assets // 静态资源目录(如使用虚拟背景、AI 降噪等功能需要部署到服务器供 SDK 动态加载资源)
87
+ └── plugins // 插件目录
89
88
  ```
90
89
 
91
90
  ## Changelog
package/README.md CHANGED
@@ -80,6 +80,5 @@ Explore SDK API documents:[TRTC Web SDK](https://web.sdk.qcloud.com/trtc/webrt
80
80
  ├── trtc.js // sdk file(umd format)
81
81
  ├── trtc.esm.js // sdk file base on ES modules(esm format)
82
82
  ├── index.d.ts // ts declaration file
83
- ├── plugins // sdk plugins
84
- └── assets // static resource directory (e.g., required for features like virtual background, AI noise reduction, etc., which need to be deployed on the server for the SDK to dynamically load resources)
83
+ └── plugins // trtc plugins
85
84
  ```