WebRTC-Example icon indicating copy to clipboard operation
WebRTC-Example copied to clipboard

A dead simple WebRTC example

Results 3 WebRTC-Example issues
Sort by recently updated
recently updated
newest added

So I have the same exact code as you with the following exception: `peerConnection.createOffer(offerOptions).then(createdDescription).catch(errorHandler);` where ``` const offerOptions = { offerToReceiveAudio: 1, offerToReceiveVideo: 1 }; ``` Furthermore, I am also...