Browse Source

Add example

QGC4.4
Don Gagne 1 year ago committed by Julian Oes
parent
commit
4357e2816a
No known key found for this signature in database
GPG Key ID: F0ED380FEA56DE41
  1. 4
      src/VideoReceiver/README.md

4
src/VideoReceiver/README.md

@ -45,6 +45,10 @@ Or this one: @@ -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

Loading…
Cancel
Save