Player

by Manuel Castro

HTML

<iframe
    id="player"
    src="https://splayer.lat/"
    allow="autoplay; fullscreen"
></iframe>
<!--ESTE ES EL LINK https://splayer.lat/ SE PUEDE USAR DIRECO EN OTROS NAVEGADORES-->

CSS

html, body {
    margin: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

JavaScript

window.addEventListener("load", () => {
    const iframe = document.getElementById("player");

    iframe.onload = () => {
        try {
            const video = iframe.contentWindow.document.querySelector("video");
            if (video) {
                video.muted = false;
                video.volume = 1;
                video.play();
            }
        } catch (e) {
            console.log("No se puede acceder al video (cross-origin).");
        }
    };
});