版本支持: v3.3.0+
接口概述: 同声传译配置设置
接口定义:
virtual void sendTranslationLanguageConfig(const char* remoteUrl, const char* callurl, const char* meetingId, const char* config) = 0;
接口参数:
参数名 | 类型 | 必填 | 默认值 | 描述 |
remoteUrl | const char* | 是 | 无 | 会议callurl |
callurl | const char* | 是 | 无 | 当前用户callurl |
meetingId | const char* | 是 | 无 | 会议id |
config | const char* | 是 | 无 | 同声传译配置(json字符串) |
版本支持: v3.3.0+
接口概述: 开启或关闭只采集指定音频通道的声音
接口定义:
virtual void audioCaptureLimitSourceKey(int sourceKey, bool enable, bool isContent) = 0;
接口参数:
参数名 | 类型 | 必填 | 默认值 | 描述 |
sourceKey | int | 是 | 无 | 指定音频通道 |
enable | bool | 是 | 无 | 开启或关闭 |
isContent | bool | 是 | 无 | 是否为共享内容 |
版本支持: v3.3.0+
接口概述: 清除只采集指定音频通道声音设定
接口定义:
virtual void clearAudioCaptureLimitSourceKey(bool isContent) = 0;
接口参数:
参数名 | 类型 | 必填 | 默认值 | 描述 |
isContent | bool | 是 | 无 | 是否为共享内容 |
版本支持: v3.3.0+
接口概述: 关闭额外媒体会话
接口定义:
virtual void closeExtraMediaSession(int sessionId) = 0;
接口参数:
参数名 | 类型 | 必填 | 默认值 | 描述 |
sessionId | int | 是 | 无 | 会话id |
版本支持: v3.3.0+
接口概述: 开启额外媒体会话
接口定义:
virtual void openExtraMediaSession(XYSessionInfo param) = 0;
接口参数:
参数名 | 类型 | 必填 | 默认值 | 描述 |
param | 是 | 无 | 额外会话配置 |
版本支持: v3.3.0+
接口概述: 更新额外媒体会话
接口定义:
virtual void updataExtraMediaSession(XYSessionInfo param) = 0;
接口参数:
参数名 | 类型 | 必填 | 默认值 | 描述 |
param | 是 | 无 | 额外会话配置 |
版本支持: v3.3.0+
接口概述: 设置同声传译原声压制
接口定义:
virtual void setAudioCompressLimit(int sourceKey, float limit) = 0;
接口参数:
参数名 | 类型 | 必填 | 默认值 | 描述 |
sourceKey | int | 是 | 无 | 音频通道id 原生id为0 |
limit | float | 是 | 无 | 音频压制比例 默认0.5 范围0到1 |