orfplayer/templates/frontend/station.html
2022-05-10 14:26:31 +02:00

20 lines
663 B
HTML

{% load static %}
{% load stations %}
<!DOCTYPE html>
<html>
<head>
<link href="{% static "vendor/css/video-js.css" %}" rel="stylesheet">
<script src="{% static "vendor/js/video.js" %}"></script>
<script src="{% static "vendor/js/videojs-flash.js" %}"></script>
<script src="{% static "vendor/js/videojs-contrib-hls.js" %}"></script>
</head>
<body>
<video crossOrigin="anonymous" class="video-js vjs-default-skin vjs-big-play-centered" data-setup='{"controls": true, "autoplay": true }'>
<source src="{% url "stationproxy" station "manifest_6.m3u8" %}" type="application/x-mpegURL">
Your browser does not support HTML5 video.
</video>
</body>
</html>