summaryrefslogtreecommitdiff
path: root/static/hls-player.js
blob: 6be5a913c443a0d6c1a9176b164d7013b548d39b (plain)
1
2
3
4
5
6
7
8
9
if (Hls.isSupported()) {
    const player = document.getElementById('hls-player');
    const hls = new Hls();
    hls.loadSource(player.dataset.hls);
    hls.attachMedia(player);
    hls.on(Hls.Events.MANIFEST_PARSED, (e, d) => {
        player.hidden = false;
    });
}