From 4357e2816a54718002ed342c16d63f166cb52928 Mon Sep 17 00:00:00 2001 From: Don Gagne Date: Mon, 15 Jan 2024 12:15:38 -0800 Subject: [PATCH] Add example --- src/VideoReceiver/README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/VideoReceiver/README.md b/src/VideoReceiver/README.md index 06fea54..0649fe9 100644 --- a/src/VideoReceiver/README.md +++ b/src/VideoReceiver/README.md @@ -45,6 +45,10 @@ Or this one: ``` gst-launch-1.0 udpsrc port=5600 ! application/x-rtp ! rtpjitterbuffer ! rtph264depay ! avdec_h264 ! videoconvert ! autovideosink ``` +Or this one, note that removing rtpjitterbuffer would reduce video latency as low latency mode is doing: +``` +gst-launch-1.0 udpsrc port=5600 caps='application/x-rtp, media=(string)video, clock-rate=(int)90000, encoding-name=(string)H264' ! rtpjitterbuffer ! parsebin ! decodebin ! autovideosink fps-update-interval=1000 sync=false +``` ### Additional Protocols