Google uses AI technology to translate content into your preferred language. AI translations can contain errors.
camera.stopCapture
使用集合让一切井井有条
根据您的偏好保存内容并对其进行分类。
停止视频拍摄或开放式间隔图片拍摄,具体取决于
选项中的 captureMode。
如果相应的 startCapture
用于间隔图片拍摄,并且设置了终止条件
(例如,在拍摄 10 张图片后终止),然后 stopCapture
无需创建,但应将其视为
终止。此命令是在 API 级别 2 中添加的。
参数
结果
错误
- disabledCommand:命令当前已停用;用于
例如,捕获已停止。
- invalidParameterName:输入参数名称为
无法识别。
命令 I/O |
| 命令输入 |
none |
| 命令输出 |
{
"results": {
"fileUrls":[
"url1",
"url2",
"url3",
...
"urln"
]
}
} |
| 命令输出(错误) |
{
"error": {
"code": "disabledCommand",
"message": "Command is currently disabled."
}
} |
如未另行说明,那么本页面中的内容已根据知识共享署名 4.0 许可获得了许可,并且代码示例已根据 Apache 2.0 许可获得了许可。有关详情,请参阅 Google 开发者网站政策。Java 是 Oracle 和/或其关联公司的注册商标。
最后更新时间 (UTC):2024-08-21。
[null,null,["最后更新时间 (UTC):2024-08-21。"],[],["The `stopCapture` command halts video or open-ended interval image capture, introduced in API level 2. It requires no parameters. Successful execution returns a list of file URLs (`fileUrls`) for the captured video or images. While unnecessary for interval captures with set termination conditions, it enables early termination. Errors include `disabledCommand` (if the capture is already stopped) and `invalidParameterName`. The command input is empty, and the output provides either `fileUrls` or an error message.\n"]]