Stop recording and get results. Returns: Dictionary with recording results including: - frameCount: Number of frames captured - elapsed: Recording duration in seconds - fps: Achieved frames per second - outputDir: Output directory
(self)
| 53 | return self._conn.send_request("recorder", params) |
| 54 | |
| 55 | def stop(self) -> dict[str, Any]: |
| 56 | """Stop recording and get results. |
| 57 | |
| 58 | Returns: |
| 59 | Dictionary with recording results including: |
| 60 | - frameCount: Number of frames captured |
| 61 | - elapsed: Recording duration in seconds |
| 62 | - fps: Achieved frames per second |
| 63 | - outputDir: Output directory path |
| 64 | - format: Image format used |
| 65 | """ |
| 66 | return self._conn.send_request("recorder", {"action": "stop"}) |
| 67 | |
| 68 | def status(self) -> dict[str, Any]: |
| 69 | """Get current recording status. |
nothing calls this directly
no test coverage detected