开始录屏与结束录屏
接口描述
视频通话过程中开始或结束录制一段对方画面的视频,返回视频路径。
注意事项
前置条件:已经建立与OpenEyeCall的WebSocket连接并处于视频通话中。
方法定义
OpenEyeCall.prototype.videoCatch = function(operation, callbacks)
参数描述
参数名 |
类型 |
可选/必选 |
描述 |
---|---|---|---|
operation |
int |
必选 |
进行的操作类型,0为开始录屏,1为停止录屏 |
callbacks |
必选 |
回调方法。 |
参数名 |
类型 |
描述 |
---|---|---|
description |
String |
当前请求描述。 |
path |
String |
若成功,则是视频的路径,结束录屏成功时返回 |
result |
Number |
设置结果。0表示成功,1表示失败,若无此字段表示操作成功。 |
rsp |
Number |
内部消息编号。 |
回调方法的入参示例:
{ "description" : "OECatchVideo", "result" : 1, "rsp" : 67762 } { "description" : "OECatchVideo", "path" : "xxx", "rsp" : 67762 }
使用示例
function catchVideo(operation){ this.global_openEye_SDK.openEyeCall.videoCatch(operation, { response: startVideoCatchResponse }) } function startVideoCatchResponse(data){ console.log(data); if (data.result == 0) { console.info("VideoCatch Success"); } else { console.error("VideoCatch failed"); console.error(data); } }