Last Updated: February 25, 2016
·
2.151K
· rickcarlino

Simple HTML5 WAV creation in the browser, javascript only.

For quite some time, flash was the only way to go if you needed to make WAV files in the browser.
As the WebRTC standard matures, this becomes less of a requirement. I made a WebRTC library for WAV recording that aims to fix that.

Usage:

//Record a file:
voice = new Recording()
voice.start()

//Stop Recording:
voice.stop()

//Download the File Locally to your computer
voice.download()

//Reference the File (returns a javascript URL Object)
voice.file()

//Optionally, you may specify a filename for the download.
voice.download('whatdoesthefoxsay.wav')

GitHub: https://github.com/rickcarlino/simple_audio