Last active
November 17, 2019 07:53
-
-
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
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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