const playRecording = () => { const superBUffer = new Blob(recordblobs); // Create a Blob from the recorded data const recordedVideoEl = document.querySelector("#other-video"); // Get the video element recordedVideoEl.src = window.URL.createObjectURL(superBUffer); // Create a URL for the Blob and set it to the src recordedVideoEl.controls = true; // Enable video controls (play, pause, volume, etc.) recordedVideoEl.play(); // Play the video };