trtc-sdk-v5 5.9.1-beta.6 → 5.9.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 +2 -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/package.json +1 -1
- package/plugins/video-decoder/package.json +1 -1
- package/plugins/video-decoder/video-decoder.esm.js +19 -19
- package/plugins/video-decoder/video-decoder.iife.js +19 -19
- package/plugins/video-decoder/videodec.wasm +0 -0
- package/plugins/video-decoder/videodec_simd.wasm +0 -0
- package/plugins/video-effect/basic-beauty/package.json +1 -1
- 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/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
|
+
volumeType?: number;
|
|
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; }
|
|
@@ -1182,6 +1183,7 @@ export declare interface TRTCEventTypes {
|
|
|
1182
1183
|
userId: string;
|
|
1183
1184
|
streamType?: TRTCStreamType;
|
|
1184
1185
|
track: MediaStreamTrack;
|
|
1186
|
+
sourceTrack: MediaStreamTrack;
|
|
1185
1187
|
}];
|
|
1186
1188
|
[TRTCEvent.CUSTOM_MESSAGE]: [CustomMessage];
|
|
1187
1189
|
}
|
package/package.json
CHANGED