MCPcopy Create free account
hub / github.com/BeingBeyond/BeTTER / append

Method append

tools/render/render_episode.py:1373–1377  ·  view source on GitHub ↗
(self, camera_id: str, rgb: Any)

Source from the content-addressed store, hash-verified

1371 return cls(writers)
1372
1373 def append(self, camera_id: str, rgb: Any) -> None:
1374 writer = self._writers.get(camera_id)
1375 if writer is None:
1376 raise KeyError(f"No video writer for camera: {camera_id}")
1377 writer.append_data(rgb)
1378
1379 def close(self) -> None:
1380 errors: list[BaseException] = []

Callers 15

mainFunction · 0.80
_selected_camera_specsFunction · 0.80
_startup_state_indicesFunction · 0.80
closeMethod · 0.80
__init__Method · 0.80
searchMethod · 0.80
downloadMethod · 0.80
_runMethod · 0.80

Calls 1

append_dataMethod · 0.80

Tested by

no test coverage detected