Bizzat link ile denedim çalışıyor fakat sesin kapalı olması lazım ses açık olduğunda chrome oynatmayı engelliyor.

<script></script>

<script>
var config = {
autoStartLoad: true
};
var video = document.getElementById('video');

if (Hls.isSupported()) {

var hls = new Hls(config);
hls.loadSource('https://trtcanlitv-lh.akamaihd.net/i/TRT1HD_1@181842/index_720p_av-b.m3u8');
hls.attachMedia(video);
hls.on(Hls.Events.MANIFEST_PARSED, function() {
video.play();
});

} else if (video.canPlayType('application/vnd.apple.mpegurl')) {
video.src = 'https://videolinki.com';
video.addEventListener('canplay', function() {
video.play();
});

}


video.oncanplay = function() {
video.play();
};

</script>