trtc-sdk-v5 5.10.0-beta.2 → 5.10.0-beta.4
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/README-zh_CN.md +1 -2
- package/README.md +1 -2
- package/index.d.ts +1796 -1823
- package/package.json +1 -1
- package/{assets → plugins/ai-denoiser}/denoiser-wasm.js +1 -1
- package/plugins/cdn-streaming/cdn-streaming.esm.js +1 -1
- package/plugins/cdn-streaming/cdn-streaming.iife.js +1 -0
- package/plugins/cdn-streaming/package.json +2 -1
- package/plugins/cross-room/cross-room.esm.js +1 -1
- package/plugins/cross-room/cross-room.iife.js +1 -0
- package/plugins/cross-room/package.json +2 -1
- package/plugins/device-detector/device-detector.esm.js +1234 -93
- package/plugins/device-detector/device-detector.iife.js +1472 -0
- package/plugins/device-detector/package.json +2 -1
- package/plugins/video-decoder/package.json +1 -1
- package/plugins/video-decoder/video-decoder.esm.d.ts +20 -20
- package/plugins/video-decoder/video-decoder.esm.js +43 -1
- package/plugins/video-decoder/video-decoder.iife.js +43 -0
- package/plugins/video-effect/basic-beauty/basic-beauty.esm.js +2 -1
- package/plugins/video-effect/basic-beauty/basic-beauty.iife.js +2 -0
- package/plugins/video-effect/basic-beauty/package.json +2 -1
- package/plugins/video-effect/beauty/beauty.esm.js +2954 -1
- package/plugins/video-effect/beauty/beauty.iife.js +2954 -0
- package/plugins/video-effect/beauty/package.json +2 -1
- package/plugins/video-effect/virtual-background/package.json +2 -1
- package/plugins/video-effect/virtual-background/virtual-background.esm.js +60 -1
- package/plugins/video-effect/virtual-background/virtual-background.iife.js +60 -0
- package/plugins/video-effect/watermark/package.json +2 -1
- package/plugins/video-effect/watermark/watermark.esm.d.ts +2 -10
- package/plugins/video-effect/watermark/watermark.esm.js +1 -1
- package/plugins/video-effect/watermark/watermark.iife.js +1 -0
- package/trtc.esm.js +27 -27
- package/trtc.js +1 -1
- package/assets/debug-dialog.js +0 -1
- package/assets/selfie_segmentation/package.json +0 -27
- package/assets/selfie_segmentation/selfie_segmentation.binarypb +0 -0
- package/assets/selfie_segmentation/selfie_segmentation.tflite +0 -0
- package/assets/selfie_segmentation/selfie_segmentation_landscape.tflite +0 -0
- package/assets/selfie_segmentation/selfie_segmentation_solution_simd_wasm_bin.data +0 -0
- package/assets/selfie_segmentation/selfie_segmentation_solution_simd_wasm_bin.wasm +0 -0
- package/assets/selfie_segmentation/selfie_segmentation_solution_wasm_bin.wasm +0 -0
- package/assets/videodec.wasm +0 -0
- package/assets/videodec_simd.wasm +0 -0
- package/plugins/cdn-streaming/cdn-streaming.umd.js +0 -1
- package/plugins/cross-room/cross-room.umd.js +0 -1
- package/plugins/custom-encryption/custom-encryption.esm.d.ts +0 -31
- package/plugins/custom-encryption/custom-encryption.esm.js +0 -1
- package/plugins/custom-encryption/custom-encryption.umd.js +0 -1
- package/plugins/custom-encryption/package.json +0 -7
- package/plugins/device-detector/device-detector.umd.js +0 -39
- package/plugins/video-decoder/video-decoder.umd.js +0 -1
- package/plugins/video-effect/basic-beauty/basic-beauty.umd.js +0 -1
- package/plugins/video-effect/beauty/beauty.umd.js +0 -1
- package/plugins/video-effect/virtual-background/virtual-background.umd.js +0 -1
- package/plugins/video-effect/watermark/watermark.umd.js +0 -1
- package/plugins/voice-changer/package.json +0 -9
- package/plugins/voice-changer/voice-changer.esm.d.ts +0 -20
- package/plugins/voice-changer/voice-changer.esm.js +0 -1
- package/plugins/voice-changer/voice-changer.umd.js +0 -1
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
|
-
|
|
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
|
-
|
|
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
|
```
|