@hyext/hyext-api-adapter
v1.0.9
Published
抹平hyext部分api,暴露给外部小程序使用
Downloads
18
Keywords
Readme
hyext-api-adapter
抹平hyext部分api,暴露给外部小程序使用
release log
- 1.0.3 接口名字修改 & 新增4个接口(GetHostCameraLayerInfo,SelectProcessingCameraLayer,ReqHostStartOutPutPreviewStream,ReqHostStopOutPutPreviewStream)
localMessage Module
- StartLocalFunctionPreview 启动本地功能的预览效果
| 参数 | 类型 | 必须 | | ---- | ---- | ---- | | message | Object | 否 |
StartLocalFunctionPreview({xxx: xx}).then(res => {
// do something
}).catch(err => {
})
- StopLocalFunctionPreview 停止本地功能的预览效果
| 参数 | 类型 | 必须 | | ---- | ---- | ---- | | message | Object | 否 |
StopLocalFunctionPreview({xxx: xx}).then(res => {
// do something
}).catch(err => {
})
- StartLocalFunctionPushStream 开启本地功能推流到主播端预览界面
| 参数 | 类型 | 必须 | | ---- | ---- | ---- | | message | Object | 否 |
StartLocalFunctionPushStream({xxx: xx}).then(res => {
// do something
}).catch(err => {
})
- StopLocalFunctionPushStream 停止本地功能推流到主播端预览界面
| 参数 | 类型 | 必须 | | ---- | ---- | ---- | | message | Object | 否 |
StopLocalFunctionPushStream({xxx: xx}).then(res => {
// do something
}).catch(err => {
})
- SendOperateMessage 发送操作消息到端上
| 参数 | 类型 | 必须 | | ---- | ---- | ---- | | message | Object | 否 |
SendOperateMessage({xxx: xx}).then(res => {
// do something
}).catch(err => {
})
- IsLocalFunctionReady 小程序监听本地功能是否准备完毕
| 参数 | 类型 | 必须 | | ---- | ---- | ---- | | callback | function | 是 |
IsLocalFunctionReady(res => {
// do something
})
- OnLocalFunctionMessage 监听本地功能发送过来的消息
| 参数 | 类型 | 必须 | | ---- | ---- | ---- | | callback | function | 是 |
OnLocalFunctionMessage(res => {
// do something
})