In JavaScript or HTML5, how to play MP3 audio with dynamic, rather than static, URL?
Example – the following doesn’t work:
<audio controls="controls">
<source src="http://translate.google.com/translate_tts?tl=en&q=Hello%2C+World" type="audio/ogg">
</audio>
Thanks in advance!
That’s audio/mpeg, not audio/ogg, as seen from headers:
Try this:
http://jsfiddle.net/ZCwHH/
Works in browsers that play mp3, like google chrome.