Skip to content

Instantly share code, notes, and snippets.

@Vanlalhriata
Created January 30, 2015 12:27
Show Gist options
  • Save Vanlalhriata/839a075be4fe81d9146c to your computer and use it in GitHub Desktop.
Save Vanlalhriata/839a075be4fe81d9146c to your computer and use it in GitHub Desktop.
Force download
var url = (window.URL || window.webkitURL).createObjectURL(mp3blob);
var link = window.document.createElement('a');
link.href = url;
link.download = 'output.mp3';
var evt = new MouseEvent('click', { 'view': window, 'bubbles': true, 'cancelable': true });
link.dispatchEvent(evt);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment