1
0
Fork 0
mirror of https://github.com/DanielnetoDotCom/YouPHPTube synced 2025-10-04 18:29:39 +02:00
Oinktube/plugin/Live/sample-player/index.html
daniel 5db857b422 https://github.com/WWBN/AVideo/issues/2636#issuecomment-586584216
Version 8.5 to have the filesize for each video
2020-02-15 09:28:27 -03:00

20 lines
838 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>AVideo HLS video</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="video.js/video-js.min.css" rel="stylesheet" type="text/css"/>
</head>
<body>
<video id=example-video width=600 height=300 class="video-js vjs-default-skin" controls poster="poster.jpg">
<source src="https://live.avideo.com:444/live/59be13fe009a6/index.m3u8" type="application/x-mpegURL">
</video>
<script src="video.js/video.min.js" type="text/javascript"></script>
<script src="video.js/videojs-contrib-hls.min.js" type="text/javascript"></script>
<script>
var player = videojs('example-video');
player.play();
</script>
</body>
</html>