Samples - Camera Streaming

Open in ClaudeOpen in ChatGPT

This sample shows how to create a video stream from a ZED camera that can be read by a remote application for viewing or further processing, using the ZED SDK’s Local Network Streaming feature.

Getting Started

Samples in this category

Single Sender

Establishes a network connection with a single camera, encodes a live video stream, and transmits it to a remote client. The ZED SDK handles all network communication, video encoding and transmission. (C++, Python)

GitHub

Multiple Sender

Same as Single Sender, but for several cameras at once: each camera runs in its own thread, encoding and transmitting its own stream. (C++, Python)

GitHub

Receiver

Receives and decodes video data sent from a remote ZED stream (from Single or Multiple Sender). (C++, Python)

GitHub

Encoded Passthrough

Forwards the camera’s already-encoded video stream without re-encoding it, reducing CPU/GPU load when you only need to relay the stream. (C++)

GitHub

Sender + Record H.264

Streams a live H.264 video feed while simultaneously recording it locally. (C++)

GitHub