Skip to content

Instantly share code, notes, and snippets.

@mikkoh
Created August 29, 2014 22:49
Show Gist options
  • Save mikkoh/c9fa36e7afc040cf79b0 to your computer and use it in GitHub Desktop.
Save mikkoh/c9fa36e7afc040cf79b0 to your computer and use it in GitHub Desktop.
//originally from https://github.com/mattdiamond/Recorderjs/blob/master/recorder.js
var url = (window.URL || window.webkitURL).createObjectURL(data);
var link = window.document.createElement('a');
link.href = url;
link.download = 'output.wav';
var click = document.createEvent("Event");
click.initEvent("click", true, true);
link.dispatchEvent(click);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment