Skip to content

Commit aea0314

Browse files
author
miot-robot
committed
Merge branch hotfix-miotcamera into SDK_10074 refer f45e92c1a86914845e8812c8dc619f53c12f7893
1 parent 64e4318 commit aea0314

File tree

3 files changed

+47
-17
lines changed

3 files changed

+47
-17
lines changed

bin/config/transformer.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

doc-md/07-UI组件/01-常用UI组件.md

+13-13
Original file line numberDiff line numberDiff line change
@@ -569,19 +569,6 @@ RTSP视频渲染组件
569569

570570
* * *
571571

572-
<a name="module_miot/ui/"></a>
573-
574-
## miot/ui/
575-
摇杆组件,仅供追觅皮皮灯设备使用
576-
577-
**Export**: public
578-
**Doc_name**: 常用UI组件
579-
**Doc_index**: 1
580-
**Doc_directory**: ui
581-
**Since**: 10074
582-
583-
* * *
584-
585572
<a name="module_miot/ui/RobotMap"></a>
586573

587574
## miot/ui/RobotMap
@@ -618,6 +605,19 @@ RTSP视频渲染组件
618605

619606
* * *
620607

608+
<a name="module_miot/ui/"></a>
609+
610+
## miot/ui/
611+
摇杆组件,仅供追觅皮皮灯设备使用
612+
613+
**Export**: public
614+
**Doc_name**: 常用UI组件
615+
**Doc_index**: 1
616+
**Doc_directory**: ui
617+
**Since**: 10074
618+
619+
* * *
620+
621621
<a name="module_miot/ui/SingleChoseDialog"></a>
622622

623623
## miot/ui/SingleChoseDialog

miot-sdk/service/miotcamera.js

+33-3
Original file line numberDiff line numberDiff line change
@@ -937,15 +937,45 @@ class IMiotCamera {
937937
encryptFile(params) {
938938
return Promise.resolve(null);
939939
}
940+
941+
/**
942+
* 获取通用视频播放接口地址(如云存视频,看家视频 地址)
943+
* @since 10066
944+
* @param {string} hostPrefix host前缀
945+
* @param {string} path 换播放地址的接口
946+
* @param {object} param readableMap,根据fileId换播放地址接口需要的参数
947+
* @returns {Promise<String>} 文件路径
948+
*/
949+
@report
950+
getVideoFileUrlV2(hostPrefix, path, param) {
951+
return Promise.resolve(null);
952+
}
953+
/**
954+
* 下载m3u8视频并合成mp4,支持合成mp4时统一分辨率,避免视频花屏
955+
* @since 10066
956+
* @param fileId 视频文件的fileId
957+
* @param url 视频文件交给播放器播放的url (使用getVideoFileUrlV2换过来的视频地址)
958+
* @param filePath 下载视频完成后 视频的存储路径,要求必须以Host.storageBasePath开始
959+
* @param callbackName 下载进度回调
960+
* @param did did
961+
* @returns
962+
* state : 1. onStart (开始下载) 2. onComplete(下载完成) 3. onError(失败) 4. onProgress(下载进度)
963+
* errorInfo : 失败描述(state = onError时才有)
964+
* progress : 下载进度0 - 100 (state = onProgress时才有)
965+
*/
966+
@report
967+
downloadM3U8ToMP4ByUrl(fileId, url, filePath, callbackName, did = Device.deviceID) {
968+
return null
969+
}
940970
/**
941971
*
942972
* @param {Device.deviceID} did
943973
* @returns result是tutkSessionRead base64编码后的结构体
944974
*/
945975
@report
946-
tutkSessionRead(did = Device.deviceID) {
947-
return Promise.resolve(null);
948-
}
976+
tutkSessionRead(did = Device.deviceID) {
977+
return Promise.resolve(null);
978+
}
949979
/**
950980
* 客户端手动发送,只有创米的一款设备如此,需要循环发送保持心跳才能让对讲成功
951981
* @param {String} ioCtrlBuff 插件拼接的数据 base64后的

0 commit comments

Comments
 (0)