34 lines
1007 B
HTML
34 lines
1007 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset='utf-8'>
|
|
<title>Movie Night!</title>
|
|
<link rel="stylesheet" type="text/css" href="/static/site.css">
|
|
<script src="/static/js/jquery.js"></script>
|
|
<script src="/static/js/flv.min.js"></script>
|
|
<script>
|
|
|
|
function initPlayer() {
|
|
if (flvjs.isSupported()) {
|
|
var videoElement = document.getElementById('videoElement');
|
|
var flvPlayer = flvjs.createPlayer({
|
|
type: 'flv',
|
|
url: '/live'
|
|
});
|
|
flvPlayer.attachMediaElement(videoElement);
|
|
flvPlayer.load();
|
|
flvPlayer.play();
|
|
}
|
|
}
|
|
|
|
</script>
|
|
</head>
|
|
|
|
<body>
|
|
<video id="videoElement" controls autoplay x5-video-player-type="h5" x5-video-player-fullscreen="true" playsinline webkit-playsinline>
|
|
Your browser is too old and doesn't support HTML5 video.
|
|
</video>
|
|
<script>initPlayer();</script>
|
|
</body>
|
|
</html>
|