MediaStream मीडिया की सिंक्रोनाइज्ड स्ट्रीम का प्रतिनिधित्व करता है। यदि कोई ऑडियो ट्रैक नहीं है, तो यह एक खाली सरणी देता है और यह वीडियो स्ट्रीम की जांच करेगा, यदि वेबकैम कनेक्ट है, तो stream.getVideoTracks() वेबकैम से स्ट्रीम का प्रतिनिधित्व करने वाले एक MediaStreamTrack की एक सरणी देता है।
function gotStream(stream) { window.AudioContext = window.AudioContext || window.webkitAudioContext; var audioContext = new AudioContext(); // Create an AudioNode from the stream var mediaStreamSource = audioContext.createMediaStreamSource(stream); // Connect it to destination to hear yourself // or any other node for processing! mediaStreamSource.connect(audioContext.destination); } navigator.getUserMedia({audio:true}, gotStream);