You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Setting offerToReceiveAudio:true and offerToReceiveVideo:true before creating offer peerConnection.createOffer() is now deprecated and Safari does not support already it. We need to use new way peerConnection.addTransceiver('audio') and peerConnection.addTransceiver('video') but it breaks communication with opponent which uses AdapterJS. Both sides will only see own local video. Side using AdapterJS fails with error during creating answer. Could it be fixed?
The text was updated successfully, but these errors were encountered:
nolimitdev
changed the title
Setting peerConnection.addTransceiver('audio') causes communication not working
Setting peerConnection.addTransceiver('audio') and peerConnection.addTransceiver('video') causes communication not working
Sep 25, 2019
Setting
offerToReceiveAudio:true
andofferToReceiveVideo:true
before creating offerpeerConnection.createOffer()
is now deprecated and Safari does not support already it. We need to use new waypeerConnection.addTransceiver('audio')
andpeerConnection.addTransceiver('video')
but it breaks communication with opponent which uses AdapterJS. Both sides will only see own local video. Side using AdapterJS fails with error during creating answer. Could it be fixed?The text was updated successfully, but these errors were encountered: