Skip to content

Instantly share code, notes, and snippets.

@mhawksey
Last active November 17, 2019 07:53
Show Gist options
  • Save mhawksey/57760242c8f1dd51938da477a27c7d99 to your computer and use it in GitHub Desktop.
Save mhawksey/57760242c8f1dd51938da477a27c7d99 to your computer and use it in GitHub Desktop.
Code snippets for Recording .mp3 audio in Google Add-ons/Google Apps Script to Google Drive https://mashe.hawksey.info/?p=17916
blobToDataURL(blob, function(url){
$('ol.convertedList')
.append('<li><strong> recording_' +
(new Date()) +
'_.mp3</strong><br/>' +
'<audio controls src="' + url + '"></audio>' +
'</li>');
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment