disable_streaming()
- 1 Minute to read
disable_streaming()
- 1 Minute to read
Article summary
Did you find this summary helpful?
Thank you for your feedback
Disable the streaming of the specified camera.
Reference
Arguments
Argument | Type | |
---|---|---|
camera_name | str | Name of the camera |
Return
None
Exceptions
RayaCameraInvalidName
See the complete list of cameras exceptions.
Examples
1. Enabling the 'chest' camera
...
self.cameras = await self.enable_controller('cameras')
port, protocol, path = await self.cameras.enable_streaming('chest')
...
await self.cameras.disable_streaming('chest')
...
Was this article helpful?