const videoPlayer = document.getElementById('videoPlayer');
const m3u8Url = 'https://example.com/path/to/playlist.m3u8';
if (Hls.isSupported()) {
const hls = new Hls();
hls.loadSource(m3u8Url);
hls.attachMedia(videoPlayer);
hls.on(Hls.Events.MANIFEST_PARSED, function () {
videoPlayer.play();
});
} else if (videoPlayer.canPlayType('application/vnd.apple.mpegurl')) {
videoPlayer.src = m3u8Url;
videoPlayer.addEventListener('loadedmetadata', function () {
videoPlayer.play();
});
}