model-action 1.0.17 → 1.0.18
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.
@@ -84,4 +84,14 @@ export class VideoFusionAction extends Action {
|
|
84
84
|
};
|
85
85
|
this.sendParam(param, '刷新视频融合');
|
86
86
|
}
|
87
|
+
/**
|
88
|
+
* 获取融合点位列表
|
89
|
+
*/
|
90
|
+
static videoFusionList() {
|
91
|
+
const param = {
|
92
|
+
cmd: "videoFusion",
|
93
|
+
action: "get",
|
94
|
+
};
|
95
|
+
this.sendParam(param, '获取视频融合点位列表');
|
96
|
+
}
|
87
97
|
}
|