Skip to content

Instantly share code, notes, and snippets.

@nszceta
Created January 8, 2025 02:20
Show Gist options
  • Save nszceta/3763e0cd9913ac2d904f74e7041b3a60 to your computer and use it in GitHub Desktop.
Save nszceta/3763e0cd9913ac2d904f74e7041b3a60 to your computer and use it in GitHub Desktop.
gst_debugging_1.sh
gst-launch-1.0 videotestsrc is-live=true ! \
video/x-raw,framerate=5/1,width=2000,height=2000 ! \
jpegenc ! \
rtpgstpay pt=96 ! \
application/x-rtp,media=application,encoding-name=X-GST,payload=96,clock-rate=90000 ! \
tcpserversink host=0.0.0.0 port=5000
GST_DEBUG=3 gst-launch-1.0 tcpclientsrc host=localhost port=5000 ! \
application/x-rtp,media=application,encoding-name=X-GST,payload=96,clock-rate=90000 ! \
rtpjitterbuffer ! \
rtpgstdepay ! \
image/jpeg,width=2000,height=2000,framerate=5/1 ! \
jpegdec ! \
videoconvert ! \
fpsdisplaysink sync=false
Received invalid RTP payload, dropping
0:00:00.222482411 528790 0x7663a0000d60 ERROR rtpjitterbuffer gstrtpjitterbuffer.c:1590:gst_jitter_buffer_sink_parse_caps:<rtpjitterbuffer0> Got caps with wrong payload type (got 10, expected 96)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment