mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-17 11:45:25 +00:00
example: fix the variable name for the ip-address
Fix the name in the launch pipeline and use a value of "localhost" by default.
This commit is contained in:
parent
1ccadf5c30
commit
4e9daf0e49
1 changed files with 6 additions and 5 deletions
|
@ -11,14 +11,15 @@ VOFFSET=0
|
|||
|
||||
VCAPS="video/x-raw-yuv,width=352,height=288,framerate=15/1"
|
||||
|
||||
DEST=192.168.1.126
|
||||
#DEST=192.168.1.126
|
||||
DEST=localhost
|
||||
|
||||
gst-launch -v gstrtpbin name=rtpbin \
|
||||
v4l2src ! videorate ! ffmpegcolorspace ! $VCAPS ! ffenc_h263p ! rtph263ppay ! rtpbin.send_rtp_sink_0 \
|
||||
rtpbin.send_rtp_src_0 ! queue ! udpsink host=$HOST port=5000 ts-offset=$AOFFSET \
|
||||
rtpbin.send_rtcp_src_0 ! udpsink host=$HOST port=5001 sync=false async=false \
|
||||
rtpbin.send_rtp_src_0 ! queue ! udpsink host=$DEST port=5000 ts-offset=$AOFFSET \
|
||||
rtpbin.send_rtcp_src_0 ! udpsink host=$DEST port=5001 sync=false async=false \
|
||||
udpsrc port=5005 ! rtpbin.recv_rtcp_sink_0 \
|
||||
autoaudiosrc ! audioconvert ! amrnbenc ! rtpamrpay ! rtpbin.send_rtp_sink_1 \
|
||||
rtpbin.send_rtp_src_1 ! queue ! udpsink host=$HOST port=5002 ts-offset=$VOFFSET \
|
||||
rtpbin.send_rtcp_src_1 ! udpsink host=$HOST port=5003 sync=false async=false \
|
||||
rtpbin.send_rtp_src_1 ! queue ! udpsink host=$DEST port=5002 ts-offset=$VOFFSET \
|
||||
rtpbin.send_rtcp_src_1 ! udpsink host=$DEST port=5003 sync=false async=false \
|
||||
udpsrc port=5007 ! rtpbin.recv_rtcp_sink_1
|
||||
|
|
Loading…
Reference in a new issue