20 lines
No EOL
663 B
HTML
20 lines
No EOL
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> |