Get current recording status. Returns: Dictionary with recording status including: - recording: Whether recording is active - frameCount: Frames captured so far - elapsed: Time elapsed in seconds - fps: Current frames per second
(self)
| 66 | return self._conn.send_request("recorder", {"action": "stop"}) |
| 67 | |
| 68 | def status(self) -> dict[str, Any]: |
| 69 | """Get current recording status. |
| 70 | |
| 71 | Returns: |
| 72 | Dictionary with recording status including: |
| 73 | - recording: Whether recording is active |
| 74 | - frameCount: Frames captured so far |
| 75 | - elapsed: Time elapsed in seconds |
| 76 | - fps: Current frames per second |
| 77 | - pendingWrites: Number of frames waiting to be written to disk |
| 78 | """ |
| 79 | return self._conn.send_request("recorder", {"action": "status"}) |
nothing calls this directly
no test coverage detected