Skip to content

Instantly share code, notes, and snippets.

@veer66
Created October 3, 2013 04:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save veer66/6804899 to your computer and use it in GitHub Desktop.
Save veer66/6804899 to your computer and use it in GitHub Desktop.
Play OGG or MP3
var audio = document.createElement('audio');
audio.setAttribute("controls", true);
audio.setAttribute("autoplay", true);
var url = "http://..........ogg";
if(url === "" || audio.canPlayType("audio/ogg").replace(/^no$/, "") === "") {
url = "http://..........mp3";
}
audio.setAttribute("src", url);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment