Skip to content

Instantly share code, notes, and snippets.

View michaeljamesrojas's full-sized avatar
🖥️
Exploring

Michael James Rojas michaeljamesrojas

🖥️
Exploring
  • Ormoc City, Leyte
View GitHub Profile
@michaeljamesrojas
michaeljamesrojas / makewav.js
Created November 12, 2021 13:27 — forked from asanoboy/makewav.js
How to make a WAV file in Javascript.
var Wav = function(opt_params){
/**
* @private
*/
this._sampleRate = opt_params && opt_params.sampleRate ? opt_params.sampleRate : 44100;
/**
* @private
*/