larksr_websdk 3.2.12 → 3.2.16

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.
@@ -63,3 +63,12 @@ sendTextToDataChannel(text: string): void;
63
63
  */
64
64
  sendBinaryToDataChannel(binary: Uint8Array): void;
65
65
  ```
66
+
67
+ ## 其他
68
+
69
+ ```typescript
70
+ /**
71
+ * 采集一帧图像
72
+ */
73
+ captrueFrame(data: any)
74
+ ```
@@ -33,6 +33,20 @@ larksr.videoComponent.captrueFrame(data);
33
33
  larksr.videoElement;
34
34
  ```
35
35
 
36
+ 3. 控制显示元素
37
+
38
+ ```javascript
39
+ // 是否显示移动端触摸点
40
+ larksr.isEnableTouchPonit = false;
41
+ // 是否显示载入画面时底部文字
42
+ larksr.isEnableLoadingStateBar = false;
43
+ ```
44
+
45
+ ```javascript
46
+ // 设置缩放模式
47
+ larksr.scaleMode = ScaleMode.CONTAIN_APP;
48
+ ```
49
+
36
50
  ## 配置参数
37
51
 
38
52
  ```javascript