添加会议时增加自动录制功能录制

master
rengp 12 months ago
parent b5143798d4
commit 8283f22bc3

@ -104,9 +104,14 @@ public class YealinkVideoClient extends VideoMeetingClient {
body.put("enableRandomMeetingNumber", true);
//会议密码格式为6位数字
body.put("meetingPassword", password);
//添加水印
body.put("enableWatermark", true);
//水印配置
body.put("watermarkTransparency", 2);
body.put("watermarkFontSize", 1);
//是否开启自动录制
body.put("enableAutoRecord",true);
//
//执行接口
JSONObject resultJson = YealinkVideoUtil.doPost(url, token, null, body);
//返回结果

Loading…
Cancel
Save