![Kinova Gen3 User Manual Download Page 131](http://html.mh-extra.com/html/kinova/gen3/gen3_user-manual_1971410131.webp)
KINOVA
®
Gen3 Ultra lightweight robot
User Guide
131
Unpacking the example:
•
gst-launch-1.0
: launch GStreamer
•
rtspsrc location=rtsp://192.168.1.10/color latency=30
: connect to the
RTSP server at the color stream URL with latency of 30 ms.
•
rtph264depay
: extract H.264 video payload from RTP packets
•
avdec_h264
: decode H.264 video
•
autovideosink
: search computer registry for video sink (player) and play decoded video
stream.
Depth stream CLI example: command to display the depth stream
gst-launch-1.0 rtspsrc location=rtsp://192.168.1.10/depth
latency=30 ! rtpgstdepay ! videoconvert ! autovideosink
Unpacking the example:
•
gst-launch-1.0
: launch GStreamer
•
rtspsrc location=rtsp://192.168.1.10/depth latency=30
: connect to the
RTSP server at the color stream URL with latency of 30 ms.
•
rtpgstdepay
: extract GStreamer buffers from RTP packets
•
videoconvert
: automatically convert the video to a format understandable to the chosen
video sink in the next step
•
autovideosink
: search computer registry for video sink (player) and play decoded video
stream.
Linux command examples
This section provides examples of using GStreamer with the robot vision module camera
streams on the Linux command line.
Color stream CLI example: command to display the color stream
gst-launch-1.0 rtspsrc location=rtsp://192.168.1.10/color
latency=30 ! rtph264depay ! avdec_h264 ! autovideosink