// set up basic variables for app var record = document.querySelector('.record'); var stop = document.querySelector('.stop'); var soundClips = document.querySelector('.sound-clips'); var canvas = document.querySelector('.visualizer'); var mainSection = document.querySelector('.main-controls'); // disable stop button while not recording stop.disabled = true; // visualiser setup - create web audio api context and canvas var audioCtx = new (window.AudioContext || webkitAudioContext)(); var canvasCtx = canvas.getContext("2d"); //main block for doing the audio recording if (navigator.mediaDevices.getUserMedia) { console.log('getUserMedia supported.'); var constraints = { audio: true }; var chunks = []; var onSuccess = function(stream) { var mediaRecorder = new MediaRecorder(stream); visualize(stream); record.onclick = function() { mediaRecorder.start(); console.log(mediaRecorder.state); console.log("recorder started"); record.style.background = "red"; stop.disabled = false; record.disabled = true; } stop.onclick = function() { mediaRecorder.stop(); console.log(mediaRecorder.state); console.log("recorder stopped"); record.style.background = ""; record.style.color = ""; // mediaRecorder.requestData(); stop.disabled = true; record.disabled = false; } mediaRecorder.onstop = function(e) { console.log("data available after MediaRecorder.stop() called."); var clipName = prompt('Enter a name for your sound clip?','My unnamed clip'); console.log(clipName); var clipContainer = document.createElement('article'); var clipLabel = document.createElement('p'); var audio = document.createElement('audio'); var deleteButton = document.createElement('button'); clipContainer.classList.add('clip'); audio.setAttribute('controls', ''); deleteButton.textContent = 'Delete'; deleteButton.className = 'delete'; if(clipName === null) { clipLabel.textContent = 'My unnamed clip'; } else { clipLabel.textContent = clipName; } clipContainer.appendChild(audio); clipContainer.appendChild(clipLabel); clipContainer.appendChild(deleteButton); soundClips.appendChild(clipContainer); audio.controls = true; var blob = new Blob(chunks, { 'type' : 'audio/ogg; codecs=opus' }); chunks = []; var audioURL = window.URL.createObjectURL(blob); console.log('audio',audioURL) audio.src = audioURL; console.log("recorder stopped"); // fetch(audioURL) // .then(response => response.blob()) // .then(blob => { // // do stuff with `blob`: `Blob` // console.log(blob); // }); // var file = new File([blob], 'filename.ogg', {type: 'audio/ogg; codecs=opus', lastModified: Date.now()}); function upload(){ $.ajax({ type: "POST", url: "scripts/uploadWav.php", data: { wavBase64: audioURL } }).done(function(o) { console.log('saved'); }); } upload(); // #2 // var audioControl = document.getElementById('audio'); // // 2: Serialize the data to localStorage and read it back then play... // var base64FileData = audioURL.toString(); // var mediaFile = { // fileUrl: audioURL, // size: blob.size, // type: blob.type, // src: base64FileData // }; // // save the file info to localStorage // localStorage.setItem('myTest', JSON.stringify(mediaFile)); // // read out the file info from localStorage again // var reReadItem = JSON.parse(localStorage.getItem('myTest')); // audioControl.src = reReadItem.src; deleteButton.onclick = function(e) { evtTgt = e.target; evtTgt.parentNode.parentNode.removeChild(evtTgt.parentNode); } clipLabel.onclick = function() { var existingName = clipLabel.textContent; var newClipName = prompt('Enter a new name for your sound clip?'); if(newClipName === null) { clipLabel.textContent = existingName; } else { clipLabel.textContent = newClipName; } } } mediaRecorder.ondataavailable = function(e) { chunks.push(e.data); } } var onError = function(err) { console.log('The following error occured: ' + err); } navigator.mediaDevices.getUserMedia(constraints).then(onSuccess, onError); } else { console.log('getUserMedia not supported on your browser!'); } function visualize(stream) { var source = audioCtx.createMediaStreamSource(stream); var analyser = audioCtx.createAnalyser(); analyser.fftSize = 2048; var bufferLength = analyser.frequencyBinCount; var dataArray = new Uint8Array(bufferLength); source.connect(analyser); //analyser.connect(audioCtx.destination); draw() function draw() { WIDTH = canvas.width HEIGHT = canvas.height; requestAnimationFrame(draw); analyser.getByteTimeDomainData(dataArray); canvasCtx.fillStyle = 'rgb(200, 200, 200)'; canvasCtx.fillRect(0, 0, WIDTH, HEIGHT); canvasCtx.lineWidth = 2; canvasCtx.strokeStyle = 'rgb(0, 0, 0)'; canvasCtx.beginPath(); var sliceWidth = WIDTH * 1.0 / bufferLength; var x = 0; for(var i = 0; i < bufferLength; i++) { var v = dataArray[i] / 128.0; var y = v * HEIGHT/2; if(i === 0) { canvasCtx.moveTo(x, y); } else { canvasCtx.lineTo(x, y); } x += sliceWidth; } canvasCtx.lineTo(canvas.width, canvas.height/2); canvasCtx.stroke(); } } window.onresize = function() { canvas.width = mainSection.offsetWidth; } window.onresize();