GstRtspSink - Single VP8 video streaming

From RidgeRun Developer Wiki



TODO

Home

TOTO

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

GstRtspSink Server

PORT=12345
MAPPING=/test
gst-launch-1.0 videotestsrc ! vp8enc ! video/x-vp8, 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} ! rtpvp8depay ! vp8dec ! 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