Hi @grahamtaylornyc You’re probably looking for something like the below, which according to my knowledge requires some low-level coding
Text to Voice converted here[for the experimental purpose]
Learn how to host mp3 on google drive here
code used
<script>
let audioButton = document.querySelector(".audio-button"); // <-- Change CSS Class Here
audioButton.addEventListener("click", function () {
var audio = document.getElementById("audio");
if (audio.paused) {
audio.play();
} else {
audio.pause();
audio.currentTime = 0;
}
});
</script>
<audio
id="audio"
src="https://docs.google.com/uc?export=download&id=1DR2uziOQoACl8XGfJP8fTuYNFhX77hZ0"
></audio>;
Hope this helps