trtc-sdk-v5 5.8.5-beta.7 → 5.8.5-ef.1
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/index.d.ts +1 -0
- package/package.json +1 -1
- package/plugins/cdn-streaming/package.json +1 -1
- package/plugins/cross-room/package.json +1 -1
- package/plugins/device-detector/device-detector.esm.js +21 -21
- package/plugins/device-detector/device-detector.iife.js +20 -20
- package/plugins/device-detector/package.json +1 -1
- package/plugins/video-effect/basic-beauty/basic-beauty.esm.js +2 -2
- package/plugins/video-effect/basic-beauty/basic-beauty.iife.js +2 -2
- package/plugins/video-effect/basic-beauty/package.json +1 -1
- package/plugins/video-effect/beauty/beauty.esm.js +1928 -1709
- package/plugins/video-effect/beauty/beauty.iife.js +1928 -1709
- package/plugins/video-effect/beauty/package.json +1 -1
- package/plugins/video-effect/virtual-background/package.json +1 -1
- package/plugins/video-effect/watermark/package.json +1 -1
- package/trtc.esm.js +24 -24
- package/trtc.js +1 -1
- package/plugins/debug/debug-dialog.esm.js +0 -126
- package/plugins/debug/debug-dialog.js +0 -1
package/index.d.ts
CHANGED
|
@@ -305,6 +305,7 @@ export declare interface TRTCOptions {
|
|
|
305
305
|
plugins?: Array<TRTCPlugin>;
|
|
306
306
|
enableSEI?: boolean;
|
|
307
307
|
assetsPath?: string;
|
|
308
|
+
profileLevelIdModelList?: string[];
|
|
308
309
|
}
|
|
309
310
|
export interface VideoProfile { width: number, height: number, frameRate: number, bitrate: number; }
|
|
310
311
|
export interface AudioProfile { sampleRate: number, channelCount: number, bitrate: number; }
|
package/package.json
CHANGED