Skip to content

Instantly share code, notes, and snippets.

@giuseppeg
Last active October 8, 2021 08:33
Show Gist options
  • Save giuseppeg/b405c555cb2e4ace687b41a54d491434 to your computer and use it in GitHub Desktop.
Save giuseppeg/b405c555cb2e4ace687b41a54d491434 to your computer and use it in GitHub Desktop.
window.navigator.mediaDevices
.getUserMedia({
audio: true,
video: false,
}).then(mediaStream => {
const rec = new MediaRecorder(mediaStream)
rec.start()
setTimeout(() => {
rec.stop()
alert('mime-type: ' + rec.mimeType)
}, 3000)
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment