I have an html element
<video id="video" autoplay="autoplay">Video stream not available.</video>
and js
const video = document.getElementById('video');
video.play()
video.style.display = 'block'
video.setAttribute('autoplay', '');
video.setAttribute('muted', '');
video.setAttribute('playsinline', '');
It works on every browser but if I open link from SKYPE it doesn't work.