12 lines
406 B
Bash
Executable File
12 lines
406 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Set environment variables for GStreamer latency tracing.
|
|
# Note: We are using a different log file name to avoid overwriting the sender's log.
|
|
gst-launch-1.0 -v \
|
|
udpsrc uri="udp://239.239.239.3:8889" ! \
|
|
"application/x-rtp, media=(string)video, clock-rate=(int)90000, encoding-name=(string)H264" ! \
|
|
rtph264depay ! \
|
|
avdec_h264 qos=false ! \
|
|
videoconvert ! \
|
|
autovideosink sync=false
|