29 lines
1,000 B
HTML
29 lines
1,000 B
HTML
|
|
{% extends "site_base.html" %}
|
||
|
|
{% load registrasion_tags %}
|
||
|
|
{% load lca2018_tags %}
|
||
|
|
{% load static %}
|
||
|
|
|
||
|
|
{% block head_title %}Live Streaming{% endblock %}
|
||
|
|
{% block page_title %}Live Streaming{% endblock %}
|
||
|
|
|
||
|
|
{% block content %}
|
||
|
|
<p>Live Streaming is available to everyone attending the conference.</p>
|
||
|
|
<p>We encourage you to join in the chat via the <a href="https://matrix.to/#/#everything-open:matrix.org" target="_blank">Everything Open Matrix Space</a></p>
|
||
|
|
|
||
|
|
<div id="holding-frame">
|
||
|
|
<p>There are currently no live streams available. Please check back soon.</p>
|
||
|
|
</div>
|
||
|
|
<div id="streaming-frame">
|
||
|
|
<mux-player
|
||
|
|
playback-id="EcHgOK9coz5K4rjSwOkoE7Y7O01201YMIC200RI6lNxnhs"
|
||
|
|
metadata-video-title="Test VOD"
|
||
|
|
metadata-viewer-user-id="user-id-007"
|
||
|
|
></mux-player>
|
||
|
|
</div>
|
||
|
|
{% endblock %}
|
||
|
|
|
||
|
|
{% block extra_script %}
|
||
|
|
<script src="https://cdn.jsdelivr.net/npm/@mux/mux-player"></script>
|
||
|
|
<script src="{% static 'js/streaming.js' %}" type="text/javascript"></script>
|
||
|
|
{% endblock %}
|