Skip to main content

Overview

GStreamer is a powerful multimedia framework that allows for efficient video streaming and processing. The stellarHD supports MJPEG and raw YUYV compression formats, with high framerate support up to 60 FPS.

Requirements

You must have GStreamer installed on a Linux computer for this. You can use the following install command to get the required packages.

Identifying Device Nodes

When you plug in a stellarHD camera, the Linux kernel (via V4L2) typically creates four device nodes (e.g., /dev/video0 through /dev/video3).
  • MJPEG / YUYV: Found on the first node of the group (e.g., /dev/video0).
You can verify your device nodes using v4l2-ctl:
Look for the entry corresponding to the stellarHD. It will list the paths associated with that specific camera.

MJPEG Mode

MJPEG mode is the primary way to achieve high framerates (up to 60 FPS) on the stellarHD.

Local Preview

Assuming /dev/video0 is the MJPEG node:

UDP Network Stream

To stream MJPEG over a network to another device (e.g., IP 192.168.1.50 on port 5600):
To receive the stream on a different computer you can use the following:

YUYV Mode

Note that YUYV is limited to lower framerates at higher resolutions due to USB bandwidth.

Local Preview

Assuming /dev/video0 is the node:
Refer to the stellarHD Technical Specifications to see which resolution and framerate combinations are supported in YUYV mode.

Software Encoding (H.264)

Since the stellarHD does not have a built-in hardware H.264 encoder, you can use GStreamer to perform software encoding if you need to stream H.264 over a network.