trtc-sdk-v5 5.10.2-beta.1 → 5.10.2-beta.3
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/assets/debug-dialog.js +2 -2
- package/index.d.ts +1 -16
- package/package.json +1 -1
- package/plugins/cdn-streaming/package.json +1 -1
- package/plugins/cross-room/package.json +1 -1
- package/plugins/custom-encryption/package.json +1 -1
- package/plugins/device-detector/package.json +1 -1
- package/plugins/video-decoder/package.json +1 -1
- 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/plugins/voice-changer/package.json +1 -1
- package/trtc.esm.js +32 -32
- package/trtc.js +1 -1
package/index.d.ts
CHANGED
|
@@ -9,7 +9,7 @@ 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
|
+
|
|
13
13
|
export declare type PluginStartOptionsMap = {
|
|
14
14
|
'AudioMixer': AudioMixerOptions;
|
|
15
15
|
'AIDenoiser': AIDenoiserOptions;
|
|
@@ -2022,21 +2022,6 @@ export declare class TRTC {
|
|
|
2022
2022
|
* })
|
|
2023
2023
|
*/
|
|
2024
2024
|
sendCustomMessage(message: CustomMessageData): void;
|
|
2025
|
-
/**
|
|
2026
|
-
* call experimental API
|
|
2027
|
-
*
|
|
2028
|
-
* | API name | options | description |
|
|
2029
|
-
* | ------------------- | ----------------------------------------------- | ------------------------------------------------------------ |
|
|
2030
|
-
* | 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 |
|
|
2031
|
-
* @private
|
|
2032
|
-
* @param {string} name
|
|
2033
|
-
* @param {object} options
|
|
2034
|
-
* @example
|
|
2035
|
-
* trtc.callExperimentalAPI('enableAudioFrameEvent', { enable: true, userId: 'user_A'}) // 监听远端用户 user_A 的音频数据,默认 pcm 数据为 48kHZ,单声道
|
|
2036
|
-
* trtc.callExperimentalAPI('enableAudioFrameEvent', { enable: true, userId: '*', sampleRate: 16000, channelCount: 2 }) // 监听所有远端音频数据,设置 pcm 数据为 16kHZ,双声道
|
|
2037
|
-
* trtc.callExperimentalAPI('enableAudioFrameEvent', { enable: false, userId: '', sampleRate: 48000, channelCount: 1 }) // 取消监听本地麦克风数据
|
|
2038
|
-
*/
|
|
2039
|
-
callExperimentalAPI(name: ExperimentalAPIFunction, options: any): void;
|
|
2040
2025
|
static EVENT: typeof TRTCEvent;
|
|
2041
2026
|
static ERROR_CODE: {
|
|
2042
2027
|
INVALID_PARAMETER: number;
|
package/package.json
CHANGED