Skip to content

Instantly share code, notes, and snippets.

@florabtw
Created July 4, 2019 04:36
Show Gist options
  • Save florabtw/17b5bef6fa3d5259a8bbd2927fec07f0 to your computer and use it in GitHub Desktop.
Save florabtw/17b5bef6fa3d5259a8bbd2927fec07f0 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title></title>
</head>
<body>
<script
src="https://gist.githack.com/ncpierson/4d94970859c679a3884bfe7d00709f52/raw/3452fd99f67414be49d11689ae10055c45afd477/soundoftext.js"
type="text/javascript"
></script>
<script type="text/javascript">
soundoftext.sounds
.create({text: 'Hello, world!', voice: 'en-US'})
.then(location => {
const anchor = document.createElement('a');
anchor.setAttribute('href', location);
anchor.innerHTML = 'Click here to download!';
document.body.prepend(anchor);
});
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment