Skip to content

Instantly share code, notes, and snippets.

@navio
Created August 23, 2017 21:17
Show Gist options
  • Save navio/3176010791d4566403fafde14469430a to your computer and use it in GitHub Desktop.
Save navio/3176010791d4566403fafde14469430a to your computer and use it in GitHub Desktop.
<script src="https://cdn.jsdelivr.net/npm/hls.js@latest"></script>
<audio controls id="audio"></audio>
<script>
if(Hls.isSupported()) {
var audio = document.getElementById('audio');
var hls = new Hls();
hls.loadSource('https://audiblecdn-vh.akamaihd.net/i/295896/audiblewords/content/bk/haki/001104/V$342634$V/aax/bk_haki_001104_22_32.mp4/master.m3u8?hdnea=st=1503521904~exp=1534971504~acl=/*~hmac=117a6ae0ff4697bb30d006930858dfe5b64330eb61a30e9eda59580f8e5b8443');
hls.attachMedia(audio);
hls.on(Hls.Events.MANIFEST_PARSED,function() {
video.play();
});
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment