trtc-sdk-v5 5.10.2-beta.6 → 5.10.2-beta.8

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 CHANGED
@@ -9,7 +9,9 @@ import { CustomEncryption, EncryptionOptions } from './plugins/custom-encryption
9
9
 
10
10
  export { CDNStreamingOptions, DeviceDetectorOptions, VirtualBackgroundOptions, UpdateVirtualBackgroundOptions, WatermarkOptions, BeautyOptions, UpdateBeautyOptions, BasicBeautyOptions, StartCrossRoomOption, UpdateCrossRoomOption, StopCrossRoomOption };
11
11
  type TRTCPlugin = typeof CrossRoom | typeof CDNStreaming | typeof DeviceDetector | typeof VirtualBackground | typeof Watermark | typeof Beauty | typeof BasicBeauty | typeof CustomEncryption;
12
-
12
+ export declare const enum ExperimentalAPIFunction {
13
+ EnableAudioFrameEvent = 'enableAudioFrameEvent'
14
+ }
13
15
  export declare type PluginStartOptionsMap = {
14
16
  'AudioMixer': AudioMixerOptions;
15
17
  'AIDenoiser': AIDenoiserOptions;
@@ -101,7 +103,7 @@ export declare class RtcError extends Error implements RTCErrorInterface {
101
103
  static convertFrom(originError: Error, fnName?: string, fnParams?: any): RtcError;
102
104
  }
103
105
 
104
- export declare enum LOG_LEVEL {
106
+ export declare const enum LOG_LEVEL {
105
107
  /**
106
108
  * 输出所有日志
107
109
  */
@@ -446,12 +448,12 @@ export declare const enum TRTCStreamType {
446
448
  Main = 'main',
447
449
  Sub = 'sub'
448
450
  }
449
- export declare enum TRTCDeviceType {
451
+ export declare const enum TRTCDeviceType {
450
452
  Camera = 'camera',
451
453
  Microphone = 'microphone',
452
454
  Speaker = 'speaker'
453
455
  }
454
- export declare enum TRTCDeviceAction {
456
+ export declare const enum TRTCDeviceAction {
455
457
  Remove = 'remove',
456
458
  Add = 'add',
457
459
  Active = 'active'
@@ -640,7 +642,7 @@ export declare interface LocalStatistic {
640
642
  videoType: TRTCVideoType;
641
643
  }[];
642
644
  }
643
- export declare enum TRTCVideoType {
645
+ export declare const enum TRTCVideoType {
644
646
  Big = 'big',
645
647
  Small = 'small',
646
648
  Sub = 'sub'
@@ -663,7 +665,7 @@ export declare interface VideoFrameConfig {
663
665
  userId?: string;
664
666
  streamType?: TRTCStreamType;
665
667
  }
666
- export declare enum AutoStartPluginName {
668
+ export declare const enum AutoStartPluginName {
667
669
  Debug = 'Debug'
668
670
  }
669
671
 
@@ -1135,6 +1137,7 @@ export declare interface TRTCEventTypes {
1135
1137
  [TRTCEvent.ERROR]: [RtcError];
1136
1138
  [TRTCEvent.AUTOPLAY_FAILED]: [{
1137
1139
  userId: string;
1140
+ mediaType: 'audio' | 'video' | 'screen';
1138
1141
  resume: () => Promise<void>;
1139
1142
  }];
1140
1143
  [TRTCEvent.KICKED_OUT]: [{
@@ -1230,6 +1233,14 @@ export declare class TRTC {
1230
1233
  *
1231
1234
  * **Note:**
1232
1235
  * - You must create a TRTC object first and call its methods and listen to its events to implement various functions required by the business.
1236
+ * @param {Array=} options.plugins List of registered plugins (optional).
1237
+ * @param {boolean=} [options.enableSEI=false] Whether to enable SEI sending and receiving function (optional). [Reference document](https://web.sdk.qcloud.com/trtc/webrtc/v5/doc/en/TRTC.html#sendSEIMessage)
1238
+ * @param {string=} options.assetsPath The address of the static resource file that the plugin depends on (optional).
1239
+ * - Publish the node_modules/trtc-sdk-v5/assets directory to CDN or static resource server.
1240
+ * - Set the assetsPath parameter to the CDN address, for example: `TRTC.create({ assetsPath: 'https://xxx/assets' })`, the SDK will load the relevant resource files on demand.
1241
+ * @param {string=} options.userDefineRecordId is used to set the userDefineRecordId of cloud recording (optional).
1242
+ * - [Recommended value] The length is limited to 64 bytes, and only uppercase and lowercase English letters (a-zA-Z), numbers (0-9), underscores, and hyphens are allowed.
1243
+ * - [Reference document] [Cloud recording](https://trtc.io/document/45169?product=rtcengine&menulabel=serverfeaturesapis).
1233
1244
  * @example
1234
1245
  * // Create a TRTC object
1235
1246
  * const trtc = TRTC.create();
@@ -2022,6 +2033,21 @@ export declare class TRTC {
2022
2033
  * })
2023
2034
  */
2024
2035
  sendCustomMessage(message: CustomMessageData): void;
2036
+ /**
2037
+ * call experimental API
2038
+ *
2039
+ * | API name | options | description |
2040
+ * | ------------------- | ----------------------------------------------- | ------------------------------------------------------------ |
2041
+ * | enableAudioFrameEvent | - enable type: `boolean` <br></br> - userId type: `string` <br></br> - sampleRate type: `number` <br></br> - channelCount type: `number` <br></br>| Configure the callback data of {@link module:EVENT.AUDIO_FRAME AUDIO_FRAME} event |
2042
+ * @private
2043
+ * @param {string} name
2044
+ * @param {object} options
2045
+ * @example
2046
+ * await trtc.callExperimentalAPI('enableAudioFrameEvent', { enable: true, userId: 'user_A'}) // 监听远端用户 user_A 的音频数据,默认 pcm 数据为 48kHZ,单声道
2047
+ * await trtc.callExperimentalAPI('enableAudioFrameEvent', { enable: true, userId: '*', sampleRate: 16000, channelCount: 2 }) // 监听所有远端音频数据,设置 pcm 数据为 16kHZ,双声道
2048
+ * await trtc.callExperimentalAPI('enableAudioFrameEvent', { enable: false, userId: '', sampleRate: 48000, channelCount: 1 }) // 取消监听本地麦克风数据
2049
+ */
2050
+ callExperimentalAPI(name: ExperimentalAPIFunction, options: any): Promise<void>;
2025
2051
  static EVENT: typeof TRTCEvent;
2026
2052
  static ERROR_CODE: {
2027
2053
  INVALID_PARAMETER: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "trtc-sdk-v5",
3
- "version": "5.10.2-beta.6",
3
+ "version": "5.10.2-beta.8",
4
4
  "description": "Tencent Cloud RTC SDK for Web",
5
5
  "main": "trtc.js",
6
6
  "types": "index.d.ts",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rtc-plugin/cdn-streaming",
3
- "version": "5.10.2-beta.6",
3
+ "version": "5.10.2-beta.8",
4
4
  "description": "TRTC Web SDK 5.x CDN streaming plugin",
5
5
  "main": "./cdn-streaming.esm.js",
6
6
  "module": "./cdn-streaming.esm.js",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rtc-plugin/cross-room",
3
- "version": "5.10.2-beta.6",
3
+ "version": "5.10.2-beta.8",
4
4
  "description": "TRTC Web SDK 5.x Cross Room plugin",
5
5
  "main": "./cross-room.esm.js",
6
6
  "module": "./cross-room.esm.js",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rtc-plugin/custom-encryption",
3
- "version": "5.10.2-beta.6",
3
+ "version": "5.10.2-beta.8",
4
4
  "main": "./custom-encryption.esm.js",
5
5
  "module": "./custom-encryption.esm.js",
6
6
  "types": "./custom-encryption.esm.d.ts"
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rtc-plugin/device-detector",
3
- "version": "5.10.2-beta.6",
3
+ "version": "5.10.2-beta.8",
4
4
  "description": "TRTC Web SDK 5.x device detector plugin",
5
5
  "main": "./device-detector.esm.js",
6
6
  "module": "./device-detector.esm.js",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rtc-plugin/video-decoder",
3
- "version": "5.10.2-beta.6",
3
+ "version": "5.10.2-beta.8",
4
4
  "description": "Video decoder plugin for TRTC",
5
5
  "main": "./video-decoder.esm.js",
6
6
  "module": "./video-decoder.esm.js",