Posts

Showing posts from April, 2025

calculator

Science Calculator Science Calculator Standard Scientific Unit Converter Constants MC MR M+ M- CE C ÷ 7 8 9 × 4 5 6 - 1 2 3 + ± 0 . = x² x³ ...

Call

WebRTC Call Demo WebRTC Voice Call Demo Start Call End Call

Phone

WebRTC Call Demo WebRTC Voice Call Demo Start Call End Call let localStream; let peerConnection; const config = { iceServers: [{ urls: "stun:stun.l.google.com:19302" }] }; const remoteAudio = document.getElementById("remoteAudio"); async function startCall() { localStream = await navigator.mediaDevices.getUserMedia({ audio: true }); peerConnection = new RTCPeerConnection(config); // Send local audio stream localStream.getTracks().forEach(track => { peerConnection.addTrack(track, localStream); }); // Receive remote audio stream peerConnection.ontrack = event => { remoteAudio.srcObject = event.streams[0]; }; // ICE candidates peerConnection.onicecandidate = event => { if (event.candidate) { console.log("New ICE candidate: ", event.candidate); // You'd send this to the remote peer via signaling } }; // Offer const offer = a...