GstRtspSink - Single JPEG image streaming

From RidgeRun Developer Wiki



TODO

Home

TOTO

This wiki provides a simple GstRtspSink for a single JPEG video streaming.

GstRtspSink Server

PORT=12345
MAPPING=/test
gst-launch-1.0 videotestsrc ! avenc_mjpeg ! image/jpeg, mapping=${MAPPING}  ! rtspsink service=${PORT}


Clients

VLC

IP_ADDRESS=192.0.0.1
PORT=12345
MAPPING=/test

vlc rtsp://${IP_ADDRESS}:${PORT}/${MAPPING}

GStreamer

IP_ADDRESS=192.0.0.1
PORT=12345
MAPPING=/test

gst-launch-1.0 rtspsrc location=rtsp://${IP_ADDRESS}:${PORT}/${MAPPING} ! rtpjpegdepay ! avdec_mjpeg ! queue ! autovideosink

MPlayer

IP_ADDRESS=192.0.0.1
PORT=12345
MAPPING=/test

mplayer rtsp://${IP_ADDRESS}:${PORT}/${MAPPING}

Totem

IP_ADDRESS=192.0.0.1
PORT=12345
MAPPING=/test

totem rtsp://${IP_ADDRESS}:${PORT}/${MAPPING}




TODO

Home

TOTO