Audio Stream Send Problem #719
Unanswered
mkemalgokce
asked this question in
Q&A
Replies: 1 comment 1 reply
-
It seems the gstreamer pipeline uses payload type 96 while you set payload type 111 in the description, therefore the web browser may discard the data as it expects payload type 111. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello,
I want to create video call application between libdatachannel c++ client and web client. So i created signal server, turn server and stun server. I want to send my video and audio datas with multiple tracks.(Video track and audio track). My libdatachannel client sends offer to web client. And my connection completes. And video stream starts succesfully (i can receive videos from both sides).
But i have problems on audio side. Web client sends audio and i can receive web audio from libdatachannel client. But i can't receive libdatachannel audio from web client. This is my problem. I can't resolve this problem.
I used gstreamer for sending audio stream.( I choose gstreamer because your examples like that).
This is my gstreamer pipeline :
gst-launch-1.0 autoaudiosrc ! audioconvert ! audioresample ! queue ! opusenc ! audio/x-opus, profile=constrained-baseline ! rtpopuspay pt=96 mtu=1200 ! udpsink host=127.0.0.1 port=5002
These are libdatachannel codes :
And also i noticed payload types. I used different payload types for video and audio
I need some help. Thanks a lot!
Have a nice day.
Beta Was this translation helpful? Give feedback.
All reactions