Skip to content

Instantly share code, notes, and snippets.

@bryanjenningz
Created October 7, 2017 20:23
Show Gist options
  • Save bryanjenningz/6fc98f141730d54c75377682cb571992 to your computer and use it in GitHub Desktop.
Save bryanjenningz/6fc98f141730d54c75377682cb571992 to your computer and use it in GitHub Desktop.
(async () => {
const recorder = await recordAudio();
recorder.start();
setTimeout(async () => {
const audio = await recorder.stop();
audio.play();
}, 3000);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment