Created
January 8, 2025 02:20
-
-
Save nszceta/3763e0cd9913ac2d904f74e7041b3a60 to your computer and use it in GitHub Desktop.
gst_debugging_1.sh
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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