Skip to content

Instantly share code, notes, and snippets.

@mynameisrufus
Last active December 21, 2015 03:59
Show Gist options
  • Save mynameisrufus/6246472 to your computer and use it in GitHub Desktop.
Save mynameisrufus/6246472 to your computer and use it in GitHub Desktop.
Detect m3u streaming support.
// Detect m3u support
//
// Mime type found here:
// http://developer.apple.com/library/ios/documentation/networkinginternet/conceptual/streamingmediaguide/DeployingHTTPLiveStreaming/DeployingHTTPLiveStreaming.html
//
var testEl = document.createElement('audio'), supported
supported = testEl.canPlayType('audio/x-mpegurl') != ""
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment