summaryrefslogtreecommitdiff
path: root/tests/examples/rtp/server-v4l2-H263p-alsasrc-AMR.sh
diff options
context:
space:
mode:
authorStefan Kost <ensonic@users.sf.net>2011-03-01 22:40:19 +0200
committerStefan Kost <ensonic@users.sf.net>2011-03-01 22:40:19 +0200
commit4e9daf0e494048939668402e220842f248058eb6 (patch)
tree115f8bc7754c2177c045443f451c5e9f3248e700 /tests/examples/rtp/server-v4l2-H263p-alsasrc-AMR.sh
parent1ccadf5c308239df22ad429788fc81b7b152feaf (diff)
example: fix the variable name for the ip-address
Fix the name in the launch pipeline and use a value of "localhost" by default.
Diffstat (limited to 'tests/examples/rtp/server-v4l2-H263p-alsasrc-AMR.sh')
-rwxr-xr-xtests/examples/rtp/server-v4l2-H263p-alsasrc-AMR.sh11
1 files changed, 6 insertions, 5 deletions
diff --git a/tests/examples/rtp/server-v4l2-H263p-alsasrc-AMR.sh b/tests/examples/rtp/server-v4l2-H263p-alsasrc-AMR.sh
index dd7fc8997..d8c13a748 100755
--- a/tests/examples/rtp/server-v4l2-H263p-alsasrc-AMR.sh
+++ b/tests/examples/rtp/server-v4l2-H263p-alsasrc-AMR.sh
@@ -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