<script> if (myroom=='номер комнаты') document.write('<video id="video" width='330px' height='200px' controls autoplay src="https://myradio24.org/77777_livestream.m3u8" type="application/x-mpegURL" name="play" value="false"> </video>'); if (Hls.isSupported()) { var video = document.getElementById('video'); var hls = new Hls(); hls.loadSource(video.src); hls.attachMedia(video); }else{ alert("Cannot stream HLS, use another video source"); } </script>
<script> document.write('<video id="video" width="330px" height="200px" controls style="display:none;" src="https://myradio24.org/77777_livestream.m3u8" type="application/x-mpegURL" name="play" value="false"></video>'); if (Hls.isSupported()) { var video = document.getElementById('video'); var hls = new Hls(); hls.loadSource(video.src); hls.attachMedia(video); } else { alert("Cannot stream HLS, use another video source"); } </script>
// Показать видео, если комната 7 var video = document.getElementById('video'); if (room == '7') { video.style.display = 'block'; } else { video.style.display = 'none'; }