GstRtspSink - Single JPEG image streaming

From RidgeRun Developer Wiki
Revision as of 20:19, 27 June 2017 by Mgruner (talk | contribs) (Created page with "{{GstRtspSink Page|TODO|TOTO| This wiki provides a simple GstRtspSink for a single JPEG video streaming. __TOC__ == GstRtspSink Server == <syntaxhighlight lang=bash> PORT=1...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)



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