MCPcopy Create free account
hub / github.com/bigdra50/unity-cli / stop

Method stop

unity_cli/api/recorder.py:55–66  ·  view source on GitHub ↗

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)

Source from the content-addressed store, hash-verified

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.

Callers

nothing calls this directly

Calls 1

send_requestMethod · 0.80

Tested by

no test coverage detected