HTML para agregar Streaming Multiplataforma a su pagina web
Imprimir
87
Utilice el siguiente HTML para agregar el servicio de Streaming Multiplataforma a su pagina web. Cambie PUNTODEPUBLICACION por su punto de publicacion.
<script src="https://cdn.jsdelivr.net/hls.js/latest/hls.min.js"></script>
<video id="video" autoplay controls style="width:320px;height:240px;"><source src="http://PUNTODEPUBLICACION.veamos.tv/envivo/index.m3u8" type="application/vnd.apple.mpegURL" /></video>
<script>
var video = document.getElementById('video');
if(Hls.isSupported() && !(video.canPlayType && !!video.canPlayType('application/vnd.apple.mpegURL'))) {
var hls = new Hls();
hls.loadSource(video.getElementsByTagName("source")[0].src);
hls.attachMedia(video);
hls.on(Hls.Events.MANIFEST_PARSED,function() {
video.play();
});
}
</script>