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。"],[[["\u003cp\u003eStops video or interval image capture, configurable via \u003ccode\u003ecaptureMode\u003c/code\u003e.\u003c/p\u003e\n"],["\u003cp\u003eEarly termination is possible even if a termination condition is set.\u003c/p\u003e\n"],["\u003cp\u003eReturns URLs to captured video or image files upon successful execution.\u003c/p\u003e\n"],["\u003cp\u003eAPI level 2 or higher is required to use this command.\u003c/p\u003e\n"],["\u003cp\u003ePotential errors include disabled command and invalid parameter name.\u003c/p\u003e\n"]]],["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"],null,["# camera.stopCapture\n\nStops video capture or open-ended interval image capture, determined by\n`captureMode` in [Options](/streetview/open-spherical-camera/reference/options).\nIf the corresponding [startCapture](/streetview/open-spherical-camera/reference/camera/startcapture)\nis for interval image capture and the termination condition is set\n(e.g. it terminates after capturing 10 images), then `stopCapture`\nis not needed, however, it should still be treated as a valid command for early\ntermination. **This command was added in API level 2.**\n\nParameters\n----------\n\n- This command has no parameter in request body.\n\nResults\n-------\n\n- **fileUrls:** A list of absolute URLs, pointing to video files or image files for open-ended interval capture.\n\nErrors\n------\n\n- **disabledCommand:** Command is currently disabled; for example, the capture has already been stopped.\n- **invalidParameterName:** The input parameter name is unrecognized.\n\n| Command I/O ----------- ||\n|----------------------------|-----------------------------------------------------------------------------------------------------|\n| **Command Input** | ```text none ``` |\n| **Command Output** | ```text { \"results\": { \"fileUrls\":[ \"url1\", \"url2\", \"url3\", ... \"urln\" ] } } ``` |\n| **Command Output (Error)** | ```text { \"error\": { \"code\": \"disabledCommand\", \"message\": \"Command is currently disabled.\" } } ``` |"]]