Skip to content

Instantly share code, notes, and snippets.

@GaetanoPiazzolla
Created October 28, 2021 15:53
Show Gist options
  • Save GaetanoPiazzolla/8f4c4046798d4d3b2f496db98a4eb740 to your computer and use it in GitHub Desktop.
Save GaetanoPiazzolla/8f4c4046798d4d3b2f496db98a4eb740 to your computer and use it in GitHub Desktop.
let btn = document.querySelector(".record-btn")
btn.addEventListener("click", async function () {
let stream = await navigator.mediaDevices.getDisplayMedia({
video: true
})
//...
})
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment