更新时间:2023-10-12 GMT+08:00
getMicVol(查询麦克风当前音量)
接口描述
查询麦克风当前音量大小。
注意事项
已经建立与OpenEye的WebSocket连接。
方法定义
OpenEyeCall.prototype.getMicVol = function(callbacks)
参数描述
参数名 |
类型 |
可选/必选 |
描述 |
---|---|---|---|
callbacks |
可选 |
回调方法。 |
参数名 |
类型 |
描述 |
---|---|---|
description |
String |
当前请求描述。 |
result |
Number |
查询结果。0表示成功,其他表示失败。 |
rsp |
Number |
内部消息编号。 |
param |
音量信息。 |
回调方法的入参示例:
{
"description" : "tsdk_get_mic_volume",
"param" : {
"volume" : 20
},
"result" : 0,
"rsp" : 67578
}
使用示例
function getMicVol() { global_openEye_SDK.openEyeCall.getMicVol({ response: getMicVolResponse }); } function getMicVolResponse(data) { console.info(data); if (data.result == 0) { console.info("GetMicVol Success."); } else { console.error("GetMicVol failed."); } }
父主题: 设备管理