インターンシップ(WebRTC回答)
socket.on('offer', async (offer) => {
myPeerConnection.setRemoteDescription(offer);
const answer = await myPeerConnection.createAnswer();
myPeerConnection.setLocalDescription(answer);
socket.emit('answer', answer, roomName);
});
socket.on('answer', (answer) => {
myPeerConnection.setRemoteDescription(answer);
});
=> https://developer.mozilla.org/ko/docs/Web/API/RTCPeerConnection/createAnswer ブラウザを取得するために必要な設定値を指定した後、応答で応答します.応答内容は、元の見積書に対する符号化データです.
Reference
この問題について(インターンシップ(WebRTC回答)), 我々は、より多くの情報をここで見つけました https://velog.io/@lsa3163/socket.io-실습-webRTC-answerテキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol