disable_streaming()
  • 1 Minute to read

disable_streaming()


Article summary

Disable the streaming of the specified camera.

Reference

Arguments

ArgumentType
camera_namestr
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?

What's Next