mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-08 18:39:54 +00:00
bd8c40c014
Original commit message from CVS: * gst/avi/gstavidemux.c: (gst_avi_demux_combine_flows): Fix typo in comments. * tests/examples/rtp/client-H263p-PCMA.sdp: * tests/examples/rtp/client-H263p-PCMA.sh: * tests/examples/rtp/client-H264-PCMA.sdp: * tests/examples/rtp/client-H264-PCMA.sh: * tests/examples/rtp/client-H264.sdp: * tests/examples/rtp/client-H264.sh: * tests/examples/rtp/client-PCMA.sdp: * tests/examples/rtp/client-PCMA.sh: * tests/examples/rtp/server-alsasrc-PCMA.sh: * tests/examples/rtp/server-v4l2-H263p-alsasrc-AMR.sh: * tests/examples/rtp/server-v4l2-H264-alsasrc-PCMA.sh: Add some more docs and fix examples.
35 lines
1.8 KiB
Bash
Executable file
35 lines
1.8 KiB
Bash
Executable file
#!/bin/sh
|
|
#
|
|
# A simple RTP receiver
|
|
#
|
|
# receives alaw encoded RTP audio on port 5002, RTCP is received on port 5003.
|
|
# the receiver RTCP reports are sent to port 5007
|
|
#
|
|
# .-------. .----------. .---------. .-------. .--------.
|
|
# RTP |udpsrc | | rtpbin | |pcmadepay| |alawdec| |alsasink|
|
|
# port=5002 | src->recv_rtp recv_rtp->sink src->sink src->sink |
|
|
# '-------' | | '---------' '-------' '--------'
|
|
# | |
|
|
# | | .-------.
|
|
# | | |udpsink| RTCP
|
|
# | send_rtcp->sink | port=5007
|
|
# .-------. | | '-------' sync=false
|
|
# RTCP |udpsrc | | | async=false
|
|
# port=5003 | src->recv_rtcp |
|
|
# '-------' '----------'
|
|
|
|
|
|
# the caps of the sender RTP stream. This is usually negotiated out of band with
|
|
# SDP or RTSP.
|
|
AUDIO_CAPS="application/x-rtp,media=(string)audio,clock-rate=(int)8000,encoding-name=(string)PCMA"
|
|
|
|
# the destination machine to send RTCP to. This is the address of the sender and
|
|
# is used to send back the RTCP reports of this receiver. If the data is sent
|
|
# from another machine, change this address.
|
|
DEST=127.0.0.1
|
|
|
|
gst-launch -v gstrtpbin name=rtpbin \
|
|
udpsrc caps=$AUDIO_CAPS port=5002 ! rtpbin.recv_rtp_sink_0 \
|
|
rtpbin. ! rtppcmadepay ! alawdec ! audioconvert ! audioresample ! alsasink \
|
|
udpsrc port=5003 ! rtpbin.recv_rtcp_sink_0 \
|
|
rtpbin.send_rtcp_src_0 ! udpsink port=5007 host=$DEST sync=false async=false
|