Skip to content

Instantly share code, notes, and snippets.

View autione's full-sized avatar
🤍
love the mind link

Davi Rafael autione

🤍
love the mind link
View GitHub Profile
const recordAudio = () => {
return new Promise(resolve => {
navigator.mediaDevices.getUserMedia({ audio: true })
.then(stream => {
const mediaRecorder = new MediaRecorder(stream);
const audioChunks = [];
mediaRecorder.addEventListener("dataavailable", event => {
audioChunks.push(event.data);
});