bryanjenningz / record-audio

A simple audio recording API

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Record Audio

A simple audio recording function.

How to use

The following code will record audio for 3 seconds, then play back the audio that it recorded.

(async () => {
  const recorder = await recordAudio();
  recorder.start();
  await sleep(3000);
  const audio = await recorder.stop();
  audio.play();
})();

Instructions for running example

Make sure your browser is up to date.

Clone the repo, then open index.html, then press action button and start talking. You will be recorded for 3 seconds, then your recording will be played back.

About

A simple audio recording API

License:MIT License


Languages

Language:HTML 64.1%Language:JavaScript 35.9%