2019-09-28 21:43:25 -05:00
|
|
|
{% extends "base.njk" %}
|
|
|
|
{% block content %}
|
2019-10-20 16:09:28 -05:00
|
|
|
<script>
|
|
|
|
function newPopup(url) {
|
|
|
|
popupWindow = window.open(
|
|
|
|
url,'popUpWindow','height=700,width=450,scrollbars=yes,toolbar=no,menubar=no,location=no,directories=no,status=yes')
|
|
|
|
}
|
|
|
|
</script>
|
2019-10-05 14:34:57 -05:00
|
|
|
</br>
|
2019-11-25 11:38:12 -06:00
|
|
|
<span style="float: left;font-size: large;"><a href="/live/{{ username }}/index.mpd">{{ username }}</a> | {{ title | escape }}</b></span><span style="float: right;font-size: large;"> Links | <a href="rtmp://{{ domain }}/live/{{ username }}">Watch</a> <a href="JavaScript:newPopup('/chat?room={{ username }}');">Chat</a> <a href="/vods/{{ username }}">VODs</a></span>
|
2019-09-28 21:43:25 -05:00
|
|
|
<div id="jscontainer">
|
|
|
|
<div id="jschild" style="width: 70%;height: 100%;">
|
|
|
|
<video controls poster="/thumbnail.jpg" class="video-js vjs-default-skin" id="live-video" style="width:100%;height:100%;"></video>
|
|
|
|
</div>
|
2019-10-20 16:09:28 -05:00
|
|
|
<div id="jschild" class="webchat" style="width: 30%;height: 100%;">
|
2019-11-25 11:38:12 -06:00
|
|
|
<iframe src="/chat?room={{ username }}" frameborder="0" style="width: 100%;height: 100%;"></iframe>
|
2019-09-28 21:43:25 -05:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<script>window.HELP_IMPROVE_VIDEOJS = false;</script>
|
|
|
|
<script src="/videojs/video.min.js"></script>
|
2019-11-10 10:29:15 -06:00
|
|
|
<script src="/dashjs/dash.all.min.js"></script>
|
|
|
|
<script src="/videojs/videojs-dash.min.js"></script>
|
2019-09-28 21:43:25 -05:00
|
|
|
<link rel="stylesheet" type="text/css" href="/videojs/video-js.min.css">
|
|
|
|
<script>
|
|
|
|
var player = videojs('live-video', {
|
|
|
|
html: {
|
|
|
|
nativeCaptions: false,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
player.ready(function() {
|
|
|
|
player.on("error", () => {
|
|
|
|
document.querySelector(".vjs-modal-dialog-content").textContent = "The stream is currently offline.";
|
|
|
|
});
|
|
|
|
player.src({
|
2019-11-25 11:38:12 -06:00
|
|
|
src: '/live/{{ username }}/index.mpd',
|
2019-11-10 10:29:15 -06:00
|
|
|
type: 'application/dash+xml'
|
2019-09-28 21:43:25 -05:00
|
|
|
});
|
|
|
|
})
|
|
|
|
</script></br>
|
2019-10-05 14:34:57 -05:00
|
|
|
<noscript>The webclients for the stream and the chat require javascript, but feel free to use the direct links above!</br></br></noscript>
|
|
|
|
{{ about | escape }}
|
2019-09-28 21:43:25 -05:00
|
|
|
{% endblock %}
|