Try another pipeline

This commit is contained in:
Quentin 2019-09-27 14:40:58 +02:00
parent 30418445f0
commit 1d71699761

View file

@ -256,14 +256,15 @@ 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 \
udpsrc port=5000 caps="application/x-rtp" ! \
rtpjitterbuffer do-lost=true do-retransmission=false ! \
rtpopusdepay ! \
opusdec plc=true use-inband-fec=false ! \
autoaudiosink \
autoaudiosrc ! \ autoaudiosrc ! \
audioconvert ! \ audioresample ! \
opusenc audio-type=voice inband-fec=false frame-size=20 ! \ opusenc audio-type=voice inband-fec=FALSE frame-size=20 ! \
rtpopuspay ! \ rtpopuspay ! \
udpsink host=$TARGET port=5000 udpsink host=$TARGET port=5000 async=FALSE
udpsrc port=5000 caps="application/x-rtp" ! \
rtpjitterbuffer do-lost=TRUE do-retransmission=FALSE ! \
rtpopusdepay ! \
opusdec plc=TRUE use-inband-fec=FALSE ! \
audioresample ! \
autoaudiosink \
``` ```