Skip to content

Instantly share code, notes, and snippets.

@rogersguedes
Forked from esrever10/gs.sh
Created August 28, 2019 20:33
Show Gist options
  • Save rogersguedes/fa6f4acf45971a9b017ddd331a0f43cf to your computer and use it in GitHub Desktop.
Save rogersguedes/fa6f4acf45971a9b017ddd331a0f43cf to your computer and use it in GitHub Desktop.
gstreamer send and receive h264 rtp stream
# linux send h264 rtp stream:
gst-launch-1.0 -v ximagesrc ! video/x-raw,framerate=20/1 ! videoscale ! videoconvert ! x264enc tune=zerolatency bitrate=500 speed-preset=superfast ! rtph264pay ! udpsink host=127.0.0.1 port=5000
# Macos send h264 rtp stream:
gst-launch-1.0 -v avfvideosrc capture-screen=true ! video/x-raw,framerate=20/1 ! videoscale ! videoconvert ! x264enc tune=zerolatency bitrate=500 speed-preset=superfast ! rtph264pay ! udpsink host=127.0.0.1 port=5000
# receive h264 rtp stream:
gst-launch-1.0 -v udpsrc port=5000 caps = "application/x-rtp, media=(string)video, clock-rate=(int)90000, encoding-name=(string)H264, payload=(int)96" ! rtph264depay ! decodebin ! videoconvert ! autovideosink
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment