Revert pipeline order

This commit is contained in:
Quentin 2019-09-27 14:19:39 +02:00
parent 5741b1893d
commit f2e148e8e6

View file

@ -256,14 +256,14 @@ gst-launch-1.0 \
# both sides with echo cancellation # both sides with echo cancellation
export TARGET=192.168.1.1 export TARGET=192.168.1.1
gst-launch-1.0 \ gst-launch-1.0 \
pulsesrc ! \
audioconvert ! \
opusenc audio-type=voice inband-fec=false frame-size=20 ! \
rtpopuspay ! \
udpsink host=$TARGET port=5000 \
udpsrc port=5000 caps="application/x-rtp" ! \ udpsrc port=5000 caps="application/x-rtp" ! \
rtpjitterbuffer do-lost=true do-retransmission=false ! \ rtpjitterbuffer do-lost=true do-retransmission=false ! \
rtpopusdepay ! \ rtpopusdepay ! \
opusdec plc=true use-inband-fec=false ! \ opusdec plc=true use-inband-fec=false ! \
pulsesink pulsesink \
pulsesrc ! \
audioconvert ! \
opusenc audio-type=voice inband-fec=false frame-size=20 ! \
rtpopuspay ! \
udpsink host=$TARGET port=5000
``` ```