Skip to content

Instantly share code, notes, and snippets.

@ivmos
Last active August 29, 2015 14:10
Show Gist options
  • Save ivmos/7fbe699afc6462f22cd1 to your computer and use it in GitHub Desktop.
Save ivmos/7fbe699afc6462f22cd1 to your computer and use it in GitHub Desktop.
<video id="v"/>
isCaller = true;
error = function (error) {
console.log(error);
}
if (isCaller) {
pc = new webkitRTCPeerConnection({
"iceServers": []
});
navigator.webkitGetUserMedia({
video: true,
audio: true
},
function (localMediaStream) {
pc.addStream(localMediaStream);
pc.createOffer(function (offer) {
pc.setLocalDescription(
new RTCSessionDescription(offer),
function () {
console.log(offer.sdp);
console.log("Paste on callee:");
console.log("receiveOffer(atob('" + btoa(offer.sdp) + "'))");
});
});
},
error
);
}
receiveOffer = function (offerSdp) {
var pc = new webkitRTCPeerConnection({
"iceServers": []
});
navigator.webkitGetUserMedia({
video: true,
audio: true
},
function (localMediaStream) {
pc.addStream(localMediaStream);
pc.setRemoteDescription(new RTCSessionDescription({
type: "offer",
sdp: offerSdp
}),
function () {
pc.createAnswer(function (answer) {
pc.setLocalDescription(answer);
console.log(answer.sdp);
console.log("Paste on caller:");
console.log("receiveAnswer(atob('" + btoa(answer.sdp) + "'))");
},
error, {
mandatory: {
OfferToReceiveAudio: true,
OfferToReceiveVideo: true
}
});
},
error);
},
error);
}
name: Intro to WebRTC
description: offer and receiving that offer in the callee
authors:
- Iván Mosquera Paulo
normalize_css: no
wrap: l
panel_js: 0
panel_css: 0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment