Created
August 23, 2017 21:17
-
-
Save navio/3176010791d4566403fafde14469430a to your computer and use it in GitHub Desktop.
// source http://jsbin.com/zicoqebanu
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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