WebRTC(Web实时通信)是一种用于在不同网络中的客户端之间进行实时音视频通信的开放标准。下面是一个简单的WebRTC代码示例,展示了如何通过WebRTC在两个客户端之间建立实时音视频通信。
// 客户端1
const pc1 = new RTCPeerConnection();
// 客户端2
const pc2 = new RTCPeerConnection();
// 客户端1
navigator.mediaDevices.getUserMedia({ audio: true, video: true })
.then(stream => {
// 将本地媒体流添加到RTCPeerConnection对象
pc1.addStream(stream);
});
// 客户端2
navigator.mediaDevices.getUserMedia({ audio: true, video: true })
.then(stream => {
// 将本地媒体流添加到RTCPeerConnection对象
pc2.addStream(stream);
});
// 客户端1
pc1.onicecandidate = event => {
if (event.candidate) {
// 发送ICE候选信息给客户端2
sendIceCandidateToClient2(event.candidate);
}
};
// 客户端2
pc2.onicecandidate = event => {
if (event.candidate) {
// 发送ICE候选信息给客户端1
sendIceCandidateToClient1(event.candidate);
}
};
// 客户端1
const dataChannel1 = pc1.createDataChannel('myDataChannel');
dataChannel1.onopen = event => {
console.log('数据通道已打开');
};
// 客户端2
pc2.ondatachannel = event => {
const dataChannel2 = event.channel;
dataChannel2.onopen = event => {
console.log('数据通道已打开');
};
};
// 客户端1
pc1.createOffer()
.then(offer => {
// 将SDP设置为本地描述
pc1.setLocalDescription(offer);
// 发送SDP给客户端2
sendSdpToClient2(offer);
});
// 客户端2
function handleSdpFromClient1(sdp) {
// 将SDP设置为远程描述
pc2.setRemoteDescription(new RTCSessionDescription(sdp));
// 创建应答
pc2.createAnswer()
.then(answer => {
// 将SDP设置为本地描述
pc2.setLocalDescription(answer);
// 发送应答给客户端1
sendSdpToClient1(answer);
});
}
// 客户端1
function handleSdpFromClient2(sdp) {
// 将SDP设置为远程描述
pc1.setRemoteDescription(new RTCSessionDescription(sdp));
}
// 客户端1
dataChannel1.send('Hello from client 1');
// 客户端2
dataChannel2.onmessage = event => {
console.log('接收到数据:', event.data);
};
这是一个简单的示例,演示了如何在不同网络
下一篇:不同网页上的ID值相同