<script src="https://cdn.jsdelivr.net/npm/hls.js@1"></script>
<video id="video" controls width="720" height="420"></video>
<script>
var video = document.getElementById('video');
if (Hls.isSupported()) {
var hls = new Hls();
hls.loadSource('https://player.vimeo.com/external/714732882.m3u8?s=741dc48dc2ed48fecb57ead514fd631bcd08ad27');
hls.attachMedia(video);
}
</script>